Forum Replies Created

Viewing 15 posts - 46 through 60 (of 92 total)

  • RE: Disappointing Performance

    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...

  • RE: extremely slow log shipping restore in standby mode

    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...

  • RE: Moving SQL SERVER 2008 Databases on Physical Box to a Virtual Server(Question)

    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...

  • RE: Group By with Case

    Wow, that was easy!

    Thanks, it gives me what I'm looking for! Appreciated!

  • RE: Nested Select

    Your example got me passed my error.

    I'm good now.

    THANKS!

  • RE: Nested Select

    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.

  • RE: Nested Select

    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,...

  • RE: Snapshots

    anthony.green (7/19/2012)


    I also read it as being Yes as the question didnt specify needing to delete or not delete the other snapshots, so in theory Yes I can revert to...

  • RE: Please i need HELP !

    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.

  • RE: Query assistance request

    Thank you Mark.

  • RE: Query assistance request

    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...

  • RE: Was This Week A Good Week?

    A good week is when I fix more things than I break! 😎

  • RE: Query assistance request

    Thanks Rob, yes that is needed.

  • RE: Query assistance request

    Great, thanks, I knew it was easy. I'm still learning.

    Many Thanks!

  • RE: query assistance

    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 =...

Viewing 15 posts - 46 through 60 (of 92 total)