There are many ways to copy a database table to an another database. Below you will find the simplest solution I found for myself.
SELECT *
INTO TargetDatabase.dbo.MyTable
FROM SourceDatabase.dbo.MyTable
There are many ways to copy a database table to an another database. Below you will find the simplest solution I found for myself.
SELECT *
INTO TargetDatabase.dbo.MyTable
FROM SourceDatabase.dbo.MyTable
1 comment:
Good words.
Post a Comment