English 中文(简体)
监 测
原标题:MS Access freezing

我的微软准入2007年冻结在我身上。 这700个问题吗?

Yes, it s on a network, but only 2-3 people are accessing the backend at a time.

我曾尝试过紧凑和修理,也尝试了。 没有工作。

最佳回答

根据我的经验,我可以向您保证,多达15名 working辛地工作的人应当被罚款,而不会明显冻结。

You can explore the following:

  1. How big is your MDB? if it is too big consider splitting it to smaller parts and put all your historical and rarely accessed data into the separate file -- you can easily re-bind all the table in front-end to multiple back-end files.
  2. Check your queries and VBA code. Use optimistic locks everywhere you can and avoid locking tables for reading purposes!
  3. Check your network connectivity and hard drive throughput? Is your serving trying to perform a virus scan every time you update your MDB? Maybe an update is running?
  4. If nothing helps -- try to install MS SQL Express, quickly upsize your tables and re-bind those to your front-end using ODBC connection -- you won t need to re-write your queries (as long as those are written in agnostic SQL, without DISTINCTROW etc).
问题回答

它像一个锁定问题一样。 喷气发动机并不是为多用户使用设计的,根本无法处理。 你们应考虑升级为KQ服务器,因为服务器处理得更好。 服务器的快式版本是免费的,而MS Access有一个不断升级的izar子,将做你们的所有辛勤工作。





相关问题
Handling no results for docmd.applyfilter

I have an Access app where I use search functionality. I have a TextBox and a Search Button on the form, and it does a wildcard search of whatever the user enters in the TextBox, and displays the ...

access query to filter and combine count

i have two access tables tableA num count 1 7 2 8 3 9 4 9 5 13 6 6 tableB num count 0 1 1 14 2 12 3 5 4 5 5 11 6 5 how can i create an access query that ...

How to show File Picker dialog in Access 2007?

I want to show a dialog where the user can pick a file, click OK, and then the path to the file will be saved in the database. I have just one problem, I can t figure out how tho show the dialog ...

MS Access: list macro from VBA

I have to deal with a few macros (not VBA) in an inherited Access application. In order to document them, I would like to print or list the actions in those macros, but I am very dissatisfied by ...

Returning row number on MS Access

I have 4 tables, from which i select data with help of joins in select query...I want a serial no.(row number) per record as they are fetched. first fetched record should be 1, next 2 and so on... In ...

热门标签