Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 how to speed up loading a flat file into SQLServer

Author  Topic 

ferpsql
Starting Member

4 Posts

Posted - 2008-09-04 : 17:33:40
Hi all,

I'm quite new to SQL Server and I've the below issue.
I've a large flat file, about 1000000 rows, to load into only 1 table with about 30 columns. I'm looking for a way to load that file into SQL Server in a very fast way, that file could be also split into more pieces to load in a parallel way.
What do you suggest to do it ? Is there any tool/utility/facility could I use ?

Thanks a lot in advance
ferp

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-09-04 : 17:34:41
The fastest way to import data is BULK INSERT, which is a T-SQL command.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-09-04 : 19:15:55
Or Export/Import wizard.
Go to Top of Page
   

- Advertisement -