InterviewSolution
| 1. |
If You Have An Example Table, What Is The Best Way To Get Sizing Data For The Production Table Implementation? |
|
Answer» The best way is to analyze the table and then USE the data PROVIDED in the DBA_TABLES VIEW to get the average row LENGTH and other pertinent data for the calculation. The quick and dirty way is to look at the number of blocks the table is actually using and ratio the number of rows in the table to its number of blocks against the number of EXPECTED rows. The best way is to analyze the table and then use the data provided in the DBA_TABLES view to get the average row length and other pertinent data for the calculation. The quick and dirty way is to look at the number of blocks the table is actually using and ratio the number of rows in the table to its number of blocks against the number of expected rows. |
|