Search This Blog

Thursday 16 October 2014

Copy tables from one database to another in SQL Server

SELECT * 
INTO DestinationDB..MyDestinationTable 
FROM SourceDB..MySourceTable 

No comments:

Post a Comment