Home » Page 4

Latches and Mutex in Oracle database

Introduction To Latch in Oracle Database Latches are low-level serialization mechanisms used to protect shared data structures in the Oracle SGA. The implementation of latches is operating system-dependent, particularly in regard to whether a process will wait for a latch and for how long. A latch is a type of lock that can be very …

Latches and Mutex in Oracle database Read More »

How to use Decode in Oracle

Introduction to Oracle sql decode In this section, we will discuss about Oracle decode processing which is a very important aspect of Oracle sql statement Oracle decode is the method in the Oracle database to transform data values from one value to another which is better to understand. Oracle Decode transforms data values at retrieval time. It …

How to use Decode in Oracle Read More »

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