Thank this author by sharing:
By Brian Knight, 2005/10/28 (first published: 2004/03/31)
To fix this problem, perform the following functions:
As an absolute last resort, you can place your database in emergency mode. By placing it in this mode, you will be allowed to copy data out of the database, even if the data is corrupt. To place your database in emergency mode, use the following command:
SP_CONFIGURE 'allow updates', 1 RECONFIGURE WITH OVERRIDE GO UPDATE master..sysdatabases set status = -32768 WHERE name = 'pubs' GO SP_CONFIGURE 'allow updates', 0 RECONFIGURE WITH OVERRIDE
You can then BCP data out and place it into a different database.
dbcc allow data lose problem with increasing log
database problem
Maximum size of a database that SQL Server 2005 clustered allows
Problem in database restore
Problems in Database mail in SQL server 2005
As a member of SQLServerCentral, you get free access to loads of fresh content: thousands of articles and SQL scripts, a library of free eBooks, a weekly database news roundup, a great Q & A platform… And it’s our huge, buzzing community of SQL Server Professionals that makes it such a success.
Join us!
Steve Jones Editor, SQLServerCentral.com