Creates an index on the new added column : Create Index « Index « Oracle PL/SQL Tutorial






SQL>
SQL> CREATE TABLE employee
  2  (employee_id         NUMBER(7),
  3   last_name           VARCHAR2(25),
  4   first_name          VARCHAR2(25),
  5   userid              VARCHAR2(8),
  6   start_date          DATE,
  7   comments            VARCHAR2(255),
  8   manager_id          NUMBER(7),
  9   title               VARCHAR2(25),
 10   department_id       NUMBER(7),
 11   salary              NUMBER(11, 2),
 12   commission_pct      NUMBER(4, 2)
 13  );

Table created.

SQL>
SQL> INSERT INTO employee VALUES (1, 'V', 'Ben', 'cv',to_date('03-MAR-90 8:30', 'dd-mon-yy hh24:mi'),NULL, NULL, 'PRESIDENT', 50, 2500, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (2, 'N', 'Haidy', 'ln', '08-MAR-90', NULL,1, 'VP, OPERATIONS', 41, 1450, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (3, 'N', 'Molly', 'mn', '17-JUN-91',NULL, 1, 'VP, SALES', 31, 1400, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (4, 'S', 'Mark', 'mq', '07-APR-90',NULL, 1, 'VP, FINANCE', 10, 1450, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (5, 'R', 'AUDRY', 'ar', '04-MAR-90',NULL, 1, 'VP, ADMINISTRATION', 50, 1550, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (6, 'U', 'MOLLY', 'mu', '18-JAN-91',NULL, 2, 'WAREHOUSE MANAGER', 41, 1200, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (7, 'M', 'ROBERTA', 'rm', '14-MAY-90',NULL, 2, 'WAREHOUSE MANAGER', 41, 1250, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (8, 'B', 'BEN', 'ry', '07-APR-90', NULL, 2,'WAREHOUSE MANAGER', 41, 1100, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (9, 'C', 'Jane', 'ac', '09-FEB-92',NULL, 2, 'WAREHOUSE MANAGER', 41, 1300, NULL);

1 row created.

SQL> INSERT INTO employee VALUES (10, 'H', 'Mart', 'mh', '27-FEB-91', NULL, 2,'WAREHOUSE MANAGER', 41, 1307, NULL);

1 row created.

SQL>
SQL>
SQL> -- Adds the new column
SQL> ALTER TABLE employee ADD employee_dup_id VARCHAR2(7);

Table altered.

SQL>
SQL> -- Updates the new column with the value of the employee_id column
SQL> UPDATE employee
  2  SET    employee_dup_id = employee_id;

10 rows updated.

SQL>
SQL>
SQL> -- Creates an index on the new column
SQL> CREATE UNIQUE INDEX employee_test_idx2
  2     ON employee(employee_dup_id);

Index created.

SQL>
SQL> drop table employee;

Table dropped.

SQL>








9.1.Create Index
9.1.1.Creating an Index
9.1.2.Enforce uniqueness of values in a column using a unique index
9.1.3.Create combined-column index
9.1.4.Create a composite index on multiple columns
9.1.5.Creating a Function-Based Index
9.1.6.Create index based on cluster
9.1.7.Creates an index on the new added column
9.1.8.Create a fully indexed table named myCode
9.1.9.indextype is ctxsys.context
9.1.10.Create index for upper case last name
9.1.11.Create index along with the column definition
9.1.12.Create index for combined columns
9.1.13.Create unique index and check it in user_ind_columns and user_cons_columns
9.1.14.Demonstrate a bitmap join index.
9.1.15.create unique index with case ... when statement
9.1.16.Create Non-Unique index
9.1.17.autotrace ctxsys.context index
9.1.18.Create index with tablespace