Kellyn Pot’Vin-Gorman presented a comparison of indexing in Oracle and SQL Server databases. They loaded test data into indexes in each platform, altered the fill factor/pctfree settings, and measured performance of data loads, updates, deletes and index storage. SQL Server exhibited page splits when indexes became fragmented, while Oracle showed leaf block splits. Rebuilding indexes with high pctfree in Oracle had significantly worse performance than rebuilding with lower fillfactor in SQL Server. Overall, Oracle generally outperformed SQL Server for indexing and was less prone to fragmentation issues.