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.
3 Answers
One way is to script out both the schema and the data as INSERTs: SQL Server 2008: Script Data as Inserts
Comments
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.