Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 2,636 total)

  • RE: DTS Local packages Backing up and restore

    Local packages are stored in the sysdtspackages table in msdb.  You can restore packages by restoring msdb.

    Greg

  • RE: Dedicated DTS Server - Opinions?

    We run DTS packages on either the source or destination server (usually the destination) to reduce network load.  If you run the package from a third server, the data will...

  • RE: How can I copy the same package to another server ?

    Open the package in DTS Designer.  On the toolbar, click Package then Save As... and put in the name of the other server before clicking OK.

    Greg

  • RE: restoring msdb

    That's why you backup the system databases.  You can't restore a single table, but you can restore the entire database.  See "Resoring msdb database" in BOL for details.

    Greg

  • RE: copy database wizard

    You'll get that error message if the destination SQL Server is started under a domain account that does not have local administrator privileges on the source computer.  

    "Failed to create the...

  • RE: Copy only non existing rows

    Jonathan's insert statement will still work if you qualify the table names with the server name and database name thusly: servername.databasename.tablename

    I believe you still need to have a linked server...

  • RE: DTS to update rows in a target table

    This is the code I use in an Execute SQL task where I'm joining 2 tables and updating where columns are changed:

    UPDATE dest.dbo.table

    set   col1 = s.col1,

          col2 = s.col2,    

         ...

  • RE: DTS import wizard : Chose a destination : database

    I think the wizard uses the path that the Model database uses for it's files.  You're probably better off creating the database before using the DTS wizard so you can...

  • RE: This may or may not be a dumb question

    Check out the sysobjects table.  Sysconstraints is a view on that table.  You'll want to look at the xtype column in sysobjects (see Books OnLine for the list of xtype...

  • RE: DBA

    Try using the DTS export wizard.  Select the "Copy objects and data between SQL Server databases".  In Advanced Copy Options, you can check "Copy database users and database roles" and...

  • RE: New DBA where do I fit in?

    When you say design, I assume you're talking about data and database design, not application design.  My DA/DBA group works with developers and, because there are four of us and...

  • RE: DTS AUTHORIZATIONS

    The only reason you'd have to explicity grant permissions to idbdocs_user is if you had removed permissions from the guest user and public role in msdb.

    By default, guest is a...

  • RE: Moving DTS Packages From 7.0 To 2K

    The only ways I know are to upgrade in place on the same server or save all packages as structured storage files.  Unfortunately, you can't restore a backup of a...

  • RE: DTS Design Process

    Micah,

    It sounds like you've got the right idea.  I would use a Transform Data task to copy the data, since an Execute SQL task can only use one connection. 

    If...

  • RE: Accessing data source that only supports Windows Auth

    Since a scheduled package runs under the security context of the Windows login designated as the SQL Service startup account, make sure that that login has permission to access the...

Viewing 15 posts - 2,506 through 2,520 (of 2,636 total)