Sun 4 Nov 2007
This will copy a table, structure and data from SQL server database to another.
Damn handy!
[sql] SELECT * INTO TargetDatabase.dbo.MyTable
FROM SourceDatabase.dbo.MyTable[/sql]
Leave a Reply
You must be logged in to post a comment.
Sun 4 Nov 2007
This will copy a table, structure and data from SQL server database to another.
Damn handy!
[sql] SELECT * INTO TargetDatabase.dbo.MyTable
FROM SourceDatabase.dbo.MyTable[/sql]
You must be logged in to post a comment.