InterviewSolution
| 1. |
How To Save Space When Inserting Rows Monotonically? |
|
Answer» If the COLUMNS that comprise the CLUSTERED index are monotonically increasing (that is, new row key values are greater than those previously inserted) the following System 11 dbcc tune will not split the page when it’s half way full. Rather it’ll LET the page fill and then allocate another page: If the columns that comprise the clustered index are monotonically increasing (that is, new row key values are greater than those previously inserted) the following System 11 dbcc tune will not split the page when it’s half way full. Rather it’ll let the page fill and then allocate another page: |
|