0
emp表存在cis605,我想爲用戶分配權限。任何想法,我做錯了什麼?允許用戶從表中選擇
SQL> grant select on emp to user;
Grant succeeded.
SQL> connect user
Enter password:
Connected.
SQL> select * from emp;
select * from emp
*
ERROR at line 1:
ORA-00942: table or view does not exist
我自己也嘗試做不同的
SQL> connect cis605
Enter password:
Connected.
SQL> grant select on system.emp to chap7;
grant select on system.emp to chap7
*
ERROR at line 1:
ORA-00942: table or view does not exist
繼承人我應該使用
SQL被聲明> SELECT * FROM cis605.emp;
可能重複[我想爲用戶分配權限以查看EMP表](http://stackoverflow.com/questions/7857005/i-要對分配的權限換一個用戶觀看的最EMP-表) –