Forum Replies Created

Viewing 15 posts - 151 through 165 (of 1,584 total)

  • RE: Memory

    +1 to what everyone else has echoed - great question, and unfortunately, one I missed - TGIF!

  • RE: 2012 always on and reporting

    Thanks Perry - I will read through this - thanks for sharing it

  • RE: 2012 always on and reporting

    Russell; I'm looking to implement something similar to this and I'd be very curious to see how you implement this (seems like a great step-by-step article that you could post...

  • RE: Looking for Database Warehousing Strategies

    Thanks for the information; I will check it out 🙂

  • RE: Bad storage array? Corruption?

    2 days after-the-fact, a full check returns no errors

    DBCC CHECKDB ('MYDB') WITH ALL_ERRORMSGS, NO_INFOMSGS

  • RE: Getting Profiler to Filter User Name

    You maybe able to uses the sysprocesses table to determine the hostprocess ID. You can use the hostprocess ID to find the PID on the server it originated from:SELECT

    ...

  • RE: CHECKDB errors

    Interesting.

    On the other server where I restored the latest full/diff backup, I ran a serious of checks (including the ones you mentioned) and finished it all off with DBCC CHECKDB('SSRS')...

  • RE: CHECKDB errors

    Thanks Gail, as always I appreciate the feedback. Yes, I tried the restart and while it resolved the CLR issues, it still comes back after running a full blown...

  • RE: CHECKDB errors

    Interestingly enough, running this returned no errors

    EXECUTE sp_MSforeachtable 'PRINT ''?''; DBCC CHECKTABLE ([?]) WITH NO_INFOMSGS, ALL_ERRORMSGS'

  • RE: Need advice on query

    What exactly isn't working? Are you getting an error? Could be that one of your values in the CASE is NULL...

  • RE: General practice for MAXDOP setting

    TheSQLGuru (8/18/2014)Don't forget the other part of the equation - Cost Threshold for Parallelism. The default of 5 is universally too low.

    What's a good way to determine...

  • RE: Change SQL Server 2012 Collation

    Thanks for that clarification 🙂 Appreciate it!

  • RE: Change SQL Server 2012 Collation

    hiram.osiris (12/5/2013)


    There's also a workaround that I saw once here:

    1.-Stop SQL Server service from Configuration Manager

    2.-Open CMD console as administrator and go to the following path: C:\Program Files\Microsoft SQL Server\MSSQL11.SQL2012(Here...

  • RE: Process for Dropping & Readding articles in Trasnsreplication

    Seems about right but would strongly encourage you to verify that the anonymous/immediate_sync options have been set properly, if they are not set to 0, when you trigger the snapshot...it...

  • RE: I want to check the 7 Days backup status...

    You can query the BackupSet and BackupMediaFamily tables in the msdb database:SELECT

    CONVERT(CHAR(100), SERVERPROPERTY('Servername')) AS Server,

    bu.database_name,

    bu.backup_start_date, ...

Viewing 15 posts - 151 through 165 (of 1,584 total)