Parsing of sql statements in database

Page 1

Parsing Of SQL Statements In Database Parsing, optimization, row source creation, and execution of an SQL declaration are the three process in SQL processing. Based upon on the declaration, the databases may bypass some of these levels. SQL Parsing The first level of SQL handling is parsing. This level includes splitting the items of an SQL database declaration into a data framework that other procedures can process. The databases parses an argument when directed by the program, which means that only the application, and not the databases itself, can reduce the number of parses.

http://crbtech.in/Student-Reviews/Oracle-Reviews


When a program issues an SQL declaration, the program makes a parse contact to the databases to prepare the declaration for performance. The parse contact reveals or makes a pointer, which is a handle for the session-specific personal SQL area that keeps a parsed SQL declaration and other handling information. The pointer and SQL place are in the program global area (PGA). Syntax Check Oracle Database must examine each SQL declaration for syntactic validity. A declaration that smashes a rule for well-formed SQL format is not able to examine.

http://crbtech.in/Student-Reviews/Oracle-Reviews


SQL> SELECT * From employees; SELECT * From employees * ERROR at line 1: ORA-00923: FROM keyword not found where expected Semantic Check The semantics of an argument are its significance. Thus, a semantic examine decides whether an argument is significant, for example, whether the things and content in the declaration are available. A syntactically appropriate declaration cannot succeed a semantic examine, as proven in the following example of a question of an unavailable table: SQL> SELECT * FROM

http://crbtech.in/Student-Reviews/Oracle-Reviews


unavailable_table; SELECT * FROM unavailable_table * ERROR at line 1: ORA-00942: table or view does not exist Shared Pool Check During the parse, the data source works a shared pool examine to find out whether it can miss resource-intensive steps of declaration handling. To this end, the data base uses a hashing criteria to produce a hash value for every SQL declaration. The declaration hash value is the SQL ID proven in V$SQL.SQL_ID. At the top are three containers set on top of one another, each box more compact compared to the one behind it. The tiniest box reveals hash values and is labeled shared SQL area. The http://crbtech.in/Student-Reviews/Oracle-Reviews


second box is labeled shared pool. The external box is marked SGA. Below this box is another box marked PGA. Inside the PGA box is a box marked as Private SQL Area, which contains a hash value. A double-ended pointer joins the top and lower containers and is marked “Comparison of hash principles.” To the right of the PGA box is a person symbol marked User process. The symbols are linked by a double-sided pointer. Above the User process symbol is an “Update ….” declaration. A pointer brings from the user process below to the Server Procedure symbol below. SQL Optimization During the optimization level, Oracle Data base must execute hard parse at least once for every unique DML declaration and works the optimization during this parse. The database never maximizes DDL unless it has a DML element such as a subquery that needs it. Question Optimizer Ideas describes the optimization process in depth. SQL Row Resource Generation The row source creator is software that gets the http://crbtech.in/Student-Reviews/Oracle-Reviews


maximum performance strategy from the optimizer and generates a repetitive performance strategy that is useful by the rest of the database. The repetitive strategy is a binary program that, when implemented by the SQL motor, generates the result set. SQL Execution During performance, the SQL motor carries out each row source in the shrub created by the row source creator. This method is the only compulsory help DML handling. It is an execution tree, also known as a parse tree, that reveals the circulation of row resources from a stride to another in the program in the diagram. Normally, the hierarchy of the steps in performance is the opposite of the purchase in the program, so you read the program from the bottom up. Each step in this performance strategy has an ID number. This article would database reviews.

be

helpful

for student

http://crbtech.in/Student-Reviews/Oracle-Reviews


http://crbtech.in/Student-Reviews/Oracle-Reviews


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.