home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / novel.zip / NOVEL.DB3
Text File  |  1986-05-04  |  2KB  |  70 lines

  1. When running a db3 plus application on a Novell net, certain
  2. considerations have to be made. First, you cannot install Access
  3. on the server, contrary to the instructions in the manual.
  4. Second, Config.db belongs at the workstation, in the same subdir
  5. as Access. Within Config.db, you may have a command to set
  6. exclusive off, this is either undocumented or else I missed it;
  7. but it works. Also within config.db you may set a path command to
  8. cause dbase to search other drives for your files. As you will
  9. see in the batch file later on, I assign up to five network
  10. drives as dbase subdirs.
  11.  
  12. My Config.db follows:
  13.  
  14. color =  BG+,W/B,B
  15. path=k:.;l:.;h:.;i:.;j:.;
  16. bell=off
  17. talk=off
  18. exclusive=off
  19. delimiter="[]"
  20. delimiter=on
  21.  
  22. My users simply issue the command DBASE to begin the networked
  23. version of dbase. The batch file(s) follow. I've use the &&
  24. method of commenting, but of course you'll have to remove them.
  25.  
  26. DBASE.BAT
  27.  
  28. map h:=sys:db3plus\assets    && PRG & FMT
  29. map i:=sys:db3plus\asfiles   && DBF & NDX
  30. map j:=sys:db3plus\saywhat   See note at the end if you use Saywhat
  31. map k:=sys:db3plus\swaps     && PRG & FMT
  32. map l:=sys:db3plus\swfiles   && DBF & NDX
  33. echo x'255'x'255' terminate VIDPOP/  && actually entered via ALT key
  34. j:vidpop     && A tsr from Saywhat that POPS dbase screens
  35. db3
  36.  
  37. DB3.BAT
  38.  
  39. echo off
  40. if EXIST c:\db3plus\access.com GOTO found
  41. goto notfnd
  42. :found
  43. if EXIST g:dba.ld1 goto process
  44. echo You must include the following statements in your SETLOGIN
  45. echo     map g:=sys:db3plus
  46. echo     map s*:=g:      (where * is your next available search number)
  47. pause
  48. goto done
  49. :process
  50. path c:\db3plus;z:.;y:.;x:.;w:.;v:.;u:.;  && add more drive letters
  51. c:                                        && if needed.
  52. cd\db3plus
  53. access m=g:
  54. goto done
  55. :notfnd
  56. echo Sorry, Access is not installed on this workstation
  57. :done
  58. exit       && this closes the Desqview window, but is harmless otherwise
  59.  
  60.  
  61. The trustee assignments for the group DBASE_USERS is:
  62.    SYS:DB3PLUS                      RWOC  S
  63.    SYS:DB3PLUS\PGMS                 R O   S
  64.    SYS:DB3PLUS\FILES                RWOCD S
  65.  
  66. Note: If you use SAYWHAT. 
  67.  The command to bring up a screen is:
  68.  ?? CHR(255) + CHR(255) + "J:.\progname/"   && don't forget to 
  69.                                    &&  put the  "." after the J:
  70.