Viewing 15 posts - 46 through 60 (of 92 total)
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
Remember I said I'm still learning?
Can someone show me how to do this without using the temp db (all in one statement)? I know it is a nested select...
March 15, 2012 at 9:16 am
A good week is when I fix more things than I break! 😎
March 15, 2012 at 6:27 am
Great, thanks, I knew it was easy. I'm still learning.
Many Thanks!
March 14, 2012 at 9:50 am
It gives me an error with grouping on fields selected with '*'.
Here is what I have now:
SELECT DISTINCT Stays.[Billing#], Orders.[Order#]
FROM Stays INNER JOIN (Test_Results INNER JOIN Orders ON Test_Results.ACT_ATEST =...
February 29, 2012 at 10:13 am
Viewing 15 posts - 46 through 60 (of 92 total)