SQL Server 2005 36

Index::Defrag Script v4.0

SQL SERVER 2008 SP 2 이상 출처: http://sqlfool.com/category/sql-scripts/ 인덱스 조각화를 얻고 실행하는 sp 이다. SQLl 2005의 sp2 이상에서 가능하다. 1. 테이블 생성 /* Scroll down to the see notes, disclaimers, and licensing information */ DECLARE @indexDefragLog_rename VARCHAR(128) , @indexDefragExclusion_rename VARCHAR(128) , @indexDefragStatus_rename VARCHAR(128); SELECT @indexDefragLog_rename = 'dba_indexDefragLog_obsolete_' +..

dm_os_performance_counters , Server/Process Information

SQL SERVER 2005 이상 출처: http://www.sqlservercentral.com/scripts/Monitoring/68069/ This script displays data from the dynamic management view called: sys.dm_os_performance and presents it in a report. I recommend that you look closer to this view for all your statistical needs. If you find other information that you want to include, just modify this script to reflect the additional information. Ho..