I'm Top Oracle DBA

All posts by itoporacledbaadmin

Generate script for Object Privilege and Synonym on Oracle Databases 10g onward

Database security Each database product like Oracle has a particular security model and the DBA should be well aware in order to control access to data. This is part of authorization, Authorization is granting permission on various parts of the database. Object privileges An object privilege is a right to perform a particular action on […]

Generate script for Database securities : Compile Object on Oracle Databases 10g onward

Database security (Recompiling) Each database product like Oracle has a particular security model and the DBA should be well aware in order to control access to data. This is part of authorization, Authorization is granting permission on various parts of the database. ***note*** You can use just UTLRP for all invalid objects If you are […]

Generate script for Database securities : Role and System Privilege on Oracle Databases 10g onward

Database security Each database product like Oracle has a particular security model and the DBA should be well aware in order to control access to data. This is part of authorization, Authorization is granting permission on various parts of the database. System privileges A system privilege is a right to perform a particular action or […]

Generate script for create user on Oracle Databases 10g onward

Prerequisite You have to create a temporary tablespace for the user You have to create a tablespace for the user You have to prepare a role and profile for the user — CREATE USER WITH DEFAULT TABLE — AND TEMPORARY TABLESPACE — AND PROFILE SELECT ‘CREATE USER ‘||U.USERNAME||’ IDENTIFIED BY VALUES ”’||S.PASSWORD||”’ DEFAULT TABLESPACE ‘||U.DEFAULT_TABLESPACE||’ […]

Generate script for create temporary tablespace on Oracle Databases 10g onward

Many Types of Database files, and sometimes I feel more confused, but you have to be aware of block size and increment, like my command. ***note*** before you’ll use my command. Please read to understand. —– Those commands are separated into 4 types —– 1st —> for temporary tablespace autoextend is NO and temporary tablespace […]

Generate script for drop user cascade for Oracle Databases 10g onward

User Oracle Database doesn’t drop users whose schemas contain objects unless you specify CASCADE. CASCADE Specify CASCADE to drop all objects on the user’s(schemas) before dropping the user. You must specify this clause to drop a user whose schema contains any objects. If the user’s schema contains tables, then Oracle Database drops the tables and […]

error: Content is protected !!