A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
Hi @Sam ,
Msg 1823, Level 16, State 6, Line 3A database snapshot cannot be created because it failed to start.
This issue may be due to insufficient disk space.
DBCC commands use internal read-only database snapshots. These database snapshots are created on the same drive where the corresponding database data files are located. Database that do not have sufficient disk space can't run the DBCC CheckDB command. Please make sure that there is sufficient disk space available on the drive that hosts the data file.
Seeing some entries in the msdb..suspect_pages? Now is there a way to know what objects/tables are residing in those list of corrupted pages?
You can run SELECT * FROM msdb.dbo.suspect_pages to find out the corrupt pages including database_id, file_id, page_id. Then use them to DBCC PAGE ( {'dbname' | dbid}, filenum, pagenum [, printopt={0|1|2|3} ]) as Erland mentioned.
Please refer to Finding a table name from a page ID for more information.
Best Regards,
Amelia
If the answer is helpful, please click "Accept Answer" and upvote it.
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.