I want to get a backup of a single table with its data from a database in SQL Server using a script.
How can I do that?
Backup a single table with its data from a database in sql server 2008
SELECT * INTO [dbo].[tbl_NewTable] FROM [dbo].[tbl_OldTable]