Hi @Bih Luh Hew ,
> How can we know what was the object since the objectID is 0 ?
If you see the ObjectId is 0, that means there was no metadata found. This could be because:
•The table that the page was part of has been deleted since the page corruption was logged
•The system catalogs are corrupt in some way
•The page is corrupt and so incorrect values were used to look up the metadata
Please refer to the blog Finding a table name from a page ID.
We can using below T-SQL to check object name.
USE DBname;
GO
SELECT OBJECT_NAME (objectID);
GO
Please refer to MS document OBJECT_NAME (Transact-SQL).
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.