When a relation in a database is clustered, then the No of Disk Accesses required to fetch the table from Disk to Main memory is proportional to the number of blocks B that the table resides in.
On the other hand, if the table is stored unclustered, then as many as T disk acccesses may be required for the same, where T is the number of Tuples in the Relation.
Now I want to compare the performance of Join Operation when the storage is
a) clustered and
b) non clustered.
How do I create my record files to achieve this effect ?
More specifically :
How to create file(s) containing tuples such that when I read it back into the main memory, the amount of time is proportional to :
a) the number of Blocks it occupies;
b) the number of records (tuples) it contains.