Category: SQL
- SQL
- April 24, 2026
Understanding Top-N Queries in Oracle Database
A Top-N query is used to retrieve the top or bottom N rows from an ordered set. Combining two Top-N…
- SQL
- April 24, 2026
Understanding Different SQL*Loader Flavor In Oracle Database.
INSERT APPEND BEGINDATA You can also specify the data directly inside the control file itself using BEGINDATA keyword. i.e Anything…
- SQL
- April 24, 2026
Understanding DIRECT PATH INSERT & CONVENTIONAL PATH INSERT Using SQL*Loader In Oracle Database
SQL*Loader allows you to load data from an external file into a table in the database. It can parse many…
- 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…