Quick Search:
 
 Oracle PL/SQL: INDEXES: Reverse Key Indexes Jump to:  
Category: >> Oracle PL/SQL >> INDEXES: Reverse Key Indexes  

<< lastnext >>

Snippet Name: INDEXES: Reverse Key Indexes

Description: Creating a reverse key index, compared to a standard index, reverses the bytes of each column indexed (except the rowid) while keeping the column order. Such an arrangement can help avoid performance degradation with Oracle9i Real Application Clusters where modifications to the index are concentrated on a small set of leaf blocks. By reversing the keys of the index, the insertions become distributed across all leaf keys in the index.

Also see:
» INDEXES: View table indexes
» INDEXES: Analyze Index
» INDEXES: Block Dump
» INDEXES: Rebuild Reverse
» INDEXES:
» INDEXES: ENABLE (function-based index)
» INDEXES: DISABLE (function-based index)
» INDEXES: Alter Index Parallel
» INDEXES: Alter Index Deallocate Unused
» INDEXES: Alter Index Allocate Extent
» INDEXES: Virtual / NoSegment
» INDEXES: Bitmap Join Indexes
» INDEXES: Bitmap Indexes
» INDEXES: Unique indexes
» INDEXES: Parallel Index
» INDEXES: Compute Statistics
» INDEXES: SORT and NOSORT
» INDEXES: Function-Based Index
» INDEXES: DROP index
» INDEXES: Alter index
» INDEXES: Single Column Non-unique
» INDEXES: Index Usage Notes
» Compressed Indexes
» Create INDEX

Comment: (none)

Language: PL/SQL
Highlight Mode: PLSQL
Last Modified: March 10th, 2009

CREATE INDEX <index_name>
ON <table_name> (<column_name>)
PCTFREE <integer>
TABLESPACE <tablespace_name>
REVERSE;
 
-- for example: 
 
CREATE INDEX rk_idx_sales_region
ON sales_table(sales_region)
PCTFREE 0
TABLESPACE sales_us
REVERSE;
 
SELECT index_name, index_type
FROM user_indexes;
 
 
-- The REVERSE keyword provides a simple mechanism for creating 
-- a reverse key index. You can specify the keyword REVERSE 
-- along with the optional index specifications in a CREATE INDEX 
-- statement:
 
CREATE INDEX test_indexi ON test_table (a,b,c) REVERSE; 
 
-- You can specify the keyword NOREVERSE to REBUILD a reverse-key 
-- index into one that is not reverse keyed:
 
ALTER INDEX test_index REBUILD NOREVERSE; 
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org