I have sys to grant the following to a schema:
(login as sys from sqlplus 8.1.6 on linux)
grant select any table to a;
grant execute on dbms_alert to a;
grant create any procedure to a;
when i login as a, i still can NOT do a select on the table
dbms_alert_info ,
it says the table or view does not exist.
what else do i need to grant to the schema so that i can see the table
from schema a ?
Thanks in advance!
Ping
(login as sys from sqlplus 8.1.6 on linux)
grant select any table to a;
grant execute on dbms_alert to a;
grant create any procedure to a;
when i login as a, i still can NOT do a select on the table
dbms_alert_info ,
it says the table or view does not exist.
what else do i need to grant to the schema so that i can see the table
from schema a ?
Thanks in advance!
Ping
Comment