indextype is ctxsys.context : Create Index « Index « Oracle PL / SQL






indextype is ctxsys.context

    
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.To create an index on the LastName column of the Employee table
2.Created an index based on the uppercase evaluation of the employe's first name field
3.Create two indexes for one single table
4.Create an index reverse
5.Function-based Indexes
6.simple index organized table
7.Create an index, and add primary key to use that index
8.Create index along with the column definition
9.Create index for combined columns
10.Create index for upper case last name
11.Create index on cluster
12.Create index with tablespace
13.Create unique index and check it in user_ind_columns and user_cons_columns
14.Demonstrate a bitmap join index.
15.CREATE UNIQUE INDEX
16.Create a fully indexed table named myCode
17.Create Non-Unique index
18.create unique index with case ... when statement