0
votes
4answers
33 views
SQL DROP TABLE foreign key constraint
If I want to delete all the tables in my database like this, will it take care of the foreign key constraint? If not, how do I take care of that first?
GO
IF OBJECT_ID('dbo.[Cours …
0
votes
1answer
46 views
Latin squares generator? (Sudoku-like constraint problem)
Purpose
We're designing a Latin square (sudoku-like sequence) for an experimental design that needs to follow these constraints:
Values cannot be repeated in a row
Values cannot …
1
vote
2answers
19 views
View All Table / Database Constraints in MySQL
How do you view all the constraints (Primary keys, Secondary keys, Assertions , Triggers, etc) in a MySQL Database / Table in the command line environment.
2
votes
3answers
28 views
How to write a constraint concerning a max number of rows in postgresql?
Hi,
I think this is a pretty common problem.
I've got a table user(id INT ...) and a table photo(id BIGINT, owner INT). owner is a reference on user(id).
I'd like to add a cons …
0
votes
1answer
48 views
Fix ORA-02273: this unique/primary key is referenced by some foreign keys
Trying to drop a unique constraint I've got such error:
ORA-02273: this unique/primary key is referenced by some foreign keys
How to find the list of foreign keys by which my un …
0
votes
0answers
15 views
Database constraint violation ignored during SubSonic Save()?
In the following code, if one of the values assigned violates a database constraint, the Save() updates the record with the other good values. However, the database constraint does …
1
vote
5answers
154 views
Can a Type Derive from Itself?
When enforcing a Generic constraint
class GenericTest
{
public void Sample<T>(T someValue) where T:Racer,new()
{
Console.WriteLine(someValue.Car);
}
}
…
1
vote
3answers
37 views
SQL constraint minvalue / maxvalue?
Is there a way to set a SQL constraint for a numeric field that min value should be 1234 and max value should be 4523?
1
vote
1answer
52 views
Modify unique constraint in Oracle
I need to update an existing constraint in Oracle database to add a new column there.
ALTER TABLE MY_PARTNER_DETAILS MODIFY CONSTRAINT UQ_MY_PARTNER_DETAILS UNIQUE(PARTNER_CODE,PG …
0
votes
3answers
74 views
SQL Server add a column constraint to limit data to -1 to 1
Hello,
I want to constrain a SQL Server decimal column to only allow -1,0,1 as valid values.
Can you show me the SQL syntax for adding such a constraint. (I would like to know h …
1
vote
6answers
79 views
is it good to use check constraints for business rules
Currently we are using check constraints for business rules implementation, but I want to know should we implement business rules in sql or Business logic(c# code) layer. I have se …
0
votes
2answers
43 views
Requiring a method to be called in a child class constructor
How do I force the Visual Studio compiler to generate an error when a required method is not being called in the constructor of a child class? Like when you edit the form designer …
1
vote
3answers
125 views
How can I store NULLs in NOT NULL field?
I just came across NULL values in NOT-NULL fields in our test database. How could they get there? I know that NOT-NULL constraints can be altered with NOVALIDATE clause, but that w …
2
votes
3answers
63 views
How to truncate all user tables?
How can I truncate all user table in oracle? I have problem with tables constraints.
0
votes
3answers
36 views
How to declare a range overlaping constraint in PosgreSQL database?
Let's say we are having a table with this definition:
range (
id bigint primary key,
colourId int references colour(id),
smellId int references smell(id),
from bigint,
t …
