Les 01
Les 01
Les 01
Database
administrator
Database security:
System security
Data security
System privileges: Gaining access to the database
Object privileges: Manipulating the content of the
database objects
Schemas: Collection of objects such as tables,
views, and sequences
Users
Manager
Privileges
Create a role:
CREATE ROLE manager;
Role created.
Grant privileges to a role:
GRANT create table, create view
TO manager;
Grant succeeded.
Grant a role to users:
GRANT manager TO BELL, KOCHHAR;
Grant succeeded.
ALTER USER HR
IDENTIFIED BY employ;
User altered.
Object
Privilege Table View Sequence Procedure
ALTER
DELETE
EXECUTE
INDEX
INSERT
REFERENCES
SELECT
UPDATE