Category: SQL
- SQL
- March 28, 2026
Understanding Oracle Hints For PARALLEL Operations
The Oracle PARALLEL hint instructs the optimizer to use a specified number of concurrent servers (degree of parallelism, or DOP)…
- SQL
- March 28, 2026
Understanding Oracle Access Methods
Oracle employs several methods, known as access paths, to retrieve data for a SQL statement. Optimizer hints are comments within…
- SQL
- December 25, 2025
Understanding INVISIBLE Column In Oracle Database
As of Oracle 12.1, you can now define invisible columns in relational tables. An invisible column is a user-defined hidden…
- SQL
- April 5, 2025
Understanding CASE Statement & CASE Expression In Oracle Database.
• Simple CASE statement evaluates a expression and executes the statement or sequence of statements associated with the first condition…
- SQL
- January 30, 2025
Understanding SELECT FOR UPDATE In Oracle Database
The SELECT FOR UPDATE statement is a special variation of the normal SELECT statement, which proactively issues row locks on…
- SQL
- May 15, 2024
Understanding Function Based Index In Oracle Database
Traditionally, performing a function on an indexed column in the where clause of a query guaranteed an index would not…
- SQL
- May 15, 2024
Understanding Reverse Key Index In Oracle Database
Reverse B-TREE key indexes reverses the bytes of the key value in the index to reduce Index block contention. Index…
- SQL
- May 4, 2024
Understanding Bitmap Index in Oracle database
BITMAP index are different from B-TREE index in the manner they store data. • B-TREE index stores data in tree…
- SQL
- April 14, 2024
Understanding Materialized View ON PREBUILT TABLE
The “ON PREBUILT TABLE” clause is used when you have already created a replicated table using “CTAS” and now want…
- SQL
- April 14, 2024
Understanding DML Statements on a SQL Join View
A join view is a view based on a join. Special considerations apply when you issue a DML(INSERT, UPDATE, or…