Materialized Views and Advanced Topics in Query Optimization

Question 1
Marks : +2 | -2
Pass Ratio : 100%
Reducing the complexity of complex queries by similarly handling sub-queries is known as ______
Complex query handling
Multi query optimization
Complex query optimization
Parametric query optimization
Explanation:
Reducing the complexity of complex queries by similarly handling sub-queries is known as multi query optimization.
Question 2
Marks : +2 | -2
Pass Ratio : 100%
The sequence of queries that reflect the typical load on the system are known as ________
Efficacies
Workload
Selection
Balancers
Explanation:
The sequence of queries that reflect the typical workload on the system are known as workload.
Question 3
Marks : +2 | -2
Pass Ratio : 100%
What are differentials in view management?
The differences between relations
The changes made to a relation
The changes made to an expression
More than one of the mentioned
Explanation:
The changes made to a relation or and expression are known as differentials in materialized view management.
Question 4
Marks : +2 | -2
Pass Ratio : 100%
If a query is optimized without providing specific values for its parameters the technique is called __________
Complex query handling
Multi query optimization
Complex query optimization
Parametric query optimization
Explanation:
If a query is optimized without providing specific values for its parameters the technique is called parametric query optimization.
Question 5
Marks : +2 | -2
Pass Ratio : 100%
The task of keeping a view up to date with the underlying data is called as ________
View handling
View maintenance
View management
None of the mentioned
Explanation:
The task of keeping a view up to date with the underlying data is called as view maintenance.
Question 6
Marks : +2 | -2
Pass Ratio : 100%
Which of the following is a multi-query optimization technique
Shared scan optimization
Parametric query optimization
Index optimization
All of the mentioned
Explanation:
Shared scan optimization is a multi query optimization technique.
Question 7
Marks : +2 | -2
Pass Ratio : 100%
Which of the following is a type of materialized view management?
Incremental view management
Immediate view management
Deferred view management
All of the mentioned
Explanation:
Incremental, immediate and deferred are all different types of materialized view management techniques. Most database systems perform immediate view management.
Question 8
Marks : +2 | -2
Pass Ratio : 100%
What is incremental materialized view maintenance?
Modifying all the parts of the view
Modifying only the affected parts of the view
Not modifying the view
None of the mentioned
Explanation:
Modifying only the affected parts of the materialized view is called as incremental view maintenance. It is much more efficient than ordinary view management.
Question 9
Marks : +2 | -2
Pass Ratio : 100%
A view whose contents are computed and stored is called as _______
Storage view
Backup view
Materialized view
Advanced view
Explanation:
A view whose contents are computed and stored is called as a materialized view. I does not only store the query defining the view.
Question 10
Marks : +2 | -2
Pass Ratio : 100%
The problem of an update affecting the execution of a query associated with the update is known as the _________
Updation problem
Incremental problem
Halloween problem
Optimization problem
Explanation:
The problem of an update affecting the execution of a query associated with the update is known as the Halloween problem. This was because it was first recognized on the Halloween day at IBM.