Forum Replies Created

Viewing 15 posts - 1 through 15 (of 21 total)

  • RE: Statistics Update History - NOT Last Updated Date

    bustell (5/3/2016)


    Not unless you have some manual process that's been keeping track of it.

    I was afraid of that and kind of figured. Thanks. 🙂

    The problem with monitoring the query plan,...

  • RE: Log File

    Looks like I might have fat fingered the size and typed a size larger than the current file size which would explain the error message.

  • RE: Log File

    Yes, I totally agree that you should not shrink your files as part of a maintenance plan. However I have run across the same message and I have a...

  • RE: Moving from SQL 2012 Enterprise to Standard - possible?

    Loundy (5/23/2013)


    unfortunately downgrade isn't possible.

    you could install standard next to enterprise and copy the dbs to it before uninstalling to minimize any downtime, but as mentioned, back your dbs up...

  • RE: What makes stored procedure results not bookmarkable

    drew.allen (10/7/2011)


    I'm not sure that this is a T-SQL issue.

    Drew

    Changing the cursor location to the client may not work for us. I understand that there are things...

  • RE: Does adding new SQL 2008 R2 named instance require a reboot?

    Thanks, I actually found a test machine to try it out on. I just completed the named instance installation and it did not require a reboot.

  • RE: Unused Indexes in your databases

    Double Order By and Where clauses. Even if I comment one of the doubles out for each, the script still fails with errors:

    Msg 207, Level 16, State 1, Line...

  • RE: Changing FILLFACTOR by Updating sys.indexes

    Thank You! Nice script too.

    Any ways, you answered my question. I can't just update the sys.indexes table to change future rebuild/reorganize FILLFACTORs. 🙂 I tried.

    Pat

  • RE: Changing FILLFACTOR by Updating sys.indexes

    Thank You! Nice script too.

    Any ways, you answered my question. I can't just update the sys.indexes table to change future rebuild/reorganize FILLFACTORs. 🙂 I tried.

    Pat

  • RE: Event ID '1073742657' in Source 'MSSQLSERVER' cannot be found

    I, unfortunately, never did find an answer to this issue.

    So far every failover has worked perfectly. We are very happy with the solution. Do you get any indication...

  • RE: Question of the Day for 09 Jul 2004

    I saw no trick to this.  I cut and pasted it from the question and it ran perfectly.  The question was terrible.  Who suggested this question?  It's nice to see...

  • RE: Ronald Reagan, 1911-2004

    Jim,

    And you probably really believe that Al Gore invented the Internet...

  • RE: Ronald Reagan, 1911-2004

    Steve's comments were just a simple gesture about a United States President.  They did not appear to be politically motivated.  It was not an endorsement of him, nor was it...

  • RE: How do you debug a trigger?

    I have found it useful to use print statements in the trigger.  Then perform an action in query analyzer that will cause the trigger to be fired.  The print statements...

  • RE: Uses For Derived Tables

    In example 2, couldn't this be used also?

    DECLARE @orderby int

    SET @orderby = 1

    SELECT l.State, ComponentName

    FROM #Locations l

    INNER JOIN #Users u ON l.LocationID = u.LocationID

    INNER JOIN #Components c ON c.UserID =...

Viewing 15 posts - 1 through 15 (of 21 total)