Oracle PL/SQL/User Previliege/Table privileges — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 09:55, 26 мая 2010
Содержание
Grant permission for a table to a user
grant select on mytable to scott with grant option;
Grant select on a table with synonym
connect scott/tiger
grant select on george.mytable to system;
Grant the CREATE TABLE privilege to DROPME
grant create session, create table to dropme;
Grant with user name and table name
GRANT SELECT ON Student.ClassEnrollment TO Susan
WITH GRANT OPTION;
Table privileges: SELECT, ALTER, DELETE, INSERT, and UPDATE
GRANT DELETE ON bonuses TO userName
--