home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / sys / prime / 2466 < prev    next >
Encoding:
Text File  |  1992-11-19  |  1.4 KB  |  41 lines

  1. Newsgroups: comp.sys.prime
  2. Path: sparky!uunet!ornl!rsg1.er.usgs.gov!darwin.sura.net!jvnc.net!primerd.prime.com!tiger1.prime.com!gorton
  3. From: gorton@s35.prime.com (Scott Gorton)
  4. Subject: Re: change_project
  5. Message-ID: <1992Nov19.124349@tiger1.prime.com>
  6. Sender: gorton@tiger1.prime.com (Scott Gorton)
  7. Organization: Prime Computer, Inc.
  8. References:  <9211190709.AA02434@usenet.rpi.edu>
  9. Date: Thu, 19 Nov 1992 17:43:49 GMT
  10. Lines: 29
  11.  
  12. In article <9211190709.AA02434@usenet.rpi.edu>, MARK@acspr1.acs.brockport.edu writes:
  13. > I don't know if this has been brought up before or not, but can
  14. > anyone tell me why the CHANGE_PROJECT command (Primos Rev. 23.3) results
  15. > in an "Unexpected Error" when any other user is running CONFIG_USERS
  16. > or EDIT_PROFILE ?
  17. > Just wondering.
  18. > Mark Weiland
  19. > mark@acspr1.acs.brockport.edu
  20.  
  21. The problem is due to an improper read/write lock on the SDF database in the SAD.
  22. The database should be protected with an UPDaTe lock.  To remedy the situation
  23. change the line in SYSTEM>SET_LSR_ACLS.CPL that reads:
  24.  
  25.    &if [exists *>sdf -file] &then rwlock sdf sys
  26.  
  27. to
  28.  
  29.    &if [exists *>sdf -file] &then rwlock sdf updt
  30.  
  31. Since this will only take effect the next time the LOGIN_SERVER is started you
  32. can also manually setup the rwlock on the SDF (via: RWLOCK SAD>SDF UPDT) if
  33. you don't feel like stopping and restarting the LOGIN_SERVER.
  34.  
  35. This will be fixed in 23.4 and appropriate rapids.
  36.  
  37. Scott 
  38.  
  39.