Quick Search:
 
 Oracle PL/SQL: Create INDEX Jump to:  
Category: >> Oracle PL/SQL >> Create INDEX  

<< lastnext >>

Snippet Name: Create INDEX

Description: Samples of index creation.

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: Reverse Key Indexes
» 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

Comment: (none)

Language:
Highlight Mode: PLSQL
Last Modified: March 01st, 2009

CREATE UNIQUE INDEX rb_call_activities_u1
ON rb_call_activities(tape_id,record_id)
storage (initial 50m next 50m pctincrease 0)
parallel (degree 4)
tablespace rb_index02
/
CREATE INDEX rb_call_activities_n2
ON rb_call_activities(tape_id,pre_status)
storage (initial 50m next 50m pctincrease 0)
parallel (degree 4)
tablespace rb_index02
/
CREATE INDEX rb_call_activities_n3
ON rb_call_activities(account_id)
storage (initial 50m next 50m pctincrease 0)
parallel (degree 4)
tablespace rb_index02
/
CREATE INDEX rb_call_activities_n4
ON rb_call_activities(billing_batch_id,account_id,agreement_id)
storage (initial 50m next 50m pctincrease 0)
parallel (degree 4)
tablespace rb_index02
/
COMMIT;


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