Cannot make mde

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amrhi
    New Member
    • Sep 2006
    • 22

    Cannot make mde

    Hello guys...!
    Can you help me i can make mde file . the respond is error....?
  • Tanis
    New Member
    • Mar 2006
    • 143

    #2
    Can you be a little more specific, what exactly is the error message?

    Comment

    • amrhi
      New Member
      • Sep 2006
      • 22

      #3
      this my error....

      This error is usually associated with compiling a large database into an MDE file. Due to the method used to compile the database, a considerable number of TableID references are created for each table. The Microsoft Jet database engine version 4.0 can only create a maximum of 2048 open TableIDs 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 TableIDs the Jet 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 TableIDs are used.

      More information about this error message online.

      Comment

      • PeterDavis
        New Member
        • Oct 2006
        • 8

        #4
        Originally posted by amrhi
        this my error....

        This error is usually associated with compiling a large database into an MDE file. Due to the method used to compile the database, a considerable number of TableID references are created for each table. The Microsoft Jet database engine version 4.0 can only create a maximum of 2048 open TableIDs 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 TableIDs the Jet 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 TableIDs are used.

        More information about this error message online.
        Unless you have an enormous database by Access standards, this is probably a red herring.

        It is much more likely that there is a compile error somewhere in your code or a query. Also check for corrupt tables and rebuild indices

        Comment

        Working...