Can't open any more tables - 3014 
Author Message
 Can't open any more tables - 3014

I am developing a C++ app using VC++ 4.0, the DAO SDK, and Access 95.
After the app is running for a while, I get an exception when trying to
run a query.  The error is 3014 - Can't open any more tables.

Q. Has anyone had this problem ?

Q. What is the limit to the number of tables open ?

Q. How can you check how many tables are open ?

Any help would be appreciated

Regards

Mark Flannery



Tue, 16 Nov 1999 03:00:00 GMT  
 Can't open any more tables - 3014

Quote:
>I am developing a C++ app using VC++ 4.0, the DAO SDK, and Access 95.
>After the app is running for a while, I get an exception when trying to
>run a query.  The error is 3014 - Can't open any more tables.

>Q. Has anyone had this problem ?

>Q. What is the limit to the number of tables open ?

>Q. How can you check how many tables are open ?

>Any help would be appreciated

Hi Mark,

It's just a guess, but often this will happen if you are open
recordsets inside a large transaction. The recordsets, even it they
are properly closed in the transaction, get cached until the
transaction is committed, and eventually you hit a limit. I do not
know what exactly the limit is.

If this is it, you can try restructuring the code to use fewer
recordsets, or you could try doing commits more frequently -- say,
every 500 or 1000 loops.

 -- Andy



Fri, 19 Nov 1999 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. ? 3014 Can't open any more tables - Click header to sort by column fails

2. Error 3014: Can't open any more tables

3. Please help: run-time error 3014-can't open any more tables

4. Error 3014: Can't open any more tables

5. Err 3014, can't open any more tables

6. Error 3014: Can't open any more tables

7. Can't open any more tables error 3014

8. Error 3014 (too many Tables open)

9. Run-time error 3014 - 'Cannot open any more tables'

10. Error 3014 "can't open any more tables" when using the visual basic data control

11. HELP! - 3014 Can't Open Any More Tables...

12. Error 3014 "can't open any more tables" when using the visual basic data control

 

 
Powered by phpBB® Forum Software