Forum Replies Created

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

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

  • RE: Altering a column impact on indexes?

    Thanks Scott, that's kind of what I thought might happen but wanted confirmation. I know if the size was "reduced" it would cause that to happen, but wasn't sure...

  • RE: SQL database shrink takes over many hours

    Can what run? The actual shrink process or the rollback?

    The shrink process can take days depending on how much you're attempting to shrink at a time...the rollback should be...

  • RE: SQL database shrink takes over many hours

    Killing it won't do any harm whatsoever. It shouldn't take long at all to rollback and it's only doing small chunks behind the scenes

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