Create index based on cluster : Create Index « Index « Oracle PL/SQL Tutorial

Oracle PL/SQL Tutorial
1. Introduction
2. Query Select
3. Set
4. Insert Update Delete
5. Sequences
6. Table
7. Table Joins
8. View
9. Index
10. SQL Data Types
11. Character String Functions
12. Aggregate Functions
13. Date Timestamp Functions
14. Numerical Math Functions
15. Conversion Functions
16. Analytical Functions
17. Miscellaneous Functions
18. Regular Expressions Functions
19. Statistical Functions
20. Linear Regression Functions
21. PL SQL Data Types
22. PL SQL Statements
23. PL SQL Operators
24. PL SQL Programming
25. Cursor
26. Collections
27. Function Procedure Packages
28. Trigger
29. SQL PLUS Session Environment
30. System Tables Data Dictionary
31. System Packages
32. Object Oriented
33. XML
34. Large Objects
35. Transaction
36. User Privilege
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL/SQL Tutorial » Index » Create Index 
9. 1. 6. Create index based on cluster
SQL>
SQL> create cluster emp_dept_cluster deptno number(2) ) size 1024
  2  /


SQL> create index emp_dept_cluster_idx on cluster emp_dept_cluster
  2  /

Index created.

SQL>
SQL> create table dept
  2  deptno number(2primary key,
  3    dname  varchar2(14),
  4    loc    varchar2(13)
  5  )
  6  cluster emp_dept_cluster(deptno)
  7  /

Table created.

SQL>
SQL> create table emp
  2  empno number primary key,
  3    ename varchar2(10),
  4    job   varchar2(9),
  5    mgr   number,
  6    hiredate date,
  7    sal   number,
  8    comm  number,
  9    deptno number(2)
 10  )
 11  cluster emp_dept_cluster(deptno)
 12  /

Table created.

SQL>
SQL> begin
  2      for x in select from dept )
  3      loop
  4          insert into dept values x.deptno, x.dname, x.loc );
  5          insert into emp select from emp where deptno = x.deptno;
  6      end loop;
  7  end;
  8  /

PL/SQL procedure successfully completed.

SQL>
SQL> drop cluster emp_dept_cluster;
drop cluster emp_dept_cluster
*
ERROR at line 1:
ORA-00951: cluster not empty


SQL> drop table emp;

Table dropped.

SQL> drop table dept;

Table dropped.

SQL> drop index emp_dept_cluster_idx;

Index dropped.

SQL>
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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.