Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: Density of indexes -> HELP !

    I actually run the RecordAllIndexStats before AND after the RebuildFragmentedIndexes procedure. This gives me a before/after picture with the following query:

    SELECT RTRIM(a.DatabaseName + '.' + a.TableOwner +...

  • RE: Density of indexes -> HELP !

    The SAP database that I'm working with is currently only 16GB but anticipated to grow beyond 500GB when put into production. So, I use the density stats in my...

  • RE: Density of indexes -> HELP !

    I developed the following stored procedure to archive density information about clustered indexes for every user database:

    CREATE PROC RecordAllIndexStats

    AS

    SET NOCOUNT ON

    SET ANSI_WARNINGS OFF

    DECLARE @tablename ...

Viewing 3 posts - 1 through 3 (of 3 total)