Transfer SQL Server Table Structures in SSIS

In this article, we will show you how to transfer SQL Server table Structures in SSIS without data from one Database to another Database using the Transfer SQL Server Objects task. If you want to transfer SQL Server tables with data, please refer to the Transfer Tables with Data article.

Transfer Table Structures Using Transfer SQL Server Objects Task in SSIS

If you observe the below screenshot, we have one Empty Database (TRANSFERDBTASKS). In this example, we will transfer a few tables without data from the [Adventure Works DW 2014] database to the [TRANSFER DB TASKS] Database using the Transfer SQL Server Object Task in SSIS.

Transfer SQL Server Table Structures in SSIS 1

STEP 1: Open BIDS and Drag and drop the Transfer SQL Server Objects Task from the toolbox to control flow.

Transfer SQL Server Table Structures in SSIS 2

Double-click on the Transfer SQL Server Objects, which will open the Editor to configure it.

General Tab: In this tab, you can write your Name and description as per the project requirements.

Transfer SQL Server Table Structures in SSIS 2

Here, we changed the Name and description to show you their functionality. Click on the Objects Tab

STEP 2: Select the SourceConnection property and click on it to create a New connection. If you have already created one, then select it.

Transfer SQL Server Table Structures in SSIS 4

Once you click on <New connection…>, an SMO Connection Manager Editor window will be opened to configure the connection.

STEP 3: For this example, we are selecting our localhost instance and using Windows Authentication. If you work for an organization, select Server Authentication and provide the credentials.

Transfer SQL Server Table Structures in SSIS 5

Click on the Test Connection button to check whether the connection is throwing errors or not.

STEP 4: Click on the SourceDatabase option and select the database you want to use. For now, we are selecting [Adventure Works DW 2014].

Transfer SQL Server Table Structures in SSIS 6

STEP 5: Select the DestinationConnection property and click on it to create a New connection. If you have created it already, select it.

We already mentioned the localhost instance in SourceConnection, and here, we will use the same instance. If you want to create a new one, click on will and open the SMO Connection Manager Editor window to configure the connection.

Transfer SQL Server Table Structures in SSIS 7

STEP 6: Click on the DestinationDatabase option and select the database you want to use. We are now selecting [TRANSFER DB TASKS], as shown below.

Transfer SQL Server Table Structures in SSIS 8

STEP 7: Click on the CopyData property and check whether the option is False or not. Because In this example, we are willing to transfer Database tables without Data from source to destination.

By keeping the CopyData property opportunity to False, the Transfer SQL Server Objects Task will copy the tables without data.

Transfer SQL Server Table Structures in SSIS 9

STEP 8: If you require to copy all the objects (views, function, stored procedures, tables) from the source database, then set the CopyAllObjects option to True. In this example, We are going to send a few tables. So we leave it to default False.

Transfer SQL Server Table Structures in SSIS 10

If we set the CopyAllObjects option to False, the next property ObjectsToCopy will be enabled.

STEP 9: Click on the ObjectsToCopy property to configure it. ObjectsToCopy property will explore many options of the Transfer SQL Server Objects Task. Let us concentrate on options that belong to or are related to this example. In this example, Our requirement is transferring the tables. So, we must only understand the first two options, such as CopyAllTables and TableList.

If you must copy all the tables from the source database, set the CopyAllTables option to True. In this example, We are going to send a few tables. So we leave it to default False.

Transfer SQL Server Table Structures in SSIS 11

NOTE: If you set the CopyAllTables option to True, there is no point in selecting the tables from the TableList option.

STEP 10: Click on the TableList option and click on the collections. Once you click on the (…) button beside Collections, the Select Tables window will open to select the available tables from the source connection.

SSIS Transfer SQL Server Objects Task Copying Tables only

For this example, we are selecting three tables ([Dim Product Category],[Dim Product Subcategory], and [Dim Reseller]) only. But you can try with some more tables.

STEP 11: Click ok to close the Select Tables window and then click ok to finish configuring the Transfer SQL Server Objects Task.

Let us run the SSIS package to see whether we successfully transferred the table structures without Data from source to destination.

SSIS Transfer SQL Server Objects Task Copying Tables only Package

Let’s open the Management Studio and check for the tables.

SSIS Transfer SQL Server Objects Task Copying Tables only Output

From the above screenshot, you can observe that we just transferred the SQL Server table structures in SSIS but not the data.