top of page

Oracle Table and Tables Cluster

In this article we will creating a table cluster inside Oracle. We will also be creating couple of tables inside the cluster table.


Create Cluster Table

CREATE CLUSTER employees_departments_cluster
(department_id NUMBER(2));


Create Index on Cluster Table


Without create an index on cluster table, you cannot proceed. This is an Index Cluster

CREATE INDEX idx_emp_dept_cluster ON CLUSTER employees_departments_cluster;


Create Tables Inside Cluster


Create tables inside cluster based on cluster key column

CREATE TABLE EMP_CLUST 
CLUSTER employees_departments_cluster (deptno)
as select * from emp;
CREATE TABLE DEPT_CLUST 
CLUSTER employees_departments_cluster (deptno)
as select * from dept;


Drop Table Inside Cluster

DROP TABLE EMP_CLUST;
DROP TABLE DEPT_CLUST;


Drop Cluster

DROP CLUSTER employees_departments_cluster

Related Posts

Heading 2

Add paragraph text. Click “Edit Text” to customize this theme across your site. You can update and reuse text themes.

bottom of page