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.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2004-06-10 : 08:14:41
|
| Richard writes "HiI have a rather large amount of data to bulk insert into a table. Approx. 15 Gb in flat file format. What I am finding is that when I do a bulk insert the Table size is in the region of 160 Gb.The table has no indexes and the table structure is made up of ints, float, smallint and datetime.The table structure is as follows:Col1 intCol2 intCol3 intCol4 floatCol5 DatetimeCol6 SmallIntCol7 intCol8 intCol9 intCol10 intThe bulk insert properties are as follows:BULK INSERT Table FROM 'Filename' WITH ( CODEPAGE = 'ACP', DATAFILETYPE = 'char', FIELDTERMINATOR = '|', MAXERRORS = 0, ROWTERMINATOR = '\n' )Any help here would be fantastic as I have been tearing my hair out trying to resolve this one." |
|
|
|
|
|