Viewing 15 posts - 121 through 135 (of 180 total)
why would you need to do this? the only way would be to RDP to the machine and restart the service
December 18, 2014 at 4:30 am
is it the case that the physical size of the ldf file on disk is over 35gb, however after a log backup only a small amount of this file is...
December 18, 2014 at 3:54 am
I find activity monitor to be a good overview of what's going on my system. I use whoisactive after that to view the transactions that have been running for a...
December 18, 2014 at 3:45 am
Run the following on each instance and compare the output.
USE master;
GO
EXEC sp_configure 'show advanced option', '1';
RECONFIGURE;
EXEC sp_configure;
Also run DBCC TRACESTATUS. There could be a traceflag set on one but...
September 25, 2014 at 9:36 am
It depends, if you have no other option, ie applications and other databases will be affected if you don't take action, then you must kill the transaction. As long as...
September 25, 2014 at 9:23 am
you need to break that report down to find the query that is causing the long remote server execution.
once you have found the query, run it directly on the...
September 19, 2014 at 7:32 am
Yes the spn will fail to register automatically if you are using a domain account for the sql service account and have not explicitly granted it permissions to create SPN....
September 12, 2014 at 7:23 am
I can see how this would be ok, because the SQL service effectively restarts in the event of a failover, at which point the tempdb is recreated. So as the...
September 11, 2014 at 10:30 am
Are they dedicated sql servers or is anything else running on them that is trying to use a ot of memory? have you tried setting a min memory setting for...
August 20, 2014 at 8:17 am
To let you know after running dbccfreeproccache to clear out stale plans Navision performance for the processes mentioned improved dramatically, and sp_execute makes up for a tiny percentage of queries...
August 8, 2014 at 4:28 am
Yes worth a go. Thanks for your response
July 31, 2014 at 6:19 am
I made a slight mistake, the query is no sp_executesql, it is sys.sp_execute. Is this the same thing?
July 30, 2014 at 12:40 pm
It would be useful to capture the execution plan when the query is running fast, and capture it again when the query is slow.
Sounds like it is not locking...
June 26, 2014 at 9:54 am
Well I have managed to reproduce in my test database, and can see the rebuild of index1 is waiting on LCK_M_IX. The details of the wait resource is a pagelock,...
May 27, 2014 at 5:30 am
Thanks GilaMonster, That's what I though, that something was blocking the online rebuild, but on investigation this was not the case. The index rebuild was at the top of the...
May 27, 2014 at 3:27 am
Viewing 15 posts - 121 through 135 (of 180 total)