| title | Import Flat File to SQL | Microsoft Docs | |
|---|---|---|
| description | Import Flat File Wizard is a simple way to copy data from a .csv or .txt file to a new database table. This article shows you how and when to use the wizard. | |
| ms.custom | ||
| ms.date | 09/26/2017 | |
| ms.prod | sql | |
| ms.prod_service | database-engine, sql-database | |
| ms.technology | data-movement | |
| ms.topic | conceptual | |
| f1_keywords |
|
|
| author | yualan | |
| ms.author | alayu | |
| ms.reviewer | maghan | |
| monikerRange | =azuresqldb-current||>=sql-server-2016||=sqlallproducts-allversions||>=sql-server-linux-2017||=azuresqldb-mi-current |
[!INCLUDEappliesto-ss-asdb-xxxx-xxx-md]
For content related to the Import and Export Wizard, see SQL Server Import and Export Wizard.
Import Flat File Wizard is a simple way to copy data from a flat file (.csv, .txt) to a new table in your database. This overview describes the reasons for using this wizard, how to find this wizard, and a simple example to follow.
This wizard was created to improve the current import experience leveraging an intelligent framework known as Program Synthesis using Examples (PROSE). For a user without specialized domain knowledge, importing data can often be a complex, error prone, and tedious task. This wizard streamlines the import process as simple as selecting an input file and unique table name, and the PROSE framework handles the rest.
PROSE analyzes data patterns in your input file to infer column names, types, delimiters, and more. This framework learns the structure of the file and does all of the hard work so users don't have to.
To further understand the user experience improvement of the Import Flat File Wizard, check out this video:
This feature is only available on SQL Server Management Studio (SSMS) v17.3 or later. Make sure you are using the latest version. You can find the latest version here.
To access the Import Flat File Wizard, follow these steps:
- Open SQL Server Management Studio.
- Connect to an instance of the SQL Server Database Engine or localhost.
- Expand Databases, right-click a database (test in the example below), point to Tasks, and click Import Flat File above Import Data.
To learn more about the different functions of the wizard, refer to the following tutorial:
For the purposes of this tutorial, feel free to use your own flat file. Otherwise, this tutorial is using the following CSV from Excel, which you are free to copy. If you use this CSV, title it example.csv and make sure to save it as a csv in an easy location such as your desktop.
Access the wizard as described here.
The first page of the wizard is the welcome page. If you do not want to see this page again, feel free to click Do not show this starting page again.
Click browse to select your input file. At default, the wizard searches for .csv and .txt files.
The new table name should be unique, and the wizard does not allow you to move further if not.
The wizard generates a preview that you can view for the first 50 rows. If there are any problems, click cancel, otherwise proceed to the next page.
The wizard identifies what it believes are the correct column names, data types, etc. Here is where you can edit the fields if they are incorrect (for example, data type should be a float instead of an int).
Proceed when ready.
This is simply a summary page displaying your current configuration. If there are issues, you can go back to previous sections. Otherwise, clicking finish attempts the import process.
This page indicates whether the import was successful. If a green check mark appears, it was a success, otherwise you may need to review your configuration or input file for any errors.
Learn more about the wizard.
- Learn more about importing other sources. If you are looking to import more than flat files, see SQL Server Import and Export Wizard.
- Learn more about connecting to flat file sources. If you are looking for more information about connecting to flat file sources, see Connect to a Flat File Data Source.
- Learn more about PROSE. If you are looking for an overview of the intelligent framework used by this wizard, see PROSE SDK.







