cannot find table or object
- by jeni
hi all,
Am running asp.net,c# application with sql server 2005.
I got some problems with database tables.I got an inconsistency errors in some tables.I tried to run the below dbcc command to remove the inconsistent datas;
DBCC CHECKTABLE ('Customer',repair_allow_data_loss) WITH
ALL_ERRORMSG
At first i run DBCC CHECKTABLE ('Customer') it is working.but now it is not working,
i got an error as Cannot find a table or object with the name "Customer". Check the system catalog.
Is my commands wrong.