eXpandable Tech
Friday, August 13, 2010
Table copy in MS SQL
Copy data of a table to other table or to the other data base:
begin transaction
select *
into Practice.dbo.temp
--name of new table that you want to create
from moin.dbo.Bank
--Existing table name
go
1 comment:
Moin
August 13, 2010 at 9:46 PM
This query will only copy the data.
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This query will only copy the data.
ReplyDelete