SQL Server copy table from one database to another

SQL Server copy table from one database to another

Hello everyone, I am going to share the T-SQL query for copy table from one database to another database using SQL Server 2012. The query detail as given below.

Table of Content
  1. Syntax for copy table from one database to another.
  2. Query for copy table from one database to another.
Syntax

/* COPY TABLE DATA FROM ONE DATABASE TO ANOTHER DATABASE IN SQL SERVER 2012 */
SELECT * INTO DB1.dbo.[Employee] FROM DB2.dbo.[User]

Query for copy table from one database to another

/* COPY TABLE DATA FROM ONE DATABASE TO ANOTHER DATABASE */
SELECT * INTO OBPC.[dbo].[User]
     FROM MASTER.[dbo].[User]

You can use the Wizard method to generate SQLServer scripts and for Wizard you can follow below links.






ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

SQL Server copy table from one database to another SQL Server copy table from one database to another Reviewed by Anil Singh on 6:00 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^