Forum Discussion
Stacy Clark
Jan 18, 2022Brass Contributor
I am facing header corruption error in SQL database.
I am facing a header corruption error in the SQL database. Error msg: 5172, level 16, state 15 the header for the file is not valid. page audit property is incorrect.
- Jan 19, 2022
m_type equal to 15 identifies a page of type header.
Please Check this blog: https://www.stellarsqldatabaserecovery.com/blog/sql-database-error-5172-the-page-control-property-is-incorrect/
It is based on the same error message that you are getting.
Let me know if you have any query.
Stacy Clark
Jan 19, 2022Brass Contributor
The header for file is not a database file header. The page audit property is incorrect.
Msg 1802, level 16
create database failed, some file names listed could not be created.
Robin Shanab
Jan 19, 2022Iron Contributor
Run the following command and share the value of m_type
DBCC TRACEON (3604)
DBCC PAGE ('Empty', 1, 0, 3)
DBCC TRACEON (3604)
DBCC PAGE ('Empty', 1, 0, 3)
- Stacy ClarkJan 19, 2022Brass Contributorm_type is 15.
- Robin ShanabJan 19, 2022Iron Contributor
m_type equal to 15 identifies a page of type header.
Please Check this blog: https://www.stellarsqldatabaserecovery.com/blog/sql-database-error-5172-the-page-control-property-is-incorrect/
It is based on the same error message that you are getting.
Let me know if you have any query.
- Stacy ClarkJan 19, 2022Brass ContributorThank you so much, Robin. blog fixed my problem.