Reputation: 209
What does operation column in plan table do?? I am working on Oracle 10g and I would like to know about the significance of values in that particular column!
Upvotes: 2
Views: 58
Reputation: 262584
The operation
column tells you what kind of operation is being performed here. It can take values like INSERT STATEMENT
, HASH JOIN
, TABLE ACCESS
, or SORT
.
Upvotes: 1
Reputation: 132600
From the same Oracle 10G Performance Tuning Guide I linked to in a previous question:
Name of the internal operation performed in this step. In the first row generated for a statement, the column contains one of the following values:
- DELETE STATEMENT
- INSERT STATEMENT
- SELECT STATEMENT
- UPDATE STATEMENT
See Table 19-3 for more information on values for this column.
I found this by looking in the index under "O" for "Operation".
Upvotes: 2