The bcp utility bulk copies data between an instance of Microsoft SQL Server and a data file in a user-specified format. See bsp utility on Technet.
-- To allow advanced options to be changed. EXEC sp_configure 'show advanced options', 1 GO -- To update the currently configured value for advanced options. RECONFIGURE GO -- To enable the feature. EXEC sp_configure 'xp_cmdshell', 1 GO -- To update the currently configured value for this feature. RECONFIGURE GO
Read more details on Technet
version Number of columns col number, file data type, prefix length, data length, terminator, table col order, table col name, file collation
10.0 3 1 SQLCHAR 0 12 "," 1 Col1 "" 2 SQLCHAR 0 12 "," 2 Col2 SQL_Latin1_General_CP1_CI_AS 3 SQLCHAR 0 12 "," 3 Col3 SQL_Latin1_General_CP1_CI_AS
EXEC xp_cmdshell 'bcp DB..MyTable format nul -c -f c:\formatFile.txt -T'
EXEC xp_cmdshell 'bcp DB..MyTable in c:\DataSource.csv -f c:\formatFile.txt -T'
bulk INSERT dbo.a FROM 'c:\Projects\DataSet4assign.csv' WITH (formatfile = 'c:\Projects\formatFile.txt')