Click here to Skip to main content
15,867,289 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i have installed oracle 11g on fedora 14. i connected to sqlplus as 'SYS' and
create some table, then create user named as "account" and create role as "payroll"
with the following privillages. then assign the roll to the "account" user. but i
still can not access the created tables when i loggedas user "account". here is my quaries.

plz can anyone help
SQL
---------as SYS user-------------------------------------------------------------------------
create type pay_t as object(
id int,
name varchar(10)
)
/

create table pay of pay_t;
insert into pay values(pay_t(10,'p01'));
------------------------------------------
create user account identified by paccount;
grant create session to account;
grant connect to account
------------------------------------------
create role pay_roll;
grant select on pay to pay_roll;
grant pay_roll to account;

--------------------------------------------------------------------------------------------

--------------as account user---------------------------------------------------------------
select * from pay;

this gives an error saying there are no such table or view.
Posted
Updated 17-Mar-13 3:46am
v2
Comments
Sudhakar Shinde 16-Mar-13 22:22pm    
Table pay is created under SYS user and hence it will not get accessed under account. It will be better if you can explain what are you trying to achieve by creating a user and roll then we can help with some solution.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900