What is clusters?

          

What is clusters?

<<Previous  Next>>

Oracle - What is clusters?  - Feb 23, 2010 at 11:00 PM by Rajmeet Ghai

What is clusters?

Clusters in Oracle contain data of multiple tables that have the same one or more columns. All the rows from all the tables that share the same cluster key are stored together.

Example:
Create a cluster name employee with size 512 bytes
CREATE CLUSTER employee
          (department NUMBER(4))
SIZE 512
STORAGE (initial 100K next 50K);
Create a cluster key:
CREATE INDEX id_employee ON CLUSTER employee;
After this tables can be added to the index.

Oracle - What is clusters?  - April 10, 2009 at 11:00 AM

What is clusters?   

Clusters group together tables that share common columns. These tables are often used together.

Also read
Oracle Triggers

What is trigger in oracle?, What are the types of triggers?, How the triggers are attached to the table?, What are triggering attributes?..............

Oracle transaction

The parser scans the statement and breaks it into logical units such as keywords, identifiers and operators, A query or a sequence tree is built using the units above. This is done to transform the source data into the format required by the result set.............

Oracle system privilege

A system privilege is the right to perform an action on any schema objects of a particular type..............

<<Previous  Next>>



Write your comment - Share Knowledge and Experience


 

 
Interview questions
Latest MCQs
» General awareness - Banking » ASP.NET » PL/SQL » Mechanical Engineering
» IAS Prelims GS » Java » Programming Language » Electrical Engineering
» English » C++ » Software Engineering » Electronic Engineering
» Quantitative Aptitude » Oracle » English » Finance
Home | About us | Sitemap | Contact us | We are hiring