Home  >  Blog  >   SQL Server

SQL Server Cluster

Rating: 4
  
 
3152

Introduction

  • Cluster is a database object which contains groups of tables together and also shares same data block.
  • In all databases cluster database object is used to improves performance of the Joins that’s why cluster database object is created by database Admisnistrator only.
  • Cluster tables must have a ccommon column name, this common column is also called as cluster key.
Are you interested in taking up for SQL Server Certification Training? Enroll for Free Demo..!
  • Generally, clusters is created at time of table creation.
  • In all databases whenever we are submitting inner Join or outer Join then database servers internally checks from clause tables are available in cluster or not? If those tables are available on cluster then Database servers very fastly retrieve data from the cluster table.

Creating Clusters in Oracle

Step 1:- Creating a cluster
Step 2:- Create an index on cluster.
Step 3:- Create cluster table.

1.  Creating a cluster

Create a cluster based on a common column name, this common column name is also called as key.

Syntax –

Create cluster clustername (common column name data type (size))

 MindMajix YouTube Channel

2.  Create an index on cluster:-

Syntax – 

Create index indexname on cluster clustername;

Frequently Asked SQL Server Interview Questions

3. Create Cluster Table

Syntax –

Create table tablename (common colname datatype (size), col1 datatype (size),…..)
Cluster clustername (common col name);
SQL > create cluster emp_dept (deptno number (10));
SQL > create index abc on cluster emp_dept;
SQL > create table emp1 (empro number (10), ename varchar 2 (10) sal number (10), deptno number (10)), cluster emp_dept (deptno); 
SQL > create table dept1 (deptno number (10), dname varchar 2(10), loc varchar2 (10)) cluster emp_dept (deptno);
SQL > desc emp1;
SQL > desc dept1:

Note:-

  • In oracle cluster tables having same row id.
  • we cannot drop cluster if cluster having tables, to overcome this problem oracle 8.0 introduced including tables clause along with drop cluster clustername which is used to drop cluster with tables.

Syntax – 

Drop cluster clustername including tables;

Ex:- SQL > drop cluster emp_dept:

Error: cluster not empty

SQL > drop cluster emp_dept including tables;

O/P:- Cluster dropped.

In oracle all information of cluster stored under user_clusters data dictionary

List of Related Microsoft Certification Courses:

 SSRS Power BI
 SSAS SQL Server
 SCCM SQL Server DBA
 SharePoint BizTalk Server
 Team Foundation Server BizTalk Server Administrator

 

Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

Course Schedule
NameDates
SQL Server TrainingApr 27 to May 12View Details
SQL Server TrainingApr 30 to May 15View Details
SQL Server TrainingMay 04 to May 19View Details
SQL Server TrainingMay 07 to May 22View Details
Last updated: 04 Apr 2023
About Author

Arogyalokesh is a Technical Content Writer and manages content creation on various IT platforms at Mindmajix. He is dedicated to creating useful and engaging content on Salesforce, Blockchain, Docker, SQL Server, Tangle, Jira, and few other technologies. Get in touch with him on LinkedIn and Twitter.

read more