Database Partitioning

  Home  Data Warehouse  Database Partitioning


“Database partitioning job interview questions and answers guide. The one who provides the best Database partitioning answers with a perfect presentation is the one who wins the interview race. Learn Database Partitioning and get preparation for the job of Database partitioning”



4 Database Partitioning Questions And Answers

1⟩ Explain Partitioning types?

Available partitioning types in Oracle database are as under:

Range partitioning

Hash partitioning

Composite partitioning

List partitioning

Interval partitioning

System partitioning

Reference partitioning

 157 views

2⟩ What are the Advantages of the database partitioning?

Some of the advantages offered:

Partitions can be stored in different tablespaces.

Partitions can be added/ removed while users are working. DBAs can perform maintenance without having to bring down an entire table (import/ export/ load/ etc).

Data can be selected from targeted partitions without having to scan all partitions for rows (partition pruning). The SQL optimizer will bypass partitions that don't contain data pertinent to the query being solved.

 152 views

3⟩ What is database partitioning?

Database partitioning involves dividing logical database into distinct independent units to improve its performance, manageability and availability.

 146 views