Forum Replies Created

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

  • RE: Backup DTS

    DTS packages are stored in the msdb.dbo.sysdtspackages table.

    All you need is to backup that table.

    As an alternative you can save DTS as files, but you have to do it manually.

    For...

  • RE: Finding Duplicates

    SELECT [fieldName], COUNT([fieldName]) AS nDup

    FROM [tableName]

    GROUP BY [fieldName]

    HAVING (COUNT([fieldName] > 1)

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