Viewing 15 posts - 916 through 930 (of 5,841 total)
If you don't update statistics manually you could wind up with some very different query plans (both for the better and perhaps worse) when you switch this on. However, the...
July 7, 2016 at 9:40 am
1) you asked to not be lectured on GUIDs, so I won't do that.
2) I WILL lecture you on the design choice of doing a partial insert and then updating...
July 7, 2016 at 9:37 am
Luis Cazares (7/6/2016)
SELECT l.pageno,
l.batchid,
l.loadid,
n AS lnidmin,
...
July 6, 2016 at 11:59 am
See if the attached will get you started.
July 5, 2016 at 3:39 pm
Indianrock (7/5/2016)
I hadn't heard of using these for anything other than tempdb??
This...
July 5, 2016 at 9:48 am
ffarouqi (7/5/2016)
Grant Fritchey (7/5/2016)
If it's getting timed out, that means it's firing, so it's not an issue that it's an Agent job,...
July 5, 2016 at 9:37 am
Download a copy of Glenn Berry's SQL Server Diagnostic Scripts for your version of SQL Server. An AMAZING collection of free stuff there!
July 5, 2016 at 8:41 am
What does the error details for the job say? Perhaps modify the job to add step details to the logging process. Have someone stay up and monitor the server(s) involved...
July 4, 2016 at 1:49 pm
sp_whoisactive has an option to show you the executing query plan. It is a MARVELOUS FREE tool you really should read up on. SQLBlog.com has a 30-day series on it...
July 4, 2016 at 10:09 am
Use sp_whoisactive to determine how much work has been done, query plan, tempdb usage, blocking, etc. You can also run it in differential mode and see how much work is...
July 4, 2016 at 7:36 am
If the structure of the temp table is fixed I always declare it outside the dynamic sql simply because then if I need to use it outside I know it...
July 3, 2016 at 8:12 am
It is very easy to adjust MAXDOP to suit varying load times since it is a live/immediate setting and requires no reboot. I am tired and can't recall it's affect...
July 2, 2016 at 10:41 am
Please don't double-post.
Answer here: http://www.sqlservercentral.com/Forums/Topic1799126-392-1.aspx
July 2, 2016 at 10:38 am
MMITTAL 758 (7/1/2016)
I want to have the distinct values for the column which is satisfied in the case statement and also want to get the condition satisfied for the...
July 2, 2016 at 10:37 am
MMITTAL 758 (7/1/2016)
I'm trying to add a condition in sql where I have used ®iondivision and &divisionid as variables. I want if the case 1st condition is satisfied then the...
July 1, 2016 at 12:10 pm
Viewing 15 posts - 916 through 930 (of 5,841 total)