This is very common request recently – How to import CSV file into SQL Server? How to load CSV file into SQL Server Database Table? How to load comma delimited file into SQL Server? Let us see the solution in quick steps.
CSV stands for Comma Separated Values, sometimes also called Comma Delimited Values.
Create TestTable
USE TestData
GO
CREATE TABLE CSVTest
(ID INT,
FirstName VARCHAR(40),
LastName VARCHAR(40),
BirthDate SMALLDATETIME)
GO
Create CSV file in drive C: with name csvtest.txt with following content. The location of the file is C:\csvtest.txt
1,James,Smith,19750101
2,Meggie,Smith,19790122
3,Robert,Smith,20071101
4,Alex,Smith,20040202
Now run following script to load all the data from CSV to database table. If there is any error in any row it will be not inserted but other rows will be inserted.
BULK
INSERT CSVTest
FROM 'c:\csvtest.txt'
WITH
(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
GO
--Check the content of the table.
SELECT *
FROM CSVTest
GO
--Drop the table to clean up database.
DROP TABLE CSVTest
GO
Reference : Pinal Dave (http://blog.SQLAuthority.com)
'Databases' 카테고리의 다른 글
MySQL 풀텍스트 검색 (0) | 2013.01.09 |
---|---|
LOAD DATA INFILE Syntax / Import .csv File (0) | 2013.01.08 |
UTF-8 데이터를 SQL Server에 저장하는 방법 (0) | 2012.12.26 |
flush privileges error 1146 (42s02) table 'mysql.servers' doesn't exist (0) | 2012.12.13 |
MS-SQL 서버 SA 비번 변경 (0) | 2012.12.06 |