ACC97: Manipulating Objects with DAO May Cause Database Bloat

Last reviewed: August 5, 1997
Article ID: Q172285
The information in this article applies to:
  • Microsoft Access 97

SYMPTOMS

Advanced: Requires expert coding, interoperability, and multiuser skills.

When you use data access objects (DAO) to create objects in a database, the size of the database increases substantially during the operation. After compacting, the size of the database is much smaller.

This article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to the "Building Applications with Microsoft Access 97" manual.

RESOLUTION

Use SQL Data Definition Language (DDL) statements rather than DAO to create or modify database objects. For example, you can use the following procedure to work around the behavior demonstrated in the "Steps to Reproduce Problem" section:

   Sub CreateTables()
      Dim db As Database
      Dim sql As String
      Dim i As Integer, j As Integer

      Set db = CurrentDb()
      For i = 1 To 20
         sql = "CREATE TABLE Table" & i & " ("
         For j = 1 To 200
            sql = sql & "Field" & j & " TEXT,"
         Next
         sql = Left$(sql, Len(sql) - 1) & ");"
         db.Execute sql
      Next
      Application.RefreshDatabaseWindow
   End Sub

STATUS

Microsoft has confirmed this to be a problem in Microsoft Access 97. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

This behavior typically occurs when using DAO to create or modify a large number of database objects. The following example demonstrates this by using DAO to create twenty tables, each with two hundred fields. In this example, reducing the number of fields created in the example greatly reduces the amount of database bloat.

Steps to Reproduce Problem

  1. Open the sample database Northwind.mdb.

  2. On the Tools menu, point to Database Utilities, and then click Compact Database.

  3. Press CTRL+G to open the Debug window.

  4. Type the following in the Debug window, and then press ENTER:

    ?FileLen(CurrentDb.Name)

    This function returns the file size in bytes of the currently opened database (Northwind.mdb). The file size of an unmodified copy of Northwind.mdb is approximately 1,546,240 bytes.

  5. Create a module and type the following line in the Declarations section if it is not already there:

    Option Explicit

  6. Type the following procedure:

    Sub CreateTables() Dim db As Database Dim t As TableDef Dim f As Field Dim i As Integer, j As Integer

    Set db = CurrentDb() For i = 1 To 20

              Set t = db.CreateTableDef("Table" & i)
              For j = 1 To 200
                 Set f = t.CreateField("Field" & j)
                 f.Type = dbText
                 f.size = 50
                 t.Fields.Append f
              Next
              db.TableDefs.Append t
           Next
           Application.RefreshDatabaseWindow
         End Sub
    
    

  7. On the Debug menu, click Compile And Save All Modules. When Microsoft Access prompts you for the name of the module, click OK to accept the default name.

  8. To run this procedure, type the following line in the Debug window, and then press ENTER. It may take several minutes for this procedure to run.

    CreateTables

    Note that twenty tables are added to the database, each with two hundred fields.

  9. Type the following line in the Debug window, and then press ENTER:

    ?FileLen(CurrentDb.Name)

    Note that the file size of Northwind.mdb is now reported to be more than 52 megabytes.

  10. Press F11 to view the Database window.

  11. On the Tools menu, point to Database Utilities, and then click Compact Database.

  12. Press CTRL+G to open the Debug window.

  13. Type the following in the Debug window, and then press ENTER:

    ?FileLen(CurrentDb.Name)

    Note that the file size of Northwind.mdb after compacting is reported to be 1,898,496 bytes.

REFERENCES

For more information about DDL queries, search the Help Index for "data-definition queries," or ask the Microsoft Access 97 Office Assistant.

Keywords          : MdlDao kbusage
Version           : 97
Platform          : WINDOWS
Hardware          : x86
Issue type        : kbbug
Solution Type     : kbcode


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 5, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.