Forum Replies Created

Viewing 15 posts - 391 through 405 (of 994 total)

  • RE: Check DB MSDB

    Try creating your own database snapshot of msdb and then run DBCC CHECKDB on that. I think you're still going to run into the same issue, but it's worth a...

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    Excellent! Another problem bites the dust.

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    Hmm - weird. How long are the pathnames to the database files?

    Could be a privilege issue. Does the SQL Server service account have privileges to create files in the data...

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    Do you have any read-only files or filegroups in the database? That would stop it.

    Also, did a previous CHECKDB get killed for any reason? There could be a hidden database...

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    Hmmm. Are any of the following true:

    - you're running on a file system apart from NTFS

    - you have zero free space on the drive hosting the database

    I can't...

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    ok - it's nothing to do with your hardware. And yes, it uses a snapshot in all versions of SQL Server.

    I wrote DBCC CHECKDB for 2005 - if you post...

  • RE: DBCC CHECKDB resulted in error

    That whatever is causing the problem has a periodicity of more than 3 days. You need to wait to see if it happens again.

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    Which database are you trying to run CHECKDB against when you get the failure? There are more errors which explain why the snapshot could not be created - can you...

  • RE: DBCC CheckDB on 64 bit VM

    Don't know - but it's something in the IO subsystem (whether virtual or physical)...

  • RE: Check DB MSDB

    Power down SQL Server and the IO subsystem, then power them up again.

  • RE: DBCC CheckDB on 64 bit VM

    You've got corruption, and that's a known bug with database snapshots (which underpin DBCC CHECKDB) when that corruption occurs (sometimes).

    See CHECKDB bug that people are hitting - Msg 8967, Level...

  • RE: Check DB MSDB

    I don't know - totally depends on your IO subsystem vendor and what tools they provide.

    I asked a few other MVPs for opinions and they all say the same thing,...

  • RE: Check DB MSDB

    ok - looks like you've got something wrong with msdb (obviously 🙂 and it's in the IO subsystem - all operations are stalling waiting for reads to complete.

    If the db...

  • RE: Check DB MSDB

    You can't do a WITH TABLOCK CHECKDB of msdb (or master or tempdb) as that requires an exclusive database lock to run the allocation checks (equivalent of DBCC CHECKALLOC).

    If it...

  • RE: How to recover suspect database

    Best practice to start a new thread for each problem.

    What happened to the database?

    Please post the output from:

    select state_desc from master.sys.databases

    where name ='yourdbname'

    If this is a time-critical issue, you should...

Viewing 15 posts - 391 through 405 (of 994 total)