SQLancer
← All Database Flashcards Library / Flashcards / Oracle Database
🔴 Oracle Database Knowledge Base

Oracle Database Study Flashcards

Enterprise object-relational database standard deployed across mission-critical corporate environments. Click any card to flip and test your knowledge.

Card 1 of 10 Architecture

What is SGA in Oracle Architecture?

Click Card to Reveal Answer ↷
Answer Oracle Database

System Global Area (SGA) is the shared memory region containing data buffer cache, shared pool, and redo log buffer.

Click to Flip Back ↶
Card 2 of 10 Memory

What is PGA in Oracle Database?

Click Card to Reveal Answer ↷
Answer Oracle Database

Program Global Area (PGA) is private memory allocated for each server process executing SQL operations.

Click to Flip Back ↶
Card 3 of 10 Pagination

How does ROWNUM differ from FETCH FIRST in Oracle?

Click Card to Reveal Answer ↷
Answer Oracle Database

ROWNUM assigns row numbers during fetch, whereas FETCH FIRST N ROWS ONLY is standard ANSI pagination syntax.

Click to Flip Back ↶
Card 4 of 10 Functions

What is NVL() in Oracle SQL?

Click Card to Reveal Answer ↷
Answer Oracle Database

NVL(expr1, expr2) replaces NULL with expr2 if expr1 evaluates to NULL.

Click to Flip Back ↶
Card 5 of 10 Procedural SQL

What is PL/SQL?

Click Card to Reveal Answer ↷
Answer Oracle Database

Procedural Language/SQL (PL/SQL) is Oracle's extension providing procedural constructs like loops, variables, and exceptions.

Click to Flip Back ↶
Card 6 of 10 Views

What is a Materialized View in Oracle?

Click Card to Reveal Answer ↷
Answer Oracle Database

A database object storing pre-computed query results that can be refreshed on demand or commit.

Click to Flip Back ↶
Card 7 of 10 Recovery

What is Oracle Flashback Query?

Click Card to Reveal Answer ↷
Answer Oracle Database

Enables querying table data state as it existed at a past timestamp or SCN number.

Click to Flip Back ↶
Card 8 of 10 Storage

What is a Table Space in Oracle?

Click Card to Reveal Answer ↷
Answer Oracle Database

Logical storage unit grouping physical data files (.dbf) containing tables and indexes.

Click to Flip Back ↶
Card 9 of 10 Hierarchical SQL

What is CONNECT BY used for?

Click Card to Reveal Answer ↷
Answer Oracle Database

Hierarchical query clause used to traverse parent-child tree relationships in Oracle SQL.

Click to Flip Back ↶
Card 10 of 10 Sequences

What is a Sequence in Oracle?

Click Card to Reveal Answer ↷
Answer Oracle Database

Database object that generates sequential unique integers (using NEXTVAL and CURRVAL).

Click to Flip Back ↶

Need practical SQL queries for Oracle Database?

Explore our ready-to-use copy-paste query recipes in the Cookbook.

View Oracle Database Cookbook →