Example

The following example creates an index on the empno and ename columns of scott’s emp table, with the indicated storage parameters:

CREATE INDEX emp_ndx ON scott.emp(empno,ename)
   STORAGE (INITIAL 50K NEXT 10K PCTINCREASE 0 MAXEXTENTS 10)
   TABLESPACE users
   PCTFREE 20

Get Oracle Database Administration: The Essential Refe now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.