I'm setting up a system to use schemas:

                       DB
            -----------+------------
            |      |       |       | 
Schemas:    Prod   Test   Funcs    TestFuncs
            |      |       
           tables  tables

This sort of arrangmenet allows me to have a Production set of tables and a
Test set of tables. By loading the plsql functions into either Funcs or
TestFuncs, I can try out new test functions with the test data before putting
them into production.

However different database users need to load functions into TestFuncs,
and use, and possibly drop and reload, the tables in Test.

I tried the following:

 [EMAIL PROTECTED]> CREATE SCHEMA Test;
 [EMAIL PROTECTED]> CREATE USER User1;
 [EMAIL PROTECTED]> CREATE USER User2;
 [EMAIL PROTECTED]> CREATE GROUP Testers WITH USER User1, User2;
 [EMAIL PROTECTED]> GRANT ALL ON Test TO GROUP Testers;

However, when User1 loads tables into Test, User2 cannot work with them
unless User1 explicity sets:
 
    "GRANT ALL ON <tablename>|<indexname> TO User2"

Is there anyway of setting the equivalent of a directory g+sw
permissions on Test?

Thanks for any help
Rory

-- 
Rory Campbell-Lange 
<[EMAIL PROTECTED]>
<www.campbell-lange.net>

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Reply via email to