I have a dbf I need to import into MS Access, but it is too large to import directly (it's a 4 GB .dbf) although I do not need the whole thing. I only need a subset of the .dbf where the date corresponds to current year (2013), but do not know how to create a new, smaller DBF containing the data so I can import it.
This is something I'd ideally like to automate every day (the 4 GB dbf is dumped every morning and so I'd need to re-acquire the same cut every day).
Any advice would be appreciated. Thanks!
Currently-attempted query:
select * into destTable IN '\\path\to\backend.mdb'
FROM sourceDBF
WHERE (((sourceDBF.DATE)>"X2*"));
(The date part is weird because of the way dates are stored in that particular DBF)
The error (after it spends like 15-20 minutes running the query): http://i49.tinypic.com/b8wb5e.png