Question Make ACCDE error message and Copy Question

freezeb

Registered User.
Local time
Today, 08:47
Joined
Sep 13, 2010
Messages
17
1) I am trying to make an ACCDE file from my existing development database and I am getting and error message stating it can't do it. When I select help from the little menu that appears this is the message.

This error is usually associated with compiling a large database into an MDE file. Because of the method used to compile the database, a considerable number of TableID references are created for each table. The Access database engine can only create a maximum of 2048 open TableID’s at one time. Exporting a database as an MDE potentially can exceed this limit if the database has a large number of objects (table, Macro, form, report, etc). There is no accurate method to estimate the number of TableID’s the access database engine uses during the process of compiling a database as an MDE. However, each VBA module and each form uses one TableID, as a result, if the database has 500 forms, and each form’s HasModule property is set to Yes, as many as 1,000 TableID’s are used.


I have 26 tables, 20 queries, 44 forms and 14 reports. I am not trying to save it as MDE but ACCDE.


2) Is there a way for me to copy my entire database structure only without the test data in it to a new database. What I am looking for is to reset the autonumber id fields back to 0 and load with fresh data?
 
First of all before you do anything else design a module and click on Debug, then debug your accdb. If any errors occur it ill be these that are preventing Access creating the accde. Resolve these issues and retry.
 
Thanks I will need to read up on modules. I am new to this and don't know how to make a debug module for the database.
 
I did find the answer to my last question above regarding copying the structure only for the tables. Can anyone help me with the module that needs to be created for debugging. I really don't know where to start with that for debugging the entire database.
 

Users who are viewing this thread

Back
Top Bottom