Oracle

Granting System Privileges

Figo Kim 2006. 11. 30. 12:58
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
  • CREATE SESSION : Connect to the database
  • CREATE TABLE : Create tables in the user's schema
  • CREATE SEQUENCE : Create a sequence in the user's schema
  • CREATE VIEW : Create a view in the user's schema
  • CREATE PROCEDURE : Create a stored procedure, function, or package in the user's schema

Syntax )
GRANT privilege [, privilege...]
TO user [, user | role, PUBLIC...];

Current system privileges can be found in the SESSION_PRIVS dictionary view.

ex)
GRANT create session, create table, create sequence, create view
TO scott;






'Oracle' 카테고리의 다른 글

Role  (0) 2006.11.30
Role  (0) 2006.11.30
Granting System Privileges  (0) 2006.11.30
System Privileges  (0) 2006.11.30
System Privileges  (0) 2006.11.30