Browse by Tags

TSQL to change collation of database, whats new in SQL 2008 then?
Published 12 March 8 1:24 PM | SSQA.net
Cross post from my BlogCasts site....( read more ) Read More...
TSQL to get SQL Server properties - How do I know which version of SQL Server I'm running?
Published 21 December 7 3:34 AM | SSQA.net
Use the following TSQL SELECT SERVERPROPERTY('Collation') Collation, SERVERPROPERTY('Edition') Edition, SERVERPROPERTY('Engine Edition') EngineEdition, SERVERPROPERTY('InstanceName') InstanceName, SERVERPROPERTY('IsClustered'...
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...