3

I have a file with the name ABC.D110111 which is of 10GB size. I have to load this huge data to database table. So i created a DTS package to load from file to table. before loading i just want to see how many records exist in the file. So i opened it in notepad++. It is showing around 2.1 millions (21 lakhs) records.

Since it is a 10GB file, it will definitely have more than 2.1 millions records. But i am able to see only 0.2 millions (2 lakhs) records. Is there any row limitation in Notepad++? If yes, how many rows or how much size?

If load it as it is by running my DTS package, will i get all records or few records?

4

2 回答 2

2

If you load it using a DTS package, it will serially process the file chunks at a time. It won't attempt to load everything into memory first, so you will get all your records.

It looks like Notepad++ has a limit of 2G and will load that much of the file without crashing. If you see 2lakhs rows, then each row probably consumes 10K of space.

于 2012-10-05T01:55:25.470 回答
0

Notepad++ v7.9 行数限制为 25165891

于 2020-12-31T15:49:47.400 回答