I've got an access97 reporting mdb that pulls data (77,000 rows) from a
sql server table into a local table to run reports
if the local table is part of the reporting MDB, the insert statement
(16 fields) takes less than 30secs, but because of db-bloat, I moved
the local table to a 2nd MDB
and per postings, this 2nd MDB is copied into a folder and linked as a
'temp' MDB every time I run my reporting mdb
also, per postings, my main form opens a recordset to a table in the
'temp' MDB to prevent continuous LDB activity
but the insert statement now takes 20 mins....
both the reporting MDB and the temp MDB are on the same terminal server
(on different drives) and the sql server is connected to the terminal
server via a 1-GB network
updating to the 'temp' MDB is slow with / without any indexing on the
local table
the 'temp' MDB has been compacted, no difference
I created a new temp MDB and imported the tables, no difference
what am I missing ?
sql server table into a local table to run reports
if the local table is part of the reporting MDB, the insert statement
(16 fields) takes less than 30secs, but because of db-bloat, I moved
the local table to a 2nd MDB
and per postings, this 2nd MDB is copied into a folder and linked as a
'temp' MDB every time I run my reporting mdb
also, per postings, my main form opens a recordset to a table in the
'temp' MDB to prevent continuous LDB activity
but the insert statement now takes 20 mins....
both the reporting MDB and the temp MDB are on the same terminal server
(on different drives) and the sql server is connected to the terminal
server via a 1-GB network
updating to the 'temp' MDB is slow with / without any indexing on the
local table
the 'temp' MDB has been compacted, no difference
I created a new temp MDB and imported the tables, no difference
what am I missing ?
Comment