Viewing 15 posts - 121 through 135 (of 220 total)
Cowboy DBA (6/21/2013)
DELETE FROM dbo.cart C
LEFT OUTER JOIN
...
June 21, 2013 at 4:46 pm
Cowboy DBA (6/21/2013)
WHEN NOT MATCHED BY SOURCE AND
...
June 21, 2013 at 8:22 am
Apologies I probably didn't make my self clear, the query wasn't hanging but was taking an age to execute to the point i would stop the query.
I think it was...
June 21, 2013 at 7:46 am
bugg (6/21/2013)
Cowboy DBA (6/21/2013)
Have you seen why it is hanging? Is it being blocked by another process?
No its not getting blocked its on my dev SQL database.
However I've just spotted...
June 21, 2013 at 7:16 am
Cowboy DBA (6/21/2013)
Have you seen why it is hanging? Is it being blocked by another process?
No its not getting blocked its on my dev SQL database.
However I've just spotted that...
June 21, 2013 at 7:12 am
Looks like this happened at same time as the index rebuild under the same spid.
Has anyone else seen this before, that can perhaps provide a little more insight?
Thanks
April 22, 2013 at 2:37 am
email-935809 (8/10/2010)
April 22, 2013 at 1:52 am
Michael Valentine Jones (4/19/2013)
April 19, 2013 at 10:00 am
ChrisM@Work (4/2/2013)
April 19, 2013 at 8:28 am
NJDave (4/19/2013)
April 19, 2013 at 7:11 am
ChrisM@Work (3/25/2013)
1. Include orderhash and status in index IX_SessionID, like this:
CREATE NONCLUSTERED INDEX [IX_sessionid] ON [dbo].[orderha]
([sessionid] ASC, OrderHash ASC) INCLUDE (Status)...
April 2, 2013 at 3:20 am
GilaMonster (3/27/2013)
WHERE IDColumn LIKE 'XY%'Not like, being a function on the column it would be non-SARGable. Like with a trailing wildcard can use indexes.
Thanks Gila, had to look up sargable...
March 27, 2013 at 7:10 am
bugg (3/25/2013)
ChrisM@Work (3/25/2013)
1. Include orderhash and status in index IX_SessionID, like this:
CREATE NONCLUSTERED INDEX [IX_sessionid] ON [dbo].[orderha]
([sessionid] ASC, OrderHash ASC) INCLUDE...
March 25, 2013 at 9:00 am
ChrisM@Work (3/25/2013)
1. Include orderhash and status in index IX_SessionID, like this:
CREATE NONCLUSTERED INDEX [IX_sessionid] ON [dbo].[orderha]
([sessionid] ASC, OrderHash ASC) INCLUDE (Status)...
March 25, 2013 at 7:40 am
ChrisM@Work (3/25/2013)
Right-click on the execution plan tab, select "Save...
March 25, 2013 at 5:11 am
Viewing 15 posts - 121 through 135 (of 220 total)