Viewing 15 posts - 151 through 165 (of 206 total)
Its not normal.
From where you are trying to restore ? From network share or local drive? What wait type your restore operation waits for?
October 11, 2012 at 5:39 am
I have a powershell query which will list you all services running Manual Mode.
Get-WMIObject -Query "Select * from Win32_Service" | Select-Object name,Startmode -- list all services
Get-WMIObject -Query "Select *...
October 11, 2012 at 5:24 am
use msdb
go
select * from backupset
Above table can help you.
October 10, 2012 at 5:03 am
Isolation Level can be handled by session level also, not only database level, if I am right.
Is there any chance your application issue that?
October 10, 2012 at 4:55 am
Killing threads through TM is a RISKY one.
http://sqlblog.com/blogs/linchi_shea/archive/2010/02/04/killing-a-sql-server-thread-don-t.aspx
Better Leave the rollback process continue, if you do not have any performance problem bec of that spid.
October 5, 2012 at 7:31 am
I would recommend scripts rather than MP. I had some maintenance plans in Dev env - virtual machines which threw some memory related errors(those were simple packages for sql backup)....
September 26, 2012 at 7:56 am
I cant see any abnormal memory usage by other components.
Please post the exact error messge. What is your page file size? Do your disk drive which hold pagefiles have enough...
September 25, 2012 at 3:08 am
One doubt.. Will above query include MemtoLeave memory also?
September 25, 2012 at 2:46 am
select Type, SUM(single_pages_kb)/(1024.00) SingleP_MB
, SUM(Multi_pages_kb)/(1024.00) MultiP_MB
, SUM(virtual_memory_committed_kb)/(1024.00) VirtualP_MB
, SUM(shared_memory_committed_kb)/(1024.00) SharedP_MB
,...
September 25, 2012 at 2:45 am
select row_count , C.Text From sys.dm_exec_sessions ES ,sys.dm_exec_connections EC
Cross apply sys.dm_exec_sql_text (Ec.most_recent_sql_handle) C
where Es.session_id= EC.session_id
Not sure why you try to find out number of result sets. But above...
September 24, 2012 at 9:43 pm
When you suspect high memory usage by non-bufferpool components, use this query to find out large consumer.
select Type, SUM(Multi_pages_kb)/(1024.00) Multi_MB From sys.dm_os_memory_clerks ...
September 21, 2012 at 7:27 am
SQLAgentReaderRole should be enough to view job history.
September 21, 2012 at 7:03 am
lookalive is to check whether a resource is just appear online,isalive is a thorough check whether a resource is appear online and also that is functioning properly. These checks are...
September 21, 2012 at 4:27 am
If you want to measure memory usage of Buffer pool,
Select Count(*) * 8 / (1024.00) 'BufferPoolSize In MB' From sys.dm_os_buffer_descriptors
September 21, 2012 at 3:06 am
Do #tables cause stored procedure recompilation???
September 14, 2012 at 7:39 am
Viewing 15 posts - 151 through 165 (of 206 total)