Hi,
I'm looking for a way to defer constraint checking until a commit in SQLServer 2000. In theory I should be able to create a table with constraints that are initially deferred eg Oracle...
Create Table TABLE1 (
myColumn number(20) constraint nn NOT NULL INITIALLY DEFERRED....
)
Thanks
Lewis