Can any body let me know how can we copy a table with the data in it exactly to another server. I would really appreciate your help.
+5
A:
Use the SSIS wizard. Right click on the database node in management studio and click on "Export Data". Follow this wizard to specify the source and destination servers. This will copy your table and all data in it.
Matt Wrock
2009-09-18 15:34:14
+2
A:
In SSMS you can right click on the table -> Script Table As -> Create To -> (whatever). It will give you the structure of the table.
To copy data you can use bcp utility.
Lukasz Lysik
2009-09-18 15:34:54
+4
A:
One way is to script out both the schema and the data as INSERTs: SQL Server 2008: Script Data as Inserts
Mitch Wheat
2009-09-18 15:35:50
I do apprecaite your helps a lot. Where can I gran the answers?
2009-09-18 16:04:48
There is an empty checkbox under the vote total (when you are logged in as the user who asked the question). Click it on the (single) answer which helps you most. You should do this on each question where you can pick a single answer as the most helpful.
Craig Stuntz
2009-09-19 00:38:38