Viewing 15 posts - 2,431 through 2,445 (of 2,645 total)
Instead of
WHERE Primary_Diagnosis between 'C00%' and 'C14%'
Just have :
WHERE Primary_Diagnosis >='C00'
AND Primary_Diagnosis <= 'C1499999'
October 7, 2015 at 7:51 pm
I would try two compound indexes on the Message table.
CREATE INDEX IX_Message ON [Message](Value asc ,TypeId asc )
CREATE INDEX IX_Message_1 ON [Message](GroupId asc ,TypeId asc)
This should make the query...
October 6, 2015 at 8:28 am
keyurgondalia (9/13/2015)
September 13, 2015 at 6:36 pm
carbogast (3/6/2013)
September 7, 2015 at 5:42 am
Vlad-207446 (9/4/2015)
although we had an update/upgrade windows from 12AM to 6AM once or twice per...
September 4, 2015 at 6:14 am
radekkokes (9/4/2015)
without "while"...Delete top xxx from yyy where zzzz
go 1000:-)
The problem is that is that 1000 might be too many or too few.
September 4, 2015 at 5:00 am
andy.m.guscott (9/4/2015)
September 4, 2015 at 2:06 am
Lee Linares (8/17/2015)
Great script. Thanks for sharing. One small problem though is this line:
IF CONVERT(int, @ServerVersion) < 10
The issue is that SQL Server 2008 does NOT support sys.dm_os_volume_stats which was...
August 17, 2015 at 9:00 am
Perry Whittle (8/14/2015)
Jonathan AC Roberts (7/24/2015)
The script only calls xp_fixeddrives if the version of SQL server is below 2008, When the version is 2008 or higher it uses dm_os_volume_stats...
August 14, 2015 at 4:38 am
I've got to say the first thing I thought as I got halfway through the article was "my god they need some indexes on those tables". You'd be surprised how...
July 28, 2015 at 6:00 am
Hi Christopher
The script only calls xp_fixeddrives if the version of SQL server is below 2008, When the version is 2008 or higher it uses dm_os_volume_stats and reports on the mounted...
July 24, 2015 at 7:15 am
Thanks for the script, it looks useful particularly the queries that return the growth settings. I'll use it when I need that information. Unfortunately, sys.dm_os_volume_stats doesn't exist in versions of...
July 21, 2015 at 9:41 am
I've written a script which works on both SQL Server 2005 and 2008. I'm running it from a registered server group. It all works but for some reason I'm getting...
July 20, 2015 at 11:18 am
SimonH (7/6/2015)
I can improve performance by performing a soft delete (Updating a bit column(isdeleted)) and then purging the records at a more convenient time. This runs in a second but...
July 10, 2015 at 12:29 pm
I think you can optimise this by using a CROSS APPLY and TOP(1). Doing it with this method you should be able to remove the master table from the subquery...
July 10, 2015 at 9:19 am
Viewing 15 posts - 2,431 through 2,445 (of 2,645 total)