I am upgrading a clients app to a newer version, the databases are close but slightly different. I need to figure out a way to transform and copy the data from one table in one database to another table in the new database. Oh geez :(
+2
A:
SQL Server Integration Services (previously known as Data Transformation Services) is the way to go.
SQL Server Import and Export data wizard works for simple tasks pretty well.
Mehrdad Afshari
2009-04-06 20:52:56
how do I get this
shogun
2009-04-06 21:08:52
It's shipped with SQL Server DVD.
Mehrdad Afshari
2009-04-06 21:10:06
A:
SQL Server Integration Services is going to be your best bet. If you're familiar with the SQL 2000 DTS Packages, you shouldn't have too much difficulty figuring out SSIS packages.
Justin Niessner
2009-04-06 20:54:00
+3
A:
INSERT INTO new_db.dbo.TableA
SELECT * FROM old_db.dbo.TableB
If the tables are the same, this is probably the easiest way.
Matt Grande
2009-04-06 20:54:07