Jaymond Flurrie
Well-known Member
- Joined
- Sep 22, 2008
- Messages
- 921
- Office Version
- 365
- Platform
- Windows
So the idea is that I have now split up my 6GB flatfile into ten smaller ones, they're just text files with one ID number, four 1-10 numbers and 2400 0/1s separated by tabs there. As an example data (using only four of those 2400):
ID One Two Three A B C D
1 4 5 6 0 1 0 1
12 5 6 7 1 1 0 1
I would need to get these to Access as quickly as possible and I already have VBA code to create tables with Integer-Integer-Integer-Integer-BIT-BIT-BIT-BIT fields, but what's the smartest way to get the data there?
Let's assume one of my 600MB files is in C:\fromhere1.txt
Also, would it be faster/better if I would use ACCDB instead of MDB as my databases for this kind of data?
ID One Two Three A B C D
1 4 5 6 0 1 0 1
12 5 6 7 1 1 0 1
I would need to get these to Access as quickly as possible and I already have VBA code to create tables with Integer-Integer-Integer-Integer-BIT-BIT-BIT-BIT fields, but what's the smartest way to get the data there?
Let's assume one of my 600MB files is in C:\fromhere1.txt
Also, would it be faster/better if I would use ACCDB instead of MDB as my databases for this kind of data?