Viewing 7 posts - 1 through 7 (of 7 total)
Good question, but there's an error in the explanation of the answer. At the end, it should say "with a maximum for TheValue of less than 3", not "less than...
September 8, 2010 at 9:20 am
Oleg,
Interesting...
What I am getting when I run your example of handling a text data type is:
insert into dbo.test ([col1], [col2]) values (0x00000001, 0x73616d706c6520312c73616d706c652031);
insert into dbo.test ([col1], [col2]) values (0x00000002, 0x73616d706c6520322c73616d706c652032);
When...
July 1, 2009 at 2:03 pm
Very good article. This technique could be very useful to me right now.
I tried it on a relatively small, simple table and it worked fine. However, on a larger table...
July 1, 2009 at 11:26 am
Very good article. This technique could be very useful to me right now.
I tried it on a relatively small, simple table and it worked fine. However, on a larger table...
July 1, 2009 at 11:24 am
For the delete constraint try:
select constraint_name, delete_rule
from information_schema.referential_constraints
where constraint_name = [the foreign key name]
February 20, 2008 at 8:04 am
Also, if you have Red Gate software, it will compare two databases and create scripts to synchronise one to the other, taking referential integrity into account. But this is 'by...
February 20, 2008 at 7:15 am
Viewing 7 posts - 1 through 7 (of 7 total)