C
cbelius
I am using Access 2003. In my mdb I have 2 identical tables with only 4
fields in each. A formular showing the data. One of the tables is linked
outsite from (back end) the other is internal in the mdb-file.
Ressources is checked with this script:
Dim i As Long, rst(1000) As DAO.Recordset
For i = 1 To 1000
Set rst(i) = CurrentDb.OpenRecordset( _
"Select * from Basis1", dbOpenDynaset)
rst(i).MoveFirst
Debug.Print "No of open objects: " & i
Next i
Running the script with the table "Basis" which is the linked table the
immediate window showed 80 Access objetc available before error 3048.
Running the script with the table "Basis1" which is NOT linked, the result
showed 252.
Splitting up a database eats ressources.
Question: How can I overcome this problem. I need splitting dbs in a
multiuser environment, but cannot open any more databases when 7 formulars
are open simultaneously.
Do I need a SQL solution??
tia.
fields in each. A formular showing the data. One of the tables is linked
outsite from (back end) the other is internal in the mdb-file.
Ressources is checked with this script:
Dim i As Long, rst(1000) As DAO.Recordset
For i = 1 To 1000
Set rst(i) = CurrentDb.OpenRecordset( _
"Select * from Basis1", dbOpenDynaset)
rst(i).MoveFirst
Debug.Print "No of open objects: " & i
Next i
Running the script with the table "Basis" which is the linked table the
immediate window showed 80 Access objetc available before error 3048.
Running the script with the table "Basis1" which is NOT linked, the result
showed 252.
Splitting up a database eats ressources.
Question: How can I overcome this problem. I need splitting dbs in a
multiuser environment, but cannot open any more databases when 7 formulars
are open simultaneously.
Do I need a SQL solution??
tia.