Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 2,636 total)

  • RE: dts time out

    If you turn on logging in the package, it will log each step and tell you which one failed.  In the event of a timeout, you'll see which step was...

  • RE: Referencing backup file in enterprise manager

    Right-click on Database since you're creating the database with the restore.  Select Restore from device and click on the 'Select Devices...' button.  Then you can add you backup files to...

  • RE: Managing Foreign Keys under SQL Server

    The main reason I use the DROP and CREATE method is so the destination tables can be truncated, which is faster than deleting.  Because my DTS package frequently import large...

  • RE: Managing Foreign Keys under SQL Server

    I do what Scorpian does.  I use this script to create the drop and add statements for the FK constraints:

    /* Generates script to drop foreign key constraints.  If you plan...

  • RE: Login Issue::

    The short answer is you can't deny access to Master and Tempdb to a login.  Both databases have the Guest user and Public role, neither of which can be removed. ...

  • RE: Showing Duplicate Records

    Please post your query.

    Greg

  • RE: Using SQL query in DTS to transfer data from one server to another

    I don't have a step-by-step guide, but I suggest http://www.sqldts.com/ and the book "Professional SQL Server 2000 DTS" by WROX as excellent reference material. 

    This sounds like a pretty basic...

  • RE: DTS version control

    Jeffrey,

    I'm not sure I understand when you say it's difficult to revert to a previous version.  If you save packages to SQL Server, a new version is created each time...

  • RE: The Best Job

    Like a lot of people, my first impulse is to say that I'd like to pursue one of my hobbies as a profession: building and repairing bicycles or cooking. 

    After...

  • RE: Drop all constraints in a database

    Here's a script that will produce statements to drop all the constraints in a database.

    select 'ALTER TABLE ' + cast(table_name as char(40)) + 'DROP CONSTRAINT '

           + cast(constraint_name...

  • RE: Please help with capturing @@ERROR from sql statements in DTSLookups

    Try assigning the results of the @@ERROR query to a global variable that the 'on failure' step can read to get the value.

    Greg

  • RE: Help - Exporting Data

    Try searching this site for threads regarding this.  I just searched for 'define columns' and found a lot of discussions about this problem.  Perhaps one of them will give you...

  • RE: Roll Back All Transformations in DTS package

    1. Open Package Properties in Designer

    2. On the Advanced tab, check 'Use transactions' and 'Commit on successful

        package completion'

    3. Right-click on each each Data Transformation task and select 'Workflow

        Properties'

    4....

  • RE: Help - Exporting Data

    Steve,

    Are you running Service Pack 3?  This sounds like a bug that was fixed in SP4.

    http://support.microsoft.com/kb/814113/en-us

    Greg

  • RE: SQL - 2000 DTS

    "Professional SQL Server 2000 DTS" by Brian Knight, Mark Chaffin, Todd Robinson is a great book.  It's full of good examples and clear explanations.  Perhaps it's the Wrox book you've...

Viewing 15 posts - 2,071 through 2,085 (of 2,636 total)