2015-11-10 100 views
0

如何授予權限給用戶,以便他們可以通過特權在Oracle其他用戶?甲骨文授予權限

全部授予客戶爲Admin;

是這個命令?

感謝

+1

你可以找到這個[文檔中](http://docs.oracle.com/cd/E11882_01/server.112/e41084/statements_9013.htm#i2062275)。 –

回答

1

你可能需要的with grant option條款。

grant all 
    on customer 
    to some_user 
with grant option; 

如果你授予系統權限,而不是一個對象權限,使用with admin option條款,而不是with grant option

1
GRANT ALL PRIVILEGES ON mydb.customers TO username WITH GRANT OPTION; 
1

添加WITH GRANT OPTION

Grant All On Customers to Admin with grant option;