Link to home
Start Free TrialLog in
Avatar of mlcktmguy
mlcktmguyFlag for United States of America

asked on

File Sharing lock exceeded

I am starting another question on a topic I had asked about before.

Prior Lock Related Question

Since then the IT staff has manually changed the default Access lock limit by revising the registry on a couple machines based on this knowledge base article  This appeared to be successful in eliminating the issue.

http://support.microsoft.com/kb/815281LoLock Limit Article

I am again wondering if there is a way to alter this limit temporarily in code.  Their were some suggestion in the prior question that didn't appear to have any effect.  Rather than re-detailing everything here, please refer to the prior question for details.

Any way to alter the limit in code?  This is an Access 2003 MDE, running in Access 2003 runtime, on machines with Win7 Pro 64-bit operating system.
ASKER CERTIFIED SOLUTION
Avatar of Jim Dettman (EE MVE)
Jim Dettman (EE MVE)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Guess I should have read the other thread first<g>

There's no reason for the DBEngine.SetOption method not to work that I'm aware of.

Jim.
Avatar of mlcktmguy

ASKER

I'll give it another try.  What are the default locks and what <some number> would you recommend?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you.  Once set will the setting persist until the user exits the application?  Or does it need to be reset periodically?
<<Once set will the setting persist until the user exits the application?  >>

 Yes.

 Once they exit though, unless that line is re-executed again, the setting will be back to what's specified in the registry, which is 9,500 by default.

 The reason by the way the setting exists is to control a run away process from consuming all resources on a server.

  Back when Access started, one of the few server types out there was Novell, which needed protections like this or it could come to a halt.  The default setting harkens back to those days when working with 9,500 locks was a lot.

 In today's times, 9,500 locks is nothing and many routinely run with 50,000 - 100,000.  

 But if you need more then that, then it's worth figuring out why.  It may be legit because of table sizes and the process, but there may also be a problem and ways of optimizing it to consume less resources.

  Keep in mind that all that locking will raise concurrency issues if this is a process done when other users are on.

Jim.