Running the dbcc checkident
command in SQL Server Management Studio, trying to reset the identity column. As you can see in the picture below clearly my table exists and the schema is the default dbo. But when attempt to execute:
dbcc checkident (Article, RESEED, 4);
I get the following response from the query:
Msg 2501, Level 16, State 45, Line 1
Cannot find a table or object with the name "Article". Check the system catalog.
This happens for every table in all of my databases. But this one is the specific one I'm trying to use. The table does have data in it. What can I do/check?