Viewing 15 posts - 1 through 15 (of 1,517 total)
Thanks, I actually was able to test this, and indeed the times reflect the completion of the query. Mystery solved!
January 17, 2023 at 4:38 pm
In SQL 2016 both clustered and non-clustered columnstore indexes are updateable, so there is no need to disable them prior to updates to the underlying table:
Columnstore Indexes Versioned Feature Summary
Thanks...
December 30, 2016 at 4:54 am
Enjoyed the scripts and explanations.
Nice article, thank you!
July 13, 2016 at 1:53 pm
Great post. It brings to mind many such situations that I have experienced in the past.
I think what exacerbates these situations is the "urgency" of the project - a looming...
June 17, 2015 at 4:20 am
A better way of terminating all Service-Broker activity in a given database:
ALTER DATABASE [dbName] SET NEW_BROKER WITH ROLLBACK IMMEDIATE;
See:
January 30, 2015 at 9:22 am
Thank you, I should've thought of that - I'll check.
October 2, 2014 at 3:32 am
Here is a query that will give output to help kill broker-activated tasks:
SELECT
'KILL ' + cast (at.spid as varchar)
, ...
August 13, 2014 at 3:10 pm
david.puckett 38841 (7/25/2014)
sql2012 installed on node 1 and node 2
node 1 and node 2 -> instance 1 using V: on san as clustered storage
from node...
July 29, 2014 at 5:38 am
Thanks, I'll schedule a live session with SQL Sentry to get set up to better be able to capture these.
July 3, 2014 at 10:06 am
Perhaps this link has the answer:
July 3, 2014 at 5:20 am
Thank you, I know about sp_whoisactive, and I have used it in the past.
To be honest, I think this is more of a limitation of what info current DMVs (in...
July 3, 2014 at 3:55 am
Thank you all!
June 3, 2014 at 3:38 am
D-SQL (5/20/2014)
May 22, 2014 at 5:21 am
No, we saw some of these on April 14, last weekend.
They coincide with a sql-agent service shutdown and restart.
Perhaps some jobs were not stopped cleanly during the shutdown and that...
April 17, 2014 at 2:44 pm
Eirikur Eiriksson (4/16/2014)
Quick question, why the (nolock) hints?😎
Hmm, mostly habit I guess... 🙂
I've removed them, so they do not detract from the "real" issue.
April 16, 2014 at 3:12 am
Viewing 15 posts - 1 through 15 (of 1,517 total)