Category

Oracle

Articles by Furushima specialists on Oracle.

Oracle data block recoveryOracle

Oracle data block recovery

Recovering corrupted data blocks in Oracle Database is an essential technique to preserve data integrity without having to restore the…

Acacio Lima Rocha
Oracle DBMS_SCHEDULER vs DBMS_JOB: a single package to manage, pause, and monitor jobsOracle

Oracle DBMS_SCHEDULER vs DBMS_JOB: a single package to manage, pause, and monitor jobs

Introduction Many Oracle environments run two scheduling mechanisms side by side: DBMS_SCHEDULER (modern) and DBMS_JOB (legacy). Each has its own…

Carlos Furushima
Oracle storage structuresOracle

Oracle storage structures

How does Oracle store data? The Oracle Database storage structure is designed to be highly efficient and flexible, allowing large…

Weverton Amorim
Oracle Database startup/shutdown phasesOracle

Oracle Database startup/shutdown phases

Starting the Oracle database instance Before users can connect to a database instance, a database administrator must start the database…

Weverton Amorim
Views in OracleOracle

Views in Oracle

Views are a very useful resource in relational databases: they let you create logical representations of the data stored in…

Luis Jacoveto
How to use hints in Oracle?Oracle

How to use hints in Oracle?

The super dictionary of Oracle hints When you work with Oracle, an important part of optimizing SQL query performance is…

Matsuo Furushima
How to create an Oracle 19c database in silent modeOracle

How to create an Oracle 19c database in silent mode

Creating a single instance CDB database in silent mode After installing the database management system (DBMS), the next step is…

Weverton Amorim
How to install Oracle Database 19c on Oracle LinuxOracle

How to install Oracle Database 19c on Oracle Linux

Oracle Database 19c on Oracle Linux 7.9 in silent mode To install Oracle Database 19c, the operating system must be…

Weverton Amorim
Understanding the execution plan in Oracle: how to improve your SQL query performance (part 1)Oracle

Understanding the execution plan in Oracle: how to improve your SQL query performance (part 1)

The power of SQL and the performance challenge One of the great advantages of SQL is its declarative nature. That…

Carlos Furushima
[SCRIPT] – showplan.sqlOracle

[SCRIPT] – showplan.sql

How do you know which part of the plan your query is spending the most time on?

Matsuo Furushima