Viewing 15 posts - 1,651 through 1,665 (of 2,636 total)
Aside from the GUID thing I mentioned, I didn't have any trouble running a legacy DTS package in a job in SQL 2005. I guess you should make sure the...
March 21, 2007 at 1:51 pm
I assume databases 'A' and 'B' are in the same instance. Can you post the RESTORE command you used? You should use WITH MOVE to create new database files for...
March 19, 2007 at 9:30 am
Ed,
There's a script in the script section of this site that will script out all the linked servers in an instance. I used it recently to transfer linked servers from...
March 19, 2007 at 9:25 am
Stacey,
Are you storing the package as a legacy DTS package and running it using DTSRun? If so, are you using the GUID to identify the package? I found that packages...
March 19, 2007 at 8:53 am
Yeah, I like it a lot. It even came in handy when I was transferring packages from a SQL2000 instance to a new SQL2005 instance and had to save them...
March 15, 2007 at 9:40 am
Tony,
Only one instance of a job can be run at a time, so if it's still running when the next run is scheduled, SQL Server Agent will not start it. ...
March 15, 2007 at 8:54 am
Hi Hassan,
Could you explain a little about what you want to do with the second instance? It kind of sounds like you're describing log shipping when you talk about automatic...
March 14, 2007 at 9:14 am
As stated above, there's no comprehensive way to move all those objects. You'll have to move the tables, stored procedures, packages, and jobs separately.
Tables and stored procedures can either...
March 13, 2007 at 8:51 am
The easiest way to do that is to open the package in DTS Designer then 'Save As' and name the server you want to transfer it to. DTSBackup 2000 available...
March 12, 2007 at 2:04 pm
Unfortunately, no such tools exist in SQL Server. The only way to see package properties is to open it or script it out to a file that can be edited.
Greg
March 12, 2007 at 9:54 am
You can use the Copy SQL Server Objects task in DTS to transfer stored procedures directly. It gives you the option of selecting which stored procedures you want to move. ...
March 12, 2007 at 9:11 am
You've got to test. We've begun the upgrade/migration process by creating a SQL 2005 test instance and migrating some databases, logins, jobs, and DTS packages. Now we're testing our applications.
Microsoft...
March 8, 2007 at 10:52 am
See this article for tried and true methods of transferring logins: http://support.microsoft.com/kb/246133/en-us I've used the sp_help_revlogin described many times.
There's a Rebuild Master utility in SQL 2000. Rebuilding master removes...
March 8, 2007 at 10:40 am
There's a script in the script secton of this site that copies all packages stored in msdb to text files. I've used it for packages that don't have passwords and...
March 8, 2007 at 10:22 am
Even quicker, use SELECT INTO:
SELECT sourcetable.*
INTO targetdb..targettable
FROM sourcetable
To answer the original question, yes, DTS can copy any or all tables from one database to another. Just use the import/export wizard.
Greg
March 8, 2007 at 9:54 am
Viewing 15 posts - 1,651 through 1,665 (of 2,636 total)