The tag has no wiki summary.

learn more… | top users | synonyms

120
votes
6answers
60k views

Can foreign key constraints be temporarily disabled using T-SQL?

Are disabling and enabling foreign key constraints supported in SQL Server? Or is my only option to 'drop and then re-'create' the constraints?
30
votes
8answers
47k views

SQL Server 2005 How Create a Unique Constraint?

How do I create a unique constraint on an existing table in SQL Server 2005? I am looking for both the TSQL and how to do it in the Database Diagram.
29
votes
4answers
22k views

How do I specify unique constraint for multiple columns in MySQL?

I have a table: table votes ( id, user, email, address, primary key(id), ); Now I want to make the columns user, email, address unique (together). How do I do this in MySql? ...
22
votes
7answers
5k views

How can I use interface as a C# generic type constraint?

Is there a way to get the following function declaration? public bool Foo<T>() where T : interface; ie. where T is an interface type (similar to where T : class, and struct). Currently I've ...
22
votes
4answers
5k views

C# Generics wont allow Delegate Type Constraints

Is it possible to define a class in C# such that class GenericCollection<T> : SomeBaseCollection<T> where T : Delegate I couldn't for the life of me accomplish this last night in .NET ...
19
votes
9answers
5k views

Template Constraints C++

In C# we can define a generic type that imposes constraints on the types that can be used as the generic parameter. The following example illustrates the usage of generic constraints: interface IFoo ...
17
votes
5answers
14k views

Turn off constraints temporarily

I'm looking the way to temporarily turn off all DB's constraints (eg table relationships) I need to copy (using INSERTs) one DBs tables to another DB I know I can archive that by executing commands ...
16
votes
3answers
3k views

In there a generic constructor with parameter constraint in C#

In C# you can put a constraint on a generic method like: public class A { public static void <T> Method (T a) where T : new() { //...do something... } } Is there also a way ...
16
votes
3answers
8k views

How to create a unique index on a NULL column?

I am using SQL Server 2005. I want to constrain the values in a column to be unique, while allowing NULLS. My current solution involves a unique index on a view like so: CREATE VIEW vw_unq WITH ...
15
votes
4answers
11k views

Foreignkey constraint may cause cycles or multiple cascade paths?

I have a problem when i try to add constraints to my tables i get the error: Introducing FOREIGN KEY constraint 'FK74988DB24B3C886' on table 'Employee' may cause cycles or multiple cascade paths. ...
15
votes
15answers
3k views

How important are constraints like NOT NULL and FOREIGN KEY if I'll always control my database input with PHP?

I am trying to create a column in a table that's a foreign key, but in MySQL that's more difficult than it should be. It would require me to go back and make certain changes to an already-in-use ...
14
votes
3answers
4k views

Solution for overloaded operator constraint in .NET generics

What would I do if I want to have a generic method that only accepts types that have overloaded an operator, for instance the subtraction operator. I tried using an interface as a constraint but ...
12
votes
3answers
791 views

How to add constraints on inherited properties in a grails domain sub-class

Here's what I'd like to do: class A { String string static constraints = { string(maxSize:100) } } class B extends A { static constraints = { string(url:true) } } So class A ...
12
votes
11answers
602 views

System.String - why doesn't it implement parameterless constructor?

I wanted to ask what is the idea behind the fact that System.String doesn't contain parameterless constructor. Because of this you cannot use this type when there is new() constraint. UPDATE Why do ...
12
votes
1answer
1k views

Fluent NHibernate primary key constraint naming conventions

Is there any way to create a naming convention for my primary key constraints in Fluent NHibernate? I know you can name foreign key constraints, but it does not appear possible to name the primary ...
11
votes
1answer
152 views

Why is some ordering enforced in generic parameter constraints?

When defining a generic type parameter's constraints, we have to put class() at the front and new() at the end, for example. Why is this, why can't I put my constraints in any order? Are there any ...
11
votes
4answers
3k views

Why can't I use a type argument in a type parameter with multiple bounds?

