Come across situation where I need to copy table from database “db2 “to database “db1” with data, for that a very handy & useful query given below :-
Example:
SELECT * INTO db1.dbo.table1
FROM db2.dbo.table2
Please mind that this query only copies table schema and data only.
All constraints, indexes, statatics, you need to use alternatives
No comments:
Post a Comment