home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / database / 9518 < prev    next >
Encoding:
Text File  |  1993-01-28  |  2.1 KB  |  40 lines

  1. Newsgroups: comp.databases
  2. Path: sparky!uunet!europa.eng.gtefsd.com!gatech!paladin.american.edu!howland.reston.ans.net!usc!sdd.hp.com!elroy.jpl.nasa.gov!decwrl!pa.dec.com!engage.pko.dec.com!nntpd.lkg.dec.com!nntpd2.cxo.dec.com!tincup.enet.dec.com!lindsey
  3. From: lindsey@tincup.enet.dec.com (Randy Lindsey)
  4. Subject: Re: Program Rights in NetWare?
  5. Message-ID: <1993Jan28.191726.12449@nntpd2.cxo.dec.com>
  6. Sender: usenet@nntpd2.cxo.dec.com (USENET News System)
  7. Organization: Colorado Software Solutions, Inc.
  8. References:   <C19KDv.1JH@ms.uky.edu>
  9. Date: Thu, 28 Jan 1993 19:13:46 GMT
  10. Lines: 28
  11.  
  12.  
  13. In article <C19KDv.1JH@ms.uky.edu>,  hgpeach@ms.uky.edu (Harold G. Peach, Jr.) writes...
  14. >I am designing a database for use on a NetWare 386 LAN.  What I would like
  15. >to setup is a system where users enter information into a temporary file
  16. >stored in a directory they have RW access to.  Then after validation,
  17. >have the entry program append the transaction file to a master file
  18. >kept in a subdirectory that only the supervisor has RW access to.  Is
  19. >there a way to give a program file/subdirectory access that the user using
  20. >the program does not have?  I know this can be done under UNIX and several
  21. >other platforms, but don't see anything in my Novell reference about how
  22. >to do it in NetWare.
  23. >---
  24. >Harold G. Peach, Jr.                              Home Phone:  (606) 271-6393
  25.  
  26. On a network, you can't allow programs to have rights--because anybody
  27. could create their own program and endow it with any rights they wanted
  28. to give it.  The network can't guarantee that the program you *say* you're
  29. running on your remote system is the one it *thinks* you're running.  So
  30. only the user has any rights.
  31.  
  32. That said, you can give everybody Write-only access to a directory.  They
  33. can put data into it, but can't view or change data, including overwriting
  34. existing files.  So anybody could copy an entire file to that directory.
  35. They couldn't, however, append to an existing file.  You'd just have to
  36. have a privileged user periodically run a program to collect all the little
  37. files and append them to the main one.  This applies to Novell, anyway.
  38.  
  39. -Randy
  40.