Create index with tablespace : Create Index « Index « Oracle PL / SQL






Create index with tablespace

    


SQL> create table emp (
  2      EmpNo          NUMBER(10) primary key,
  3      Name           VARCHAR2(40),
  4      DeptNo         NUMBER(2),
  5      Salary         NUMBER(7,2),
  6      Birth_Date     DATE,
  7      Soc_Sec_Num    VARCHAR2(9),
  8      State_Code     CHAR(2)
  9  );
SQL>
SQL> create index CITY_ST_ZIP_NDX
  2  on emp(EmpNo, DeptNo, Soc_Sec_Num)
  3  tablespace INDEXES;



SQL>
SQL> drop table emp
  2

   
    
    
    
  








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 unique index and check it in user_ind_columns and user_cons_columns
13.Demonstrate a bitmap join index.
14.CREATE UNIQUE INDEX
15.Create a fully indexed table named myCode
16.Create Non-Unique index
17.indextype is ctxsys.context
18.create unique index with case ... when statement