Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Testing Connections

    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...

  • RE: DTS and FK Constraints - multiple tables

    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>

  • RE: Creating create table script

    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.

  • RE: Creating create table script

    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...

Viewing 4 posts - 1 through 4 (of 4 total)