Viewing 15 posts - 16 through 30 (of 59 total)
article that is what you need to know...about SQL Server Maintenance
November 24, 2011 at 7:02 am
Remove the where clause and run
SELECT * FROM sys.server_triggers
November 23, 2011 at 1:32 pm
I think You can not do sp_helptext on server level triggers. you can generate the script by ssms.
November 23, 2011 at 1:24 pm
run dbcc checkdb() prior and after the restore and compare the result.
November 23, 2011 at 1:01 pm
You also do it by changing the auto-close property to false of model DB.. so after attaching u don't need to change.
November 23, 2011 at 12:04 pm
-2 is DTC orphan transaction to kill this ,you have to first find UOW( unit of work) from sys.dm_tran_locks
Select request_owner_guid from sys.dm_tran_locks where request_request_id = -2
Kill 'request_owner_guid'
November 23, 2011 at 11:32 am
You can find the actual memory usage by below query.
SELECT cntr_value AS 'Total SQL Server Memory'
FROM sys.dm_os_performance_counters
WHERE object_name = 'MSSQL$INSTANCENAME:Memory Manager'
and counter_name = 'Total Server Memory (KB)'
November 22, 2011 at 12:04 pm
As you connections are in sleeping state. you can kill the connection before restoring it. A connection lifetime is depends on the connection string when it served and application...
November 22, 2011 at 11:20 am
SAN Level mirroring? / SRDF?
You cannot mirror one database to multiple instances.
November 17, 2011 at 2:52 pm
Are you typing correct password?
Is SQL authentication enabled on the server?
November 17, 2011 at 2:49 pm
Viewing 15 posts - 16 through 30 (of 59 total)