Viewing 15 posts - 166 through 180 (of 244 total)
Alan,
In your example the SORT is happening right after the table is read and prior to the Nested Loops join, which makes sense given your example. In my situation...
June 21, 2015 at 9:43 pm
Here is the SQL and the attached sql plan
DECLARE @SendId INT
SET @SendId = 1
UPDATEEmailTrackingSummary
SETEmailName = tets.EmailName,
SentDate = tets.SentDate,
SendDate = tets.SendDate,
NumberSent = tets.NumberSent,
NumberDelivered = tets.NumberDelivered,
Duplicates = tets.Duplicates,
UniqueClicks = tets.UniqueClicks,
UniqueOpens = tets.UniqueOpens,
HardBounces...
June 19, 2015 at 3:56 pm
Thanks for the help. Glad to know I don't have to completely tear down the Log Shipping to do the upgrade.
May 14, 2015 at 5:16 am
So I have found an error in the SQL Agent Error Logs that is related. "[264] An attempt was made to send an email when not email session has...
April 30, 2015 at 8:20 am
Jeff, there is no documentation on what specific query they believed was the cause of the problem.
Grant, thanks for the reminder about the index DMVs.
I appreciate...
March 27, 2015 at 6:15 pm
Jeff, I have been told that querying such DMV's caused an issue in a production environment and so there is now caution about such queries.
March 25, 2015 at 6:56 pm
Yes. The PK is clustered. In terms of the summary from BOL, I guess It would be unique in our situation. This is a SQL Cluster...
March 23, 2015 at 9:33 pm
vsamantha35 (3/9/2015)
Looking for some guidance on server migration. We are moving from old h/w to new h/w. i.e. from sql 2008 r2 to sql 2014 RTM. As a result...
March 15, 2015 at 9:22 pm
Ken Davis (3/2/2015)
Thanks for the reply but if understand the concept, the copy-on-write means a page of data only goes into the snapshot sparse file when that page gets updated...
March 2, 2015 at 10:39 pm
I think if you simply change the email_level to 0 then you will only be undoing part of what your initial script is doing. The sp_update_job stored proc only...
March 1, 2015 at 9:12 am
I don't have 2008R2 disc handy, but I did this on 2012 with no restart of SQL Server.
February 28, 2015 at 9:52 pm
Ken Davis (2/27/2015)
February 28, 2015 at 8:45 pm
vsamantha35 (2/28/2015)
How to troubleshoot blocking if u r seeing multiple blocking chains? Do I need to kill all the head blockers?
What is the best approach to deal with...
February 28, 2015 at 8:11 pm
If you have already configured ssrs on the new instance then it is more challenging. The best thing to do is to install but don't configure ssrs on the...
February 25, 2015 at 5:17 am
I would set up a query of the session and request DMVs to run at the same time as your troubled agent job. Capture data every 5 to 15...
February 25, 2015 at 5:02 am
Viewing 15 posts - 166 through 180 (of 244 total)