So, I understand that the following doesn't work, but why doesn't it work? interface Adapter<E> {} class Adaptulator<I> { <E, A extends I & Adapter<E>> void ...
10
votes
3answers
1k views

F# Static Member Type Constraints

I'm trying to define a function, factorize, which uses structural type constraints (requires static members Zero, One, +, and /) similar to Seq.sum so that it can be used with int, long, bigint, etc. ...
10
votes
4answers
393 views

What does “where T : somevalue” mean?

What does where T : somevalue mean? I just saw some code that said where T : Attribute. I think this has something to do with generics but I am not sure what this means or what it is doing. Does ...
10
votes
5answers
11k views

MySQL terminology “constraints” vs “foreign keys” difference?

I'm looking at the MySQL docs here and trying to sort out the distinction between FOREIGN KEYs and CONSTRAINTs. I thought an FK was a constraint, but the docs seem to talk about them like they're ...
9
votes
1answer
297 views

Why do bean validation Min/Max constraints not support the double type?

Could somebody please explain to me why the JPA supports the double type as a field type, but the bean validation constaints in javax.validation.constraints (i.e. @Min/@Max) do not support it? I know ...
9
votes
3answers
163 views

Should generic constraints be preferred to using interfaces as parameter types?

Consider this trivial function: public static bool IsPositive(IComparable<int> value) { return value.CompareTo(0) > 0; } Now, if I pass an int to this method, it gets boxed. Wouldn't ...
9
votes
3answers
330 views

Is there a way to implement constraints in Haskell's type classes?

Is there some way (any way) to implement constraints in type classes? As an example of what I'm talking about, suppose I want to implement a Group as a type class. So a type would be a group if there ...
9
votes
7answers
2k views

Is there a C# generic constraint for “real number” types?

Greets! I'm attempting to set up a Cartesian coordinate system in C#, but I don't want to restrict myself to any one numerical type for my coordinate values. Sometimes they could be integers, and ...
9
votes
7answers
3k views

C#: Enum.IsDefined on combined flags

I have this enum: [Flags] public enum ExportFormat { None = 0, Csv = 1, Tsv = 2, Excel = 4, All = Excel | Csv | Tsv } I am trying to make a wrapper on this (or any, really) enum ...
8
votes
2answers
101 views

Using constrained generics instead of interfaces — downsides?

Let's say I have interface IMatrix { double this[int r, int c] { get; } } struct Matrix2x2 : IMatrix { double a1, a2, b1, b2; double this[int r, int c] { get { ... } } } struct ...
8
votes
2answers
272 views

Why doesn't an interface work but an abstract class does with a generic class constraint?

The code below shows a generic class with a type constraint (Pub<T>). The class has an event that it can raise allowing us to pass a message to subscribers. The constraint is that the message ...
8
votes
2answers
306 views

C# overloading with generics: bug or feature?

Let's have a following simplified example: void Foo<T>(IEnumerable<T> collection, params T[] items) { // ... } void Foo<C, T>(C collection, T item) where C : ...
8
votes
1answer
5k views

ASP.net MVC custom route handler/constraint

I need to implement an MVC site with urls per below: category1/product/1/wiki category1/product/2/wiki category1/sub-category2/product/3/wiki category1/sub-category2/sub-category3/product/4/wiki ...
8
votes
3answers
410 views

How to constrain generic type to must have a construtor that takes certain parameters?(C#)

I have a wrapper generic class that intended to be used with a set of types. Those types are generated by a utility and are all derived from a base class ClientBase. While ClientBase has only a ...
8
votes
9answers
758 views

Should I check for DB constraints in code or should I catch exceptions thrown by DB

I have an application that saves data into a table called Jobs. The Jobs table has a column called Name which has a UNIQUE constraint. The Name column is not PRIMARY KEY. I wonder if I should check ...
8
votes
3answers
1k views

What's the difference between creating a UNIQUE index as “index” or as “constraint” in SQL Server?

When creating an index over a column that is going to be UNIQUE (but not the primary key of the table), SQL server let's me choose a few options: 1) I can choose for it to be a Constraint or an ...
8
votes
2answers
8k views

What do the letter codes in Oracle user_contraints table's constraint_type column stand for?

select distinct constraint_type from user_constraints; C - C P R U Seems P means primary key and R means foreign key, correct? What are U and C?
7
votes
1answer
231 views

Generic contraint on T to be reference type and value type simulataneously?

I have a problem with understanding how generic constraints work. I think I am missing something important here. I have enclosed my questions in the comments and would be grateful for providing some ...
7
votes
2answers
3k views

Disabling foreign key constraint, still can't truncate table? (SQL Server 2005)

I have a table called PX_Child that has a foreign key on PX_Parent. I'd like to temporarily disable this FK constraint so that I can truncate PX_Parent. I'm not sure how this goes however. I've ...
7
votes
1answer
176 views

SQL Server NULL constraint

Is is possible in SQL Server 2008 to create such a constraint that would restrict two columns to have NULL values at the same time? So that Column1 Column2 NULL NULL -- not allowed 1 NULL ...
7
votes
2answers
405 views

Worker Scheduling Algorithm

The Problem Here's the essence of the problem I want to solve. We have workers taking care of children in a nursery for set times during the weekend. There's 16 different slots to fill in one ...
7
votes
3answers
316 views

Can I create a named default constraint in an add column statement in SQL Server?

In SQL Server, I have a new column on a table: ALTER TABLE t_tableName ADD newColumn NOT NULL This fails because I specify NOT NULL without specifying a default constraint. The table should ...
7
votes
2answers
1k views

Entity Framework: How to properly handle exceptions that occur due to SQL constraints

I use Entity Framework to access my SQL data. I have some constraints in the database schema and I wonder how to handle exceptions that are caused by these constraints. As example, I get the ...
7
votes
2answers
337 views

I'm looking for a constraint to prevent the insert of an empty string in MySQL

Ok, in this question I learned how to prevent the insert of a NULL value. But, unfortunately, an empty string is being inserted anyway. Apart from preventing this on the PHP side, I'd like to use ...
7
votes
3answers
1k views

Unique constraint that allows empty values in MySQL

I have a field that stores product codes. The codes are unique, but some products simply doesn't have a code. I can't invent codes because those are providers codes. Is this kind of constraint ...
7
votes
6answers
720 views

How do I solve a set of constraints in Perl?

I have the following set of constraints in Perl (just a sample set of constraints, not the ones I really need): $a < $b $b > $c $a is odd => $a in [10..18] $a > 0 $c < 30 And I need ...
7
votes
7answers
952 views

How to constrain a database table so only one row can have a particular value in a column?

Using Oracle, if a column value can be 'YES' or 'NO' is it possible to constrain a table so that only one row can have a 'YES' value? I would rather redesign the table structure but this is not ...
7
votes
11answers
3k views

Triggers vs Constraints

I'm trying to find out whether I should be using business critical logic in a trigger or constraint. So far I've added logic in triggers as it gives me the control over what happens next and means I ...
6
votes
3answers
250 views

In C# can you set constraints on events?

I want to limit the types that can subscribe to a particular event based on the interface they implement. I.e. I want an object "Employee" implementing IPerson to subscribe to an event handler but ...
6
votes
1answer
133 views

Using generic constraints with value types

I am experimenting with fluent extension methods. I have the following simple extension method to perform a safe cast. public static T As<T>(this Object source) where T : class ...
6
votes
2answers
443 views

Active patterns and member constraint

For an inline function one could create a constraint like: let inline implicit arg = ( ^a : (static member op_Implicit : ^b -> ^a) arg) requiring the given operator or member on the arguments. ...
6
votes
0answers
247 views

Fluent NHibernate 3 uniquekey custom constraint name

I am trying to give a custom Unique Constraint Name as follows: Map(x => x.Name).UniqueKey("MY_CONSTRAINT_NAME").Column("FUNCTION_NAME"); The Field is mapped with a unique constraint but the ...
6
votes
2answers
179 views

Implementing ACL constraints, more than allow/deny

I've developed a small yet effective MVC-style framework for use in an application, and I'm implementing an ACL per-request check. Quick details: PHP 5.3+; MySQL 5.1+; Custom framework, "MVC-like" ...
6
votes
3answers
422 views

F# member constraints + ^a byref parameters

After some playing around F# member constraints feature and writing function like this: let inline parse< ^a when ^a : (static member Parse: string -> ^a) > s = (^a: (static member ...

1 2 3 4 5 15