2

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.

0

3 Answers 3

5

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.

Sign up to request clarification or add additional context in comments.

Comments

4

One way is to script out both the schema and the data as INSERTs: SQL Server 2008: Script Data as Inserts

Comments

2

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.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.