create proc insert_indexstats (@dbid smallint=NULL, @objid int=NULL, @indid int=NULL, @partitionid int=NULL) as -- -- This stored procedure is provided "AS IS" with no warranties, and confers no rights. -- Use of included script samples are subject to the terms specified at http://www.microsoft.com/info/cpyright.htm -- This stored procedure stores a snapshot of sys.dm_db_index_operational_stats into the table indexstas -- for later analysis by the stored procedure get_indexstats. Please note that the indexstats table has an additional -- column to store the timestamp when the snapshot is taken -- -- T. Davidson -- snapshot sys.dm_db_index_operational_stats -- declare @now datetime select @now = getdate() insert into indexstats (database_id ,object_id ,index_id ,partition_number ,leaf_insert_count ,leaf_delete_count ,leaf_update_count ,leaf_ghost_count ,nonleaf_insert_count ,nonleaf_delete_count ,nonleaf_update_count ,leaf_allocation_count ,nonleaf_allocation_count ,leaf_page_merge_count ,nonleaf_page_merge_count ,range_scan_count ,singleton_lookup_count ,forwarded_fetch_count ,lob_fetch_in_pages ,lob_fetch_in_bytes ,lob_orphan_create_count ,lob_orphan_insert_count ,row_overflow_fetch_in_pages ,row_overflow_fetch_in_bytes ,column_value_push_off_row_count ,column_value_pull_in_row_count ,row_lock_count ,row_lock_wait_count ,row_lock_wait_in_ms ,page_lock_count ,page_lock_wait_count ,page_lock_wait_in_ms ,index_lock_promotion_attempt_count ,index_lock_promotion_count ,page_latch_wait_count ,page_latch_wait_in_ms ,page_io_latch_wait_count ,page_io_latch_wait_in_ms, now) select database_id ,object_id ,index_id ,partition_number ,leaf_insert_count ,leaf_delete_count ,leaf_update_count ,leaf_ghost_count ,nonleaf_insert_count ,nonleaf_delete_count ,nonleaf_update_count ,leaf_allocation_count ,nonleaf_allocation_count ,leaf_page_merge_count ,nonleaf_page_merge_count ,range_scan_count ,singleton_lookup_count ,forwarded_fetch_count ,lob_fetch_in_pages ,lob_fetch_in_bytes ,lob_orphan_create_count ,lob_orphan_insert_count ,row_overflow_fetch_in_pages ,row_overflow_fetch_in_bytes ,column_value_push_off_row_count ,column_value_pull_in_row_count ,row_lock_count ,row_lock_wait_count ,row_lock_wait_in_ms ,page_lock_count ,page_lock_wait_count ,page_lock_wait_in_ms ,index_lock_promotion_attempt_count ,index_lock_promotion_count ,page_latch_wait_count ,page_latch_wait_in_ms ,page_io_latch_wait_count ,page_io_latch_wait_in_ms ,@now from sys.dm_db_index_operational_stats(@dbid,@objid,@indid,@partitionid) go
|