`

Transferring Data from One Table to Another

 
阅读更多
May 31, 2005
Transferring Data from One Table to Another
By Gregory A. Larsen

<!--content_start-->

Every DBA needs to transfer data between tables. This is the kind of task that comes up all the time. Not only do DBAs need to know how to transfer data between two tables on the same server, but they will also need to know how to do it from one server to another. This article will look at a number of different methods to transfer data from one table to another.

The INSERT INTO Method

This method, as the heading suggests, uses the INSERT INTO T-SQL statement to move records from one table to another. This method is one of the easiest methods of transferring data. This method can not only be done between tables on the same server, but can also be done across servers.

To use this method, all you have to do is code an INSERT INTO statement that identifies the target table, and uses a SELECT statement to identify the data you want to copy from the source table. Let me show you an example. Say you have two tables TABLE1, and TABLE2, where both tables have exactly the some table structure and are in the same database. In this case, to copy all the rows from TABLE1 to TABLE2 you would use the following INSERT INTO statement:

INSERT INTO TABLE2 SELECT * FROM TABLE1

Now suppose you do not want to copy all the rows, but only those rows that meet a specific criteria. Say you only want to copy those rows where COL1 is equal to "A." To do this you would just modify the above code to look like this:

INSERT INTO TABLE2 SELECT * FROM TABLE1 WHERE COL1 = 'A'

See how simple it is to copy data from one table to another using the INSERT INTO method? You can even copy a selected set of columns, if you desire, by identifying the specific columns you wish to copy and populate, like so:

INSERT INTO TABLE2 (COL1, COL2, COL3) SELECT COL1, COL4, COL7 FROM TABLE1

The above command copies only data from columns COL1, COL4, and COL7 in TABLE1 to COL1, COL2, and COL3 in TABLE2.

This method can also be used to copy data from one database to another. To do this you just need to fully qualify (<database>.<owner>.<table name>) the source and target table names on the INSERT INTO statement to identify which database you want to use. You can copy data from one server to another the same way by using fully qualified linked server names (<linked_server>.<database>.<owner>.<table_name>).

The DTS Import/Export Wizard method

Another method to copy data between tables is to use Data Transformation Services (DTS). The easiest way to do this is to use the DTS Import/Export Wizard. You start the DTS Import/Export Wizard by opening up Enterprise manager, highlighting one of your registered servers, clicking on the "Tools" menu, mouse over the "Data Transformation Services" item in the drop down, and then clicking on either "Import Data..." or "Export Data...". Once you have done this, you should see the following wizard main menu:

To start specifying your data transfer criteria, click on the "Next >" button on the main menu. Doing this will bring up the following Window:

On this screen, you need to specify the source server, database and login needed to access the data that you want to copy. Once you have specified those items, then click on the "Next >" button. Doing this will bring up the following window:

On this screen, select the destination server where you want to copy the data, and enter the login information and database where you want the data to be placed. You can specify a local server, as I did above, or any server that you can connect to from your client machine. Once your target information is completely entered, click on the "Next >" button. Doing this will bring up the following popup window:

Since my example will be copying all the data in a single table having the first radio button selected is appropriate. After the first radio button is selected you then click on the "Next >" button. Doing this brings up the window below:

On this window, you specify the "Source" table you want to copy; you do that by clicking on the check box next to the name. Once you check a source table, you are then allowed to enter the Destination Table information.

As you can see from the window above I selected the Northwind.dbo.Suppliers table, as my source table and I specified that the target table would be a new table called Suppliers2, which will be created in the same database. Under the "Transform" column you can see there is a button that contains three dots ("..."). This button is used to specify any transformation characteristics you desire for the given data transfer. When you click on this button, the following window is displayed:

Here you can see my transformation will create the destination table. The "Mappings" display shows the layout for the new destination table. By default, when creating a destination table, these mapping columns will be the same as the source table. You can change the column characteristics here if you desire. You can also click on the "Edit SQL..." button to modify the "CREATE TABLE" statement that will be used to create the destination table. The "Transformations" tab is used to modify the Visual Basic code that will perform the actual data movement from the source table to the destination table. Modifying the Visual Basic code is sometimes useful in manipulating your data as it is moved. Note that if you where transferring data to an existing table in your destination database then the "Delete rows in destination table" or "Append rows to destination table" radio buttons would not be grayed out. Once you have specified all the transformation information you desire then click on the "OK" button, which will take you back to the "Select Source Tables and Views" window above. To continue with specifying your data copy criteria in the wizard click on the "Next >" button; doing this brings up the following window:

Here you can run the data copy immediately, schedule the data copy to be run at some scheduled time, or just save your data copy specification as a DTS package. Typically if I am just migrating data, it is normally just a one-time kind of data copy, so I use the "Run immediately" option. When you click the "Next >" button you will get the following final DTS Import/Export Wizard window:

Here you can review the "Summary" information to make sure your copy specifications are correct. If they are not, then you can use the "< Back" button to correct your specification. If you are satisfied with your copy specifications, click on the "Finish" button to complete the wizard. As you can see, the DTS Wizard has lots of different options to allow you to copy data from one source table to another.

The BCP/Bulk Insert Method

This method copies data from the source to the destination table in a two-step process. The first step is to use BCP to output the data in the source table into a text file. The second step then uses the BULK INSERT command to insert the records into the destination table from the text file. Let me go through an example for you.

Let's do a similar example as we did with the DTS Import/Export Wizard, except I am going to copy the Northwind.dbo.Orders table to a table named Northwind.dbo.Orders2 on the same server. The first step of this process is to BCP the data out. BCP is a command line utility. It can be executed from Query Analyzer by using the extended stored procedure "xp_cmdshell", to submit the BCP command to the Windows command shell. To accomplish this you would run the following code in Query Analyzer:

execute xp_cmdshell 'bcp Northwind.dbo.Orders out c:/temp/Orders.txt -Sgalser01 -T -n'

This BCP command exports all of the Northwind.dbo.Orders table to a flat file named c:/temp/Orders.txt. The "-S" options identifies the server where the data will be exported from, in this case "galser01." The "-T" option says make a trusted connection. The "-n" option tells BCP to write the data in native format. After creating a text file using the above BCP command, you can then turn around and load the data into Northwind.dbo.Orders2 table using the code below:

select * into Northwind.dbo.Orders2 from Northwind.dbo.Orders where 1=2
bulk insert Northwind.dbo.Orders2 from 'c:/temp/Orders.txt'
with (DATAFILETYPE = 'native')

The first command in the script above, the SELECT statement, creates an empty Orders2 table on the Northwind database. This is needed, because BULK INSERT requires that the target table exists, otherwise it gets an error. The BULK INSERT statement above identifies the target table "Northwind.dbo.Order2," and in the FROM clause it identifies the data file to be loaded, in this case "c:/temp/Orders.txt." The last parameter specified is DATAFILETYPE, which identifies that the input file will contain data in native mode.

Once again, this example only moves data from one table to another in the same database. This same technique can be used to move data from one database to another or one server to another. In addition, there are other options that can be used with BCP and BULK INSERT to output and input your data using a different mode than native.

Conclusion

As you can see, there are a number of ways to move data from one table to another. Some options are better then others, depending on what data is being moved, and the volume. The INSERT INTO method is not very fast for large amounts of records, where as the BCP/BULK INSERT method can quickly load large volumes of records. If you prefer a GUI driven method, then the DTS Import/Export method is for you. There are other methods out there that you could use, but these three should provide you with alternatives depending on your data movement criteria.

分享到:
评论

相关推荐

    Transferring Data with DB

    Transferring Data with DB

    Digital Video and DSP-2008

    are just a way of transferring visual information from one point to another. The information may be from a VCR, DVD player, a channel on the local broadcast, cable television, or satellite system, the...

    EhLib 9.1.038 for D7-XE-10.2

    To display the editing box, one or more lines are available to scroll through the list for editing data fields or use only to display without changing the data. TDBNumberEditEh: To display the ...

    Sams.Teach.Yourself.Big.Data.Analytics.with.Microsoft.HDInsight

    Using Sqoop or SSIS (SQL Server Integration Services) to move data to/from HDInsight and build data integration workflows for transferring data Using Oozie for scheduling, co-ordination and managing ...

    计算机英语资料.doc

    utilities(=utility programs):often referred to as service programs and they usually concern therselves with fairly mundane tasks such as moving files from one device to another;tasks which are very ...

    Apache Sqoop Cookbook

    Transferring data to and from relational databases is challenging and laborious. Because data transfer requires careful handling, Apache Sqoop, short for “SQL to Hadoop,” was created to perform ...

    Serial ATA AHCI 1.1 Specification.pdf

    This specification defines the functional behavior and software interface of the Advanced ...SATA device, and a pointer to a descriptor table for transferring data between system memory and the device.

    Transferring Human Impedance Regulation Skills to Robots

    学习机器人阻抗控制的一本不错的书籍,里面详细介绍了阻抗控制的概念以及具体的例子

    Linux for Beginners: An Introduction to the Linux Operating System

    How to compress files to save space and make transferring data easy. How and why to redirect input and output from applications. How to customize your shell prompt. How to be efficient at the ...

    Android代码-NitroShare

    NitroShare for Android simplifies the task of transferring files and directories from one device to another. Some of its features include: Automatic peer discovery Integration with Share menu Blazing...

    vmtransferfiles.zip

    Transferring files from Host OS to Guest OS is the similar operation Inside Host OS select files and folders which you want to transfer Right-click the mouse and choose "Copy" from the Explorer ...

    Building a Virtual Assistant for Raspberry Pi(Apress,2016)

    This book shows you how to program the virtual assistant to gather data from the internet (weather data, data from Wikipedia, data mining); play music; and take notes. Each chapter covers building a ...

    RDP 协议最新版本 07/12/2012 32.0

    user interaction with a remote computer system by transferring graphics display data from the remote computer to the user and transporting input commands from the user to the remote computer, where ...

    An Introduction to LTE: LTE, LTE-Advanced, SAE and 4G Mobile Communications

    It is invaluable for engineers who are working on LTE, notably those who are transferring from other technologies such as UMTS and cdma2000, those who are experts in one part of LTE but who want to ...

    Pro MongoDB Development [2016]

    and transferring data between Oracle and MongoDB * How to use Kundera, Spring Data, and Spring XD with MongoDB * How to load MongoDB data into Oracle Database and integrating MongoDB with Oracle ...

    计算机网络第六版答案

    but the time when loss first occurs will be different from one experiment to the next due to the randomness in the emission process. 22. Five generic tasks are error control, flow control, ...

    SAS Programming and Data Visualization Techniques(Apress,2015)

    A Power User's Guide brings together a wealth of ideas about strategic and tactical solutions to everyday situations experienced when transferring, extracting, processing, analyzing, and reporting the...

    Devart dbForge Studio for MySQL Professional Edition v7.1.13

    dbForge Studio also provides utilities to compare, synchronize, and backup MySQL databases with scheduling, and gives possibility to analyze and report table data. Over 15,000 users rely on dbForge ...

    Learning React A Hands-On Guide to Building Web Applications

    9 Going from Data to UI in React 10 Events in React 11 The Component Lifecycle 12 Accessing DOM Elements in React 13 Setting Up Your React Dev Environment Easily 14 Working with External Data in React...

Global site tag (gtag.js) - Google Analytics