Home

Active Dataguard in Oracle

What is Active Dataguard in Oracle Operations  which are Allowed On a Read-Only Database(Active Dataguard in Oracle) (1)Issue SELECT statements, including queries that require multiple sorts that leverage TEMP segments(2) Use ALTER SESSION and ALTER SYSTEM statements, Use SET ROLE(3)Call stored procedures(4) Use database links (dblinks) to write to remote databases(5) Use stored procedures to …

Active Dataguard in Oracle Read More »

Query to find object dependencies in oracle

Object dependency is important to understand in Oracle. It basically tells the parent-child relationship between the objects. Let’s understand with an example. We create one table CREATE TABLE DEPT_MASTER ( dept_nr NUMBER UNIQUE, dept_name varchar2(100) NOT NULL, dept_status NUMBER(1,0) NOT NULL, created_at date ); Right now this table is alone and it is not dependent …

Query to find object dependencies in oracle Read More »

Scroll to Top