vote up 0 vote down star

I have huge problem:

I have lots of .dbf files(~50000) and I need to import them into Oracle database. I open conncection like this:

     OleDbConnection oConn = new OleDbConnection();
  OleDbCommand oCmd = new OleDbCommand();
  oConn.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + directory + ";Extended Properties=dBASE IV;User ID=Admin;Password=";
            oCmd.Connection = oConn;
            oCmd.CommandText = @"SELECT * FROM " + tablename;
        try
            {
                oConn.Open();
                resultTable.Load(oCmd.ExecuteReader());
            }
            catch (Exception ex)
            {
                 MessageBox.Show(ex.Message);
              }
oConn.Close();
oCmd.Dispose();
oConn.Dispose();

I read them in loop, and then insert into oracle. Everything's fine. BUT: There is about 1000 files, that I can't open. They raise exception "not a table". So I google, and install Borland Database Engine. Now everything wokrs fine....but no.

Now, when I'm reading files, on 1024 file exception raises: "System resource exceeded". But I have lots of free resources. When I remove BDE, everything's fine again, no "system resource exceeded" error, but I cant read all files.

Help please.

PS: Tried using ODBC but nothing changes.

flag
"Problem remains even if I use one connection all the time", Sorry I can't be of help, the only other advice I have is to search for memory leak faults with the version of the BDE you're using, or run with a memory/resource profiler. Best of luck resolving this. – Binary Worrier Sep 16 at 12:36
How exactly are you using the BDE in this process? Based on your code, you are going directly through the Microsoft drivers, so you would never even access the BDE. How do you know that the DBF files that complain about being invalid are actually valid? Can you get them to open properly in some other program? – Scott W Sep 16 at 16:12
Yes. I can open them in DBF Viewer 2000 with no problems. As far as I know after installing BDE it overrides Microsoft drivers. – Drabuna Sep 17 at 6:35
Strange. My experience with the BDE has been that if you aren't explicitly using it, you wouldn't even know it was there. Sorry I can't be of any further help. – Scott W Sep 17 at 13:09

3 Answers

vote up 0 vote down

I have a Python module which can extract data from most DBF files, including DBF7, whose structure is somewhat different. It doesn't need drivers, OleDb or ODBC -- it just reads the file. It checks input files very carefully, and gives much more detailed messages than "not a table" if it is not happy. Can you make a few sample files available for inspection?

link|flag
vote up 0 vote down

Various flavors of DBF (dBASE, Clipper, FoxPro) are similar, with one notable exception: DBF7, which was introduced with Visual dBASE 7, and powered by BDE. DBF Viewer 2000 claims to support DB7, probably natively since the format still isn't that complicated. Maybe there are some file properties/info that you can view to confirm that all the "not a table" DBFs are DBF7.

Even if that turns out to define the nature of the problem, I don't see a particularly straightforward solution. If this is a one-time deal, maybe you can run the loop, save the names of the "1000" files that don't work without the BDE installed, and do a second pass with the BDE. (If it's more than 1024, you'd need a third pass.)

link|flag
vote up 0 vote down

I notice that you are using Jet oledb provider to connect to your dbf files ,I'm not sure if this will solve your problem or not but there is an oledb provider for visual FoxPro that I think you can use to connect to dbf files.

link|flag
Same problem with OleDb VFP - "not a table". – Drabuna Sep 16 at 12:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.