home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / database / oracle / 1171 < prev    next >
Encoding:
Internet Message Format  |  1992-07-30  |  1.1 KB

  1. Path: sparky!uunet!sun-barr!cs.utexas.edu!usc!sdd.hp.com!uakari.primate.wisc.edu!relay!dcoxmac.nswc.navy.mil!user
  2. From: dcox@relay.nswc.navy.mil (David Cox)
  3. Newsgroups: comp.databases.oracle
  4. Subject: Can one user create table in another's tablespace?
  5. Message-ID: <dcox-310792114054@dcoxmac.nswc.navy.mil>
  6. Date: 30 Jul 92 15:50:10 GMT
  7. Sender: news@relay.nswc.navy.mil
  8. Followup-To: comp.databases.oracle
  9. Organization: NSWC
  10. Lines: 17
  11.  
  12. Don't ask me how I got into this situation, but I need to allow
  13. another user to create a table (as part of a weekly procedure)
  14. in my username. That is, my oracle username/login is, say, david,
  15. and their's is bob. I need to be able to allow bob to do:
  16.  
  17. sqlplus bob/hispassword
  18. >drop table david.acctdata
  19. >create table david.acctdata (etc...)
  20. >grant select,insert on david.acctdata to bob
  21. >grant select on david.acctdata to frank
  22. >quit
  23.  
  24. Actually, at some point in the weekly procedure I would like to
  25. restrict bob to select privilidges on david.acctdata, but this is
  26. not crucial. 
  27.  
  28. Is there some way I can achieve this without bob having DBA priviledges?
  29.