Viewing 4 posts - 1 through 4 (of 4 total)
A quick and easy way is to use a UDL file (universal data link) - create a new text file with .UDL extension, then double click on it and it...
May 28, 2004 at 2:19 am
In my DTS I'm using the following, which seems to work well:
ALTER TABLE <tablename> NOCHECK CONSTRAINT <fk name>
Run delete/import script
ALTER TABLE <tablename> CHECK CONSTRAINT <fk name>
February 18, 2004 at 2:16 am
You could write your own stored proc using system stored proc sp_columns to return list of cols and datatypes for the table, then build up script string from there.
February 13, 2004 at 2:17 am
This functionality is built into Enterprise Manager - right click on the table you want, select ALL TASKS then GENERATE SQL SCRIPT. Go to the OPTIONS tab for settings relating...
February 12, 2004 at 2:21 am
Viewing 4 posts - 1 through 4 (of 4 total)