Simple way to export data from SQL Server


By:

Overview
SQL Server Management Studio (SSMS) provides the Export Wizard task which you can use to copy data from one data source to another.  You can choose from a variety of source and destination data source types, select tables to copy or specify your own query to extract data, and save your work as an SSIS package.  In this section we will go through the Export Wizard and export data from a SQL Server database to an Excel spreadsheet. 

Explanation
To begin launch SSMS by clicking SQL Server Management Studio from the Microsoft SQL Server program group.  Upon launching SSMS you will be prompted for a connection; connect to the Database Engine.  For demonstration purposes we will use the AdventureWorksDW database.  You can download the AdventureWorksDW sample database from the CodePlex site.

Locate the AdventureWorksDW database in the SSMS Object Explorer; if the Object Explorer isn't visible click the View menu then select Object Explorer:

bject explorer

Right click on the AdventureWorksDW database in the Object Explorer, select Tasks, then Export Data from the context menu to launch the Export Wizard.  Click Next to advance past the Welcome dialog (if shown).  In the following sections we will walk through the wizard step-by-step.

Choose a Data Source

The Choose a Data Source dialog allows you to specify the source of your data.  Since we are running the Export wizard, the dialog will be displayed with the values already filled in as shown below (based on the database you right clicked to start the Export wizard):

xport wizard data source

Click Next to proceed to the Choose a Destination dialog.

Choose a Destination

The Choose a Destination dialog allows you to specify the destination data source for the data you are exporting.  There are quite a few options available for destinations; the additional inputs will vary based on the destination data source chosen.  For our example we will export our data to Excel then use this Excel spreadsheet as the source in the Import wizard demonstration later in the tutorial.  Fill in the dialog as follows:

xport wizard destination

Click Next to proceed to the Specify Table Copy or Query dialog.

Specify Table Copy or Query

The Specify Table Copy or Query dialog allows you to choose whether to export data by selecting tables and/or views from the data source or specifying a query to extract data.  Select Copy data from one or more tables or views as shown below:

xport wizard specify tables

Click Next to proceed to the Select Source Tables and Views dialog.

Select Source Tables and Views

The Select Source Tables and Views dialog allows you to select the tables and views that you want to export.  For our demonstration we are going to select the DimGeography table as shown below:

xport wizard select tables

You can click the Preview button to view the first 100 rows of the data in the data source as shown below:

xport wizard preview

You can click the Edit Mappings button (on the Select Source Tables and Views dialog) to review the column mappings from the data source to the data destination as shown below.  If the table does not exist in the destination data source, you can also edit the mappings.

xport wizard column mappings

You can click the option to drop and recreate the table in the destination data source; by default this option is unchecked.  If the table does not exist in the destination data source, the Create destination table radio button will be selected and the other radio buttons will be disabled.  If the table already exists in the destination data source,  the Create destination table radio button will be disabled and you can select either the Delete or Append options.

You can click the Edit SQL button to review and/or edit the SQL to create the table in the destination data source as shown below:

xport wizard create table sql

Click OK twice to return to the Select Source Tables and Views dialog, then click Next to proceed to the Save and Execute Package dialog.

 Save and Execute Package

The Save and Execute Package dialog gives you options to perform the export operation and to create an SSIS package and save it to SQL Server or the file system as shown below:

xport wizard save and execute

For our purposes we will save the SSIS package so we can view it a later section of the tutorial.  Click Next to proceed to the Save SSIS Package dialog.

Save SSIS Package

The Save SSIS Package is invoked if you chose to save your export operation as an SSIS package on the Save and Execute Package dialog.  Fill in the dialog as shown below:

xport wizard save

Click Next to proceed to the Complete the Wizard dialog.

Complete the Wizard

The Complete the Wizard dialog shows a summary of the options that you have chosen for the export operation as shown below:

xport wizard complete

Click Finish to execute the SSIS package.  You can open the Excel spreadsheet and view the table that was exported.  A portion of the Excel spreadsheet is shown below:

xport to excel






Comments For This Article




Wednesday, January 11, 2017 - 9:05:46 AM - Mohan Kamargiri Back To Top (45211)

But is there any way for not mapping the columns again and again.

 

This column mapping I have to do everytime for my tables. Can I have something like once I'll map the columns and next time i don't need to do that, the columns will get map on it's own


Sunday, August 21, 2016 - 12:05:27 PM - Štefan Masič Back To Top (43154)

 Thank you very much, Štefan.

 


Friday, April 15, 2016 - 8:34:39 PM - ASRAT KETEMA Back To Top (41239)

 

 

It helps me alot 

Thanks 


Thursday, April 14, 2016 - 5:25:46 AM - Samuel Frimpong Back To Top (41217)

 

 Thanks. it has really helped


Tuesday, March 29, 2016 - 5:42:56 PM - Tomas Back To Top (41091)

I have 2 questions.

 

  1. How to modify QUERY - wchich I wrote at Point "Specify Table Copy or Query"
  2. I have created SISS package  to export data  of query (price list) to a file. Now it looks my database works slowly, and I have no idea how to delete or modify what I created according to this artice.

I am not able to login to Integration Services. And I was not able to login before read this article.

 

When I exec:

use msdb;
select * from dbo.sysssispackages

I see the package "pricelist export" listed. How to modify it or delete.

 

 


Tuesday, March 1, 2016 - 4:08:21 AM - sahejpratap Back To Top (40826)

Heyy Thanks and yes this is really helpful.

 















get free sql tips
agree to terms