I know how to take a backup of a database in SQL Server and restore it. But how can I take a backup of a single table, and then restore it? Is it possible?
I have a database with two different names (some different data) and I have to restore one table by taking it from one database to the other. How can I take a single table backup from one database and then restore it to the other one?


Script database objectfunctionality in SQL Server Management Studio, and you can export the data from a table using e.g. thebcpcommand line utility - but there's no "single-table" backup. – marc_s Oct 10 '12 at 12:48