Viewing 15 posts - 46 through 60 (of 98 total)
Agreed, the NOLOCK was already on my radar.
November 5, 2021 at 2:39 pm
Thanks guys. I also thought the Bank filter may be unnecessary. I tried removing it and got one more record than with it, I'll look into that. It ran extremely...
November 5, 2021 at 1:10 pm
Edit: Wrong Answer
November 4, 2021 at 10:02 pm
August 15, 2018 at 7:00 am
Are your Statistics up to date?
I see it estimated 1.5 m rows but the actual was 4.2 m rows.
Then the sort spilled to TempDB.
November 30, 2017 at 12:43 pm
I experienced this after my first migration.
I moved a database to new fast hardware but the speed seemed the same or worse.
I ran DBCC UPDATEUSAGE and SP_UPDATESTATS against the database.
It...
April 6, 2016 at 2:33 pm
I had this issue in the past.
The culprit was a third party tool where log files that were not purged.
Redgate's SQL Backup didn't set a purge by default on the...
November 18, 2015 at 9:02 am
If you are changing the name of the server you need to dropserver/addserver.
--These Steps are needed after you rename the new server to the existing server name
sp_dropserver 'ServerName_New';
GO
sp_addserver 'ServerName_Existing', local;
GO
--restart...
November 18, 2015 at 8:49 am
Wow, that was easy!
Thanks, it gives me what I'm looking for! Appreciated!
December 10, 2012 at 8:39 am
Your example got me passed my error.
I'm good now.
THANKS!
August 28, 2012 at 9:31 am
Thanks for your response Laurie.
That is how I was initially attempting to get it done but I was struggling with the Cross Apply.
I appreciate your method.
August 28, 2012 at 9:25 am
Thank You Andy, that does give me the desired outcome.
I apologize but I left out one detail.
There are other Obsv Codes that begin with A_Med1 etc. (like Dosage,...
August 28, 2012 at 8:59 am
anthony.green (7/19/2012)
July 19, 2012 at 7:00 am
Call the vendor. Don't you have support from the vendor of the RX App?
I agree with the other posters, the ODBC config it is looking for isn't there.
May 16, 2012 at 6:40 am
Viewing 15 posts - 46 through 60 (of 98 total)