Advertisement Space

PL/SQL Recipes

PL/SQL

Recipes for writing robust PL/SQL code — exception handling, bulk operations, cursors, packages, and common patterns.

Exception Handling Best Practices

Handle errors gracefully with predefined exceptions, custom exceptions, and SQLCODE/SQLERRM.

Learn more →

Bulk Collect and FORALL

Process large datasets efficiently by fetching and modifying rows in bulk instead of one at a time.

Learn more →

Cursors — Explicit vs Implicit

Understand when to use explicit cursors, implicit cursors, and cursor FOR loops.

Learn more →

Autonomous Transactions

Run independent transactions for logging and auditing without affecting the main transaction.

Learn more →

Collections and Records

Work with associative arrays, nested tables, and PL/SQL records for complex data structures.

Learn more →

Pipelined Table Functions

Return result sets from PL/SQL functions that can be queried like tables.

Learn more →