oracle_sql_processing

This is an old revision of the document!


The SQL processing like any other processing of code. It comes from a human and needs to go back to a human :) The problem is, through how many stops it will pass. Below you can see a basic representation on the possible wait times for any query:

This picture, clearly displays why it isn't ALWAYS A DATABASE FAULT :) Often the database is intermediary point between the User and the data.

SQL Processing is one of the biggest problems with any database because it is the hearth of performance tuning. In that chapter I will try to summarize, how Oracle processes an SQL. Firstly the statement has to be processed and there are several steps which should be executed.

Parsing

  • Open Cursor
  • Syntax Check
  • Semmantic Check
  • Shared Pool check
  • Binding
  • *Optimization
  • *Row source generation

Execute

  • Execution

Fetching

  • Fetch results
  • Close Cursor

*-Optional steps in case of hard parse

Below you can check a brief picture of Cursor Processing:

  • oracle_sql_processing.1565532273.txt.gz
  • Last modified: 2019/10/18 20:04
  • (external edit)