13 Copyright © Oracle Corporation, 2001. All rights reserved. Controlling User Access.

Slides:



Advertisements
Similar presentations
14-1 Copyright  Oracle Corporation, All rights reserved. Privileges Database security: – System security – Data security System privileges: Gain.
Advertisements

13 Copyright © Oracle Corporation, All rights reserved. Controlling User Access.
SQL2-ch1 控制使用者存取. 題號  80 題: 14 、 22 、 40 、 42 、 52  140 題: 9 、 40 、 103.
Copyright  Oracle Corporation, All rights reserved. 10 Creating and Managing Tables.
Oracle9i Database Administrator: Implementation and Administration 1 Chapter 12 System and Object Privileges.
System Administration Accounts privileges, users and roles
Administering User Security
Getting Started with Oracle11g Abeer bin humaid. Create database user You should create at least one database user that you will use to create database.
By Lecturer / Aisha Dawood 1.  Administering Users  Create and manage database user accounts.  Create and manage roles.  Grant and revoke privileges.
CHAPTER 6 Users and Basic Security. Progression of Steps for Creating a Database Environment 1. Install Oracle database binaries (Chapter 1) 2. Create.
9 Copyright © 2005, Oracle. All rights reserved. Administering User Security.
Copyright س Oracle Corporation, All rights reserved. 14 Controlling User Access.
Database Programming Sections 13–Creating, revoking objects privileges.
Week 6 Lecture 2 System and Object Privileges. Learning Objectives  Identify and manage system and object privileges  Grant and revoke privileges to.
Week 7 Lecture 1 Database Roles. Learning Objectives  Discover when and why to use roles  Learn how to create, modify, and remove roles  Learn how.
INTRODUCTION TO ORACLE Lynnwood Brown System Managers LLC End User Management – Lecture 3 Copyright System Managers LLC 2007 all rights reserved.
12 Copyright © Oracle Corporation, All rights reserved. Other Database Objects.
7 Copyright © 2004, Oracle. All rights reserved. Administering Users.
16 Copyright © Oracle Corporation, All rights reserved. Managing Privileges.
1 Copyright © 2004, Oracle. All rights reserved. Introduction.
Controlling User Access. Objectives After completing this lesson, you should be able to do the following: Create users Create roles to ease setup and.
DCL/1 Data Control Language Objectives –To learn about the security mechanisms implemented in an RDBMS and how to use them Contents –Identifying Users.
17 Copyright © Oracle Corporation, All rights reserved. Managing Roles.
Roles & privileges privilege A user privilege is a right to execute a particular type of SQL statement, or a right to access another user's object. The.
Database Programming Sections 13–Creating, revoking objects privileges.
Outline Introduction Basic SQL Setting Up and Using PostgreSQL
Dale Roberts 1 Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer Computer Science, IUPUI
Access The L Line The Express Line to Learning 2007 L Line L © Wiley Publishing All Rights Reserved.
Controlling User Access Fresher Learning Program January, 2012.
© 2009 Punjab University College of Information Technology (PUCIT) September 8, 2009 Slide 1 (SQL) Controlling User Access Asif Sohail University of the.
Controlling User Access. 2 home back first prev next last What Will I Learn? Compare the difference between object privileges and system privileges Construct.
Database Programming Sections 11 & 12 –Sequences, Indexes, and Synonymns.
Database Security. Multi-user database systems like Oracle include security to control how the database is accessed and used for example security Mechanisms:
Copyright © 2004, Oracle. All rights reserved. CONTROLLING USER ACCESS Oracle Lecture 8.
Transactions, Roles & Privileges Oracle and ANSI Standard SQL Lecture 11.
IST 318 Database Administration Lecture 9 Database Security.
Chapter 13Introduction to Oracle9i: SQL1 Chapter 13 User Creation and Management.
Oracle 11g: SQL Chapter 7 User Creation and Management.
Database Security. Multi-user database systems like Oracle include security to control how the database is accessed and used for example security Mechanisms:
1 Copyright © 2006, Oracle. All rights reserved. Controlling User Access ( 사용자 접근 제어 )
7 Copyright © 2007, Oracle. All rights reserved. Administering User Security.
1 Copyright © 2009, Oracle. All rights reserved. Controlling User Access.
19 Managing Privileges Objectives Identifying system and object privileges Granting and revoking privileges Controlling operating system or password.
Creating and Revoking Object Privileges. 2 home back first prev next last What Will I Learn? Explain what a ROLE is and what its advantages are. Construct.
Dr. Chen, Oracle Database System (Oracle) 1 Chapter 7 User Creation and Management Jason C. H. Chen, Ph.D. Professor of MIS School of Business Gonzaga.
8 Copyright © 2005, Oracle. All rights reserved. Managing Schema Objects.
1 Copyright © 2005, Oracle. All rights reserved. Oracle Database Administration: Overview.
Database Security Advanced Database Dr. AlaaEddin Almabhouh.
15 Copyright © Oracle Corporation, All rights reserved. Managing Users.
Copyright  Oracle Corporation, All rights reserved. 14 Controlling User Access.
1 Chapters 19 and 20  Ch. 19: By What Authority? Users Roles Grant and revoke Synonyms  Ch. 20: Changing the Oracle Surroundings Indexes Clusters Sequences.
6 Copyright © 2005, Oracle. All rights reserved. Administering User Security.
Controlling User Access
Controlling User Access
Managing Privileges.
Controlling User Access
Objectives User access Create users Create roles
TABLES AND INDEXES Ashima Wadhwa.
Controlling User Access
Managing Privileges.
IS221: Database Management
Database Security.
ITEC 313 Database Programming
Database Security.
OER- UNIT 3 Authorization
Session #, Speaker Name Database Privileges 11/29/2018.
Managing Schema Objects
אבטחת נתונים בסביבת SQL Data Security
Create New User in Database. First Connect the System.
Managing Privileges.
Presentation transcript:

