Results 1 to 7 of 7
  1. #1
    batowl is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Dec 2010
    Posts
    86

    Help with Error 3048: Cannot open any more databases

    Hi All,

    I recently completed creating a database that is somewhat large for me (29 tables). Once I had the data entry form set up the way that I wanted, I would get to a certain point in the data entry process on the very first new record (4340 historic records were imported and are appropriately stored) before getting the following error: Error 3048: Cannot open any more databases. I could not enter any more data and the drop down menu on the record where data entry was stopped was now blank (it should be filled with a list of response options that are stored in a separate table).

    I do not have a clue as to how to fix this problem (or even exactly what the problem is). Has anyone run into this before and are they aware of a solution?

    Thank you.

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,644
    Could be any number of causes, one of which is corruption.

    Do you have any code in the db - macro or VBA?

    If you want to provide db for analysis, follow instructions at bottom of my post.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    burrina's Avatar
    burrina is offline VIP
    Windows 8 Access 2010 32bit
    Join Date
    Oct 2012
    Location
    Freeport,Texas
    Posts
    1,383
    I suspect too many open connections. You need to make sure they are closed. Example:


    Dim rst as DAO.Recordset
    Set rst = CurrentDb.OpenRecordset("SomeTableOrQueryName", dbOpenDynaset)
    rst.Close
    Set rst = Nothing
    HTH

  4. #4
    batowl is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Dec 2010
    Posts
    86
    In terms of attaching the db for analysis - the database is split so that the tables all sit in the back end and the forms are in the front. The front end also connects to a 2nd back end database to retrieve other data. So would you need all three files submitted for analysis?

    I do not think I have written any code for this database yet. Everything I have done up to this point (creating tables, importing historic data, establishing relationships, building forms) has been accomplished without writing any code.

  5. #5
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,644
    If there is no code in any of the db's, providing db's probably not useful.

    29 linked tables should not cause an issue. How many tables are linked with the 2nd db? I doubt you have hit a limit.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  6. #6
    batowl is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Dec 2010
    Posts
    86
    I am just linking to one table in the back end of the 2nd DB.

    I have over 255 fields were I am capturing data, so the data entry form has various subforms on it (which are placed on separate tabs) in order to accomodate this high number.

    The fact that the drop down box all the sudden empties out is peculiar to me. Would it help if I moved the table where the list of available options within the drop down menu (yes, no, dont know, unknown, etc.) to the front end? Could it be the connection to this table in the back end over and over that is causing the problem?

  7. #7
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,644
    The limit for number of controls on a form is 755. I have hit that limit and used subforms to get around. Forms are a little slow but all works.

    Moving the lookup table to frontend probably won't make difference but you could try.

    I don't have any problems with combobox connections. I have forms with many comboboxes pulling their lists from backend.

    Have you run Compact & Repair?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Too Many Databases Error
    By max_the_axe in forum Access
    Replies: 4
    Last Post: 08-28-2014, 11:50 AM
  2. Form getting 3048 error when repeated
    By Ruegen in forum Reports
    Replies: 9
    Last Post: 07-20-2014, 10:44 PM
  3. Replies: 2
    Last Post: 06-20-2014, 12:33 PM
  4. Cannot open any more databases.
    By evander in forum Queries
    Replies: 7
    Last Post: 08-24-2010, 12:22 AM
  5. Cannot open any more databases error
    By Matthieu in forum Access
    Replies: 2
    Last Post: 04-14-2010, 03:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums