Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Memory problems with Access

Status
Not open for further replies.

suezq2

Programmer
Dec 13, 2001
2
0
0
US
I have a problem with the Access 2000 database that I created. It grows at a very rapid pace (@5 mb a day). The back end is a SQL Server database and I mostly use pass-thru queries to get the data to the Access front end. I also seem to get an error at times that is a "Copy to Clipboard". Could this have something to do with the abnormal growth. This is the second database my company has created (The first one being in Access 97) and the other one doesn't grow as fast. Someone told me that it could be the queries that do not get completely deleted from the system. Could this happen with pass-thru's too? Please Help!

Sue
 
You might want to upsize to an Access Project. Remember however you have a capacity level of 2GB per DB after which after which you need to find a different Front End
 
Are you holding some of the data in temp tables in the front end? If you are, drop the temp tables as soon as you can and make sure that you compact on close. One thing you might try, and this is only if you wish to revisit how your mdb works, is to scrap your queries and use the sql statements as sources for recordsets. This might add some weight to your forms and reports, but it gets rid of the queries (which can be weighty themselves) and it allows you to clear out the MSysQueries table which holds query information. If you're using SQL Server as a backend, you can also speed up performance with stored procs.

I am in a similar situation with an access front end and sql server backend. The only saved queries I use are for crosstabs - transact sql in sql server does not understand the Transform keyword - and they are based on temp tables.


Hope that helps.

Bob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top