13 Copyright © Oracle Corporation, All rights reserved. Controlling User Access

13-2 Copyright © Oracle Corporation, All rights reserved. Objectives After completing this lesson, you should be able to do the following: Create users Create roles to ease setup and maintenance of the security model Use the GRANT and REVOKE statements to grant and revoke object privileges Create and access database links

13-3 Copyright © Oracle Corporation, All rights reserved. Controlling User Access Database administrator Users Username and password Privileges

13-4 Copyright © Oracle Corporation, All rights reserved. Privileges Database security: –System security –Data security System privileges: Gaining access to the database Object privileges: Manipulating the content of the database objects Schemas: Collections of objects, such as tables, views, and sequences

13-5 Copyright © Oracle Corporation, All rights reserved. System Privileges More than 100 privileges are available. The database administrator has high-level system privileges for tasks such as: –Creating new users –Removing users –Removing tables –Backing up tables

13-6 Copyright © Oracle Corporation, All rights reserved. Creating Users The DBA creates users by using the CREATE USER statement. CREATE USER scott IDENTIFIED BY tiger; User created. CREATE USER scott IDENTIFIED BY tiger; User created. CREATE USER user IDENTIFIED BY password;

13-7 Copyright © Oracle Corporation, All rights reserved. User System Privileges Once a user is created, the DBA can grant specific system privileges to a user. An application developer, for example, may have the following system privileges: –CREATE SESSION –CREATE TABLE –CREATE SEQUENCE –CREATE VIEW –CREATE PROCEDURE GRANT privilege [, privilege...] TO user [, user| role, PUBLIC...]; GRANT privilege [, privilege...] TO user [, user| role, PUBLIC...];

13-8 Copyright © Oracle Corporation, All rights reserved. Granting System Privileges The DBA can grant a user specific system privileges. GRANT create session, create table, create sequence, create view TO scott; Grant succeeded. GRANT create session, create table, create sequence, create view TO scott; Grant succeeded.

13-9 Copyright © Oracle Corporation, All rights reserved. What is a Role? Allocating privileges without a role Allocating privileges with a role Privileges Users Manager

13-10 Copyright © Oracle Corporation, All rights reserved. Creating and Granting Privileges to a Role CREATE ROLE manager; Role created. CREATE ROLE manager; Role created. GRANT create table, create view TO manager; Grant succeeded. GRANT create table, create view TO manager; Grant succeeded. GRANT manager TO DEHAAN, KOCHHAR; Grant succeeded. GRANT manager TO DEHAAN, KOCHHAR; Grant succeeded. Create a role Grant privileges to a role Grant a role to users

13-11 Copyright © Oracle Corporation, All rights reserved. Changing Your Password The DBA creates your user account and initializes your password. You can change your password by using the ALTER USER statement. ALTER USER scott IDENTIFIED BY lion; User altered.

13-12 Copyright © Oracle Corporation, All rights reserved. Object Privilege TableViewSequenceProcedure ALTER  DELETE  EXECUTE  INDEX  INSERT  REFERENCES  SELECT  UPDATE  Object Privileges

