Import CSV file into SQL Server using T-SQL query

Sometimes, we need to read an external CSV file using T-SQL query in SQL Server. Due to some functional limitations, we cannot use the import-export wizard functionality in such kinds of scenarios as we need the result set in the middle of the execution of the other queries. There, we can use the BULK INSERT SQL command which helps us to import a data file into SQL Server table directly.

Let’s have a look at the sample CSV file which we want to import into a SQL table. The CSV file is this.

Sample CSV File
Sample CSV File

To download the sample CSV file, click here. The above CSV file uses comma as a column delimiter and contains 6 columns which are:

PersonID – Stores the Id of the person.

FullName – Stores the full name of the person.

PreferredName – Stores the preferred name of the person.

SearchName – Stores the search name of the person.

IsPermittedToLogon – Stores that whether a person is allowed to log in or not.

LogonName – Stores the login name of the person.

Now, we need to read this file in a SQL table. So, let’s create the table structure using this script.

IF OBJECT_ID('dbo.SampleCSVTable') IS NOT NULL
	DROP TABLE dbo.SampleCSVTable
GO

CREATE TABLE dbo.SampleCSVTable
(
	PersonID INT,
	FullName VARCHAR(512),
	PreferredName VARCHAR(512),
	SearchName VARCHAR(512),
	IsPermittedToLogon BIT,
	LogonName VARCHAR(512)
)
GO

Now that we have created the table, we need to use the BULK INSERT command to import the CSV data into the table “SampleCSVTable“.

BULK INSERT dbo.SampleCSVTable
FROM 'C:\Sample CSV File.txt'
WITH
(
	FIELDTERMINATOR = ',',
	ROWTERMINATOR = '\n'
)
GO

The BULK INSERT command exposes several arguments which can be used while reading a CSV file. These are the arguments.

FORMAT = ‘CSV’
FIELDQUOTE = ‘quote_characters’
FORMATFILE = ‘format_file_path’
FIELDTERMINATOR = ‘field_terminator’
ROWTERMINATOR = ‘row_terminator’

We can use these arguments as per the need. However, keep a note that the FORMAT,  FIELDQUOTE, and FORMATFILE arguments apply to SQL Server 2017 only.

Let’s have a look at the table data which we have imported from the CSV file.

SELECT * FROM dbo.SampleCSVTable
GO
Sample table data
Sample table data

Thanks for the reading. Please share your inputs in the comments.

Rate This
[Total: 4 Average: 4]

6 thoughts on “Import CSV file into SQL Server using T-SQL query”

  1. How can you load that same CSV file but by specifying an specific value for a column. For example, in your code above how I can I just get records where isPermittedToLogin = 0?
    I have a LARGE files where I just want to extract data where column B is not null. I could manually go in the file and delete all the records where column B = Null (more than half of the records). But I cannot really do this manually to 300 files I am loading in bulk. I just want to be able to reduce the number of rows I am loading.

    1. Any ETL tool would have you load the data in, then filter from there. It’ll just take time, but it’ll work.

      You could use Powershell to read the files, and then save out an adjusted CSV where {column_b} (is not null).

      If you’re looking for something simpler, maybe look at PowerBI’s ability to pull in files, merge them, then do one filter to combine.

  2. Hi,
    This is a good article for basic lists. Often, a DBA will be called upon to import more complex data from MS Excel, including free-form text fields. The biggest surprise comes from trying to pull in data that has special characters like Line-Feed (CHAR(13) + CHAR(10)) characters. It is just as messy to pull this type of data from SQL server and paste into MS Excel. For those times, you may want to include some information about string manipulation functions that allow you to replace special characters during your transfer.

    Another gotcha with some English, Scottish, and American names are the inclusion of apostrophe’s (‘) in last names, and even some first names. You need to take these into account when bulk loading data if you have any sort of T-SQL involved, or the single-tick will cause issues. Also,please be aware that an apostrophe is not always the same as a single-tick. You usually find this out when copying SQL code from the web into your query analyzer, but it can make for a lot of editing.

    Thanks
    Jeff Bennett
    St. Louis, MO

    1. Any ETL tool would have you load the data in, then filter from there. It’ll just take time, but it’ll work.

      You could use Powershell to read the files, and then save out an adjusted CSV where {column_b} (is not null).

      If you’re looking for something simpler, maybe look at PowerBI’s ability to pull in files, merge them, then do one filter to combine.

  3. Pingback: Python use case - Import zipped file without unzipping it in SSIS and SQL Server - SQL Server 2017 - SQLRelease

Leave a Comment

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

This site uses Akismet to reduce spam. Learn how your comment data is processed.