We are having a database in which one table name dbo.ONOA is corrupt. We need to delete this table. Please let me is there any way to force delete the table?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
migrated from stackoverflow.com Jun 29 '12 at 12:34
|
Have you used DBCC CHECKTABLE to see what the problem is? Check the REPAIR_ALLOW_DATA_LOSS | REPAIR_FAST | REPAIR_REBUILD options to potentially repair the table. Database must be set in single user mode. |
|||||
|
DBCC CHECKCATALOGand post whatever errors you get here too. Its possible that you can't do the drop until you've fixed the errors. – Jon Egerton Jun 29 '12 at 11:57drop table YourTableNamenot work?? If so, what error is thrown? – Thomas Stringer Jun 29 '12 at 13:07