13-13 Copyright © Oracle Corporation, All rights reserved. Object Privileges Object privileges vary from object to object. An owner has all the privileges on the object. An owner can give specific privileges on that owner’s object. GRANTobject_priv [(columns)] ONobject TO{user|role|PUBLIC} [WITH GRANT OPTION]; GRANTobject_priv [(columns)] ONobject TO{user|role|PUBLIC} [WITH GRANT OPTION];

13-14 Copyright © Oracle Corporation, All rights reserved. Granting Object Privileges Grant query privileges on the EMPLOYEES table. Grant privileges to update specific columns to users and roles. GRANT select ON employees TO sue, rich; Grant succeeded. GRANT select ON employees TO sue, rich; Grant succeeded. GRANT update (department_name, location_id) ON departments TO scott, manager; Grant succeeded. GRANT update (department_name, location_id) ON departments TO scott, manager; Grant succeeded.

13-15 Copyright © Oracle Corporation, All rights reserved. Using the WITH GRANT OPTION and PUBLIC Keywords Give a user authority to pass along privileges. Allow all users on the system to query data from Alice’s DEPARTMENTS table. GRANT select, insert ON departments TO scott WITH GRANT OPTION; Grant succeeded. GRANT select, insert ON departments TO scott WITH GRANT OPTION; Grant succeeded. GRANT select ON alice.departments TO PUBLIC; Grant succeeded. GRANT select ON alice.departments TO PUBLIC; Grant succeeded.

13-16 Copyright © Oracle Corporation, All rights reserved. Confirming Privileges Granted Data Dictionary ViewDescription ROLE_SYS_PRIVS System privileges granted to roles ROLE_TAB_PRIVS Table privileges granted to roles USER_ROLE_PRIVS Roles accessible by the user USER_TAB_PRIVS_MADE Object privileges granted on the user’s objects USER_TAB_PRIVS_RECD Object privileges granted to the user USER_COL_PRIVS_MADE Object privileges granted on the columns of the user’s objects USER_COL_PRIVS_RECD Object privileges granted to the user on specific columns USER_SYS_PRIVS Lists system privileges granted to the user

13-17 Copyright © Oracle Corporation, All rights reserved. How to Revoke Object Privileges You use the REVOKE statement to revoke privileges granted to other users. Privileges granted to others through the WITH GRANT OPTION clause are also revoked. REVOKE {privilege [, privilege...]|ALL} ON object FROM {user[, user...]|role|PUBLIC} [CASCADE CONSTRAINTS]; REVOKE {privilege [, privilege...]|ALL} ON object FROM {user[, user...]|role|PUBLIC} [CASCADE CONSTRAINTS];

13-18 Copyright © Oracle Corporation, All rights reserved. Revoking Object Privileges As user Alice, revoke the SELECT and INSERT privileges given to user Scott on the DEPARTMENTS table. REVOKE select, insert ON departments FROM scott; Revoke succeeded. REVOKE select, insert ON departments FROM scott; Revoke succeeded.

13-19 Copyright © Oracle Corporation, All rights reserved. Database Links A database link connection allows local users to access data on a remote database. LocalRemote SELECT * FROM HQ_ACME.COM database EMP Table

13-20 Copyright © Oracle Corporation, All rights reserved. Database Links Create the database link. Write SQL statements that use the database link. CREATE PUBLIC DATABASE LINK hq.acme.com USING 'sales'; Database link created. CREATE PUBLIC DATABASE LINK hq.acme.com USING 'sales'; Database link created. SELECT * FROM SELECT * FROM

13-21 Copyright © Oracle Corporation, All rights reserved. Summary StatementAction CREATE USER Creates a user (usually performed by a DBA) GRANT Gives other users privileges to access the your objects CREATE ROLE Creates a collection of privileges (usually performed by a DBA) ALTER USER Changes a user’s password REVOKE Removes privileges on an object from users In this lesson, you should have learned about DCL statements that control access to the database and database objects:

13-22 Copyright © Oracle Corporation, All rights reserved. Practice 13 Overview This practice covers the following topics: Granting other users privileges to your table Modifying another user’s table through the privileges granted to you Creating a synonym Querying the data dictionary views related to privileges

13-23 Copyright © Oracle Corporation, All rights reserved.

13-24 Copyright © Oracle Corporation, All rights reserved.

13-25 Copyright © Oracle Corporation, All rights reserved.

13-26 Copyright © Oracle Corporation, All rights reserved.