autotrace ctxsys.context index : autotrace « SQL Plus « Oracle PL / SQL






autotrace ctxsys.context index

  
SQL>
SQL>
SQL> create table t ( x clob );

Table created.

SQL>
SQL> set autotrace traceonly explain
SQL> select * from t;

Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873

----------------------------------
| Id  | Operation         | Name |
----------------------------------
|   0 | SELECT STATEMENT  |      |
|   1 |  TABLE ACCESS FULL| T    |
----------------------------------

Note
-----
   - rule based optimizer used (consider using cbo)

SQL>
SQL> create index t_idx on t(x) indextype is ctxsys.context;

Index created.

SQL> select * from t;

Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873

----------------------------------------------------------
| Id  | Operation         | Name | Rows  | Bytes | Cost  |
----------------------------------------------------------
|   0 | SELECT STATEMENT  |      |    82 |  8200 |     1 |
|   1 |  TABLE ACCESS FULL| T    |    82 |  8200 |     1 |
----------------------------------------------------------

Note
-----
   - cpu costing is off (consider enabling it)

SQL>
SQL> set autotrace off
SQL>
SQL> drop table t;

Table dropped.

   
    
  








Related examples in the same category

1.autotrace command
2.Autotrace on and off
3.Autotrace lower text function
4.Autotrace running total
5.Autotrace a query on a huge table
6.Autotrace a large table
7.Autotrace a query with group clause
8.Execution Plan
9.autotrace a nested query
10.set autotrace on explain for every single statement
11.set autotrace traceonly explain for bitmap index
12.set autotrace traceonly explain, and condition
13.set autotrace traceonly statistics
14.set autotrace traceonly statistics for 'select * from tableName'
15.set autotrace traceonly
16.AUTOTRACE exists (subquery)
17.AUTOTRACE table joining
18.AUTOTRACE table joining and aggregate function
19.autotrace ansi full outer join
20.autotrace count(*)
21.autotrace merge command
22.autotrace table with/without an index