- Draw these two above mentioned B+ tree indices.
- Identify the nodes (in your index trees and data pages)
that may be loaded into memory when the database executes
the following query efficiently
by using the appropriate index:
select *
from Employees
where Last_Name = 'Moss';
- Identify the nodes (in your index trees and data pages) that may be
loaded into memory when the database executes the following query
efficiently by using the appropriate index:
select *
from Employees
where Emp_ID = '1006';
- Describe what would happen (in the data pages and indices)
if the following SQL statement is executed:
insert into Employees (Emp_ID, Last_Name)
values ('1029', 'O\'Brian');