Browse by Tags

SQL Server: Creating BlackBox kind of trace with TSQL
Published 28 May 8 6:59 AM | SSQA.net
Here is the kind of scripts defined within TEchnet articles about running black-box kind of traces against your SQL Server instance, then also you can take advantage of the blackbox trace if you are facing intermittent problems, you want to make sure...
TSQL to create a TraceCollector with a default collection set
Published 24 September 7 5:45 AM | SSQA.net
use msdb declare @schedule_uid uniqueidentifier select @schedule_uid=(select schedule_uid from msdb..sysschedules where name=N'CollectorSchedule_Every_15min') declare @collection_set_id int; exec dbo.sp_syscollector_create_collection_set @name...