{"id":100165,"date":"2022-06-07T11:04:22","date_gmt":"2022-06-07T11:04:22","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=100165"},"modified":"2024-11-04T12:27:24","modified_gmt":"2024-11-04T12:27:24","slug":"how-to-fix-page-corruption-in-sql-server","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/","title":{"rendered":"How to Fix Page Corruption in SQL Server?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>Page is the primary storage unit in SQL Server. All the information in SQL Server database (MDF\/NDF) files is stored in pages of 8 KB size. Each page starts with a 96-byte header that stores information, like page number, page type, free space etc. If a page gets corrupted, then it can impact the entire database. In this case, you may receive different errors when opening the database file or even not able to access the database. Therefore, fixing page-level corruption immediately is important. In this article, we will see how to fix page corruption in SQL Server database.<\/p><h2 class=\"wp-block-heading\" id=\"how-to-detect-corruption-in-sql-server-database?\">How to Detect Corruption in SQL Server Database?<\/h2><p>Before proceeding to the solutions to fix corruption, you need to check the SQL database for corruption. There are various ways to check page-level corruption in SQL Server database. Some of them are explained below:<\/p><h3 class=\"wp-block-heading\"><strong>1. Run the SELECT Statement<\/strong><\/h3><p>SQL Server keeps a log of all the suspect pages in the suspect_pages table in msdb (system) database, containing all the corrupt pages that are reported by SQL queries. You can check the suspect_pages table to see the corrupted pages in the database. For this, you can run the SELECT statement as given below:<\/p><pre class=\"wp-block-code command_container\"><code>SELECT * FROM msdb..suspect_pages<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"501\" height=\"74\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-select-statement.png\" alt=\"result of select statement feom suspect pages table\" class=\"wp-image-172364 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-select-statement.png 501w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-select-statement-300x44.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-select-statement-150x22.png 150w\" sizes=\"auto, (max-width: 501px) 100vw, 501px\" \/><\/figure><p>The above command will return a grid with a row of each corrupted page. In our case (see the above image), you can see that the page, with id 368, is corrupted.<\/p><h3 class=\"wp-block-heading\"><strong>2. Execute DBCC CHECKDB Command<\/strong><\/h3><p>The DBCC CHECKDB command checks physical and logical integrity of database objects and index relationships. You can use the DBCC CHECKDB command, as given below, to check for corruption in the SQL database.<\/p><pre class=\"wp-block-code command_container\"><code>DBCC CHECKDB &lsquo;database_name&rsquo;;<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"152\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/check-corruption-sql-server.png\" alt=\"check corruption sql server\" class=\"wp-image-172365 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/check-corruption-sql-server.png 1024w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/check-corruption-sql-server-300x45.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/check-corruption-sql-server-768x114.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/check-corruption-sql-server-150x22.png 150w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><p>If the above command finds corruption in the database, it will display consistency errors, along with the possible option to repair the database.<\/p><h3 class=\"wp-block-heading\">3. <strong>Use CHECKSUM Option<\/strong><\/h3><p>You can also use the CHECKSUM option to detect page-level corruption in SQL database, if the PAGE_VERIFY option is set to CHECKSUM. CHECKSUM is a database option that defines the process in SQL Server to check page consistency when it is written to the disk and read again from the disk. To check page-level corruption in the SQL database, run the following command:<\/p><pre class=\"wp-block-code command_container\"><code>SELECT name, page_verify_option_desc FROM sys.databases<\/code><\/pre><h3 class=\"wp-block-heading\"><strong>4. Run DBCC PAGE Command<\/strong><\/h3><p>The DBCC PAGE command is an undocumented command that is used to detect corrupt pages in a database. To get the result from the DBCC PAGE command, you need to set the Trace flag 3604. Here is the command:<\/p><pre class=\"wp-block-code command_container\"><code>DBCC TRACEON (3604)<\/code><\/pre><pre class=\"wp-block-code command_container\"><code>DBCC PAGE('Recovery_test',1,368,2) WITH TABLERESULTS<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"244\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-dbcc-page-command.png\" alt=\"result of dbcc page command\" class=\"wp-image-172366 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-dbcc-page-command.png 1024w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-dbcc-page-command-300x71.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-dbcc-page-command-768x183.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/result-of-dbcc-page-command-150x36.png 150w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><p>The command output will help you understand what kind of corruption has occurred and what type of data is affected.<\/p><h2 class=\"wp-block-heading\" id=\"solutions-to-fix-page-corruption-in-sql-server-database\">Solutions to Fix Page Corruption in SQL Server Database<\/h2><p>After checking the database by using any of the above methods, if you find any page-level errors or corruption in SQL database, then follow the below methods to repair the database and recover the data.<\/p><h3 class=\"wp-block-heading\"><strong>1 &ndash; Perform Page Level Restore<\/strong><\/h3><p>You can perform &ldquo;Page Restore&rdquo; to restore only the corrupt\/damaged pages, without restoring the entire database. This is a faster way when you need to restore only a few individual pages. The page restore applies to databases that use full or bulk-logged recovery system. You can restore pages by using the SQL Server Management Studio or T-SQL commands. To restore pages using SSMS, follow the below steps:<\/p><ul class=\"wp-block-list\">\n<li>Open SSMS and connect to your SQL Server instance.<\/li>\n\n\n\n<li>In the Object Explorer, expand the <strong>Databases<\/strong> node, right-click on the affected database, and select <strong>Tasks &gt; Restore &gt; Page<\/strong>. This will open the <strong>Page Restore<\/strong> window.<\/li>\n<\/ul><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"980\" height=\"724\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/click-tasks-select-restore.png\" alt=\"click tasks select restore\" class=\"wp-image-172367 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/click-tasks-select-restore.png 980w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/click-tasks-select-restore-300x222.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/click-tasks-select-restore-768x567.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/click-tasks-select-restore-150x111.png 150w\" sizes=\"auto, (max-width: 980px) 100vw, 980px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>In the <strong>Page Restore<\/strong> window, check the selected database, backup file, backup set, and other required details.<\/li>\n<\/ul><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"746\" height=\"699\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/select-options-in-page-restore-window.png\" alt=\"select options in page restore window\" class=\"wp-image-172368 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/select-options-in-page-restore-window.png 746w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/select-options-in-page-restore-window-300x281.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/06\/select-options-in-page-restore-window-150x141.png 150w\" sizes=\"auto, (max-width: 746px) 100vw, 746px\" \/><\/figure><ul class=\"wp-block-list\">\n<li>To identify the corrupt pages, click <strong>Check Database pages<\/strong>. This may take some time.<\/li>\n\n\n\n<li>When the process is finished, it will display the pages grid. Here, you can identify the pages to be restored.<\/li>\n\n\n\n<li>Use the <strong>Add<\/strong> and <strong>Remove<\/strong> button to add or delete the pages.<\/li>\n\n\n\n<li>Next, click <strong>OK <\/strong>to restore the pages listed in the pages grid.<\/li>\n<\/ul><p>Alternatively, you can use the T-SQL command &ndash; RESTORE DATABASE (see the below example) to <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/relational-databases\/backup-restore\/restore-pages-sql-server?view=sql-server-ver16#WhenUseful\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">restore the page<\/a><\/p><p><strong>Note:<\/strong> You must know the File ID where the page is located and Page ID of the corrupted page.<\/p><pre class=\"wp-block-code command_container\"><code>RESTORE DATABASE &lt;database_name&gt;&nbsp;<\/code><\/pre><pre class=\"wp-block-code command_container\"><code>&nbsp;PAGE = '&lt;file: page&gt; [ ,... n ] ' [ ,... n ]<\/code><\/pre><pre class=\"wp-block-code command_container\"><code>&nbsp;FROM &lt;backup_device&gt; [ ,... n ]<\/code><\/pre><pre class=\"wp-block-code command_container\"><code>&nbsp;WITH NORECOVERY<\/code><\/pre><h3 class=\"wp-block-heading\"><strong>Limitations of the above method:<\/strong><\/h3><ul class=\"wp-block-list\">\n<li>Restoring multiple pages using Page Restore is a time-consuming process.<\/li>\n\n\n\n<li>It can restore only database pages. It does not restore Transaction log, Allocation pages, Page 0 of all data files (the file boot page), Page 1:9 (the database boot page), and Full-text catalog.<\/li>\n\n\n\n<li>It only supports databases that use the full or bulk-logged recovery model.&nbsp;<\/li>\n<\/ul><h3 class=\"wp-block-heading\"><strong>2 &ndash; Use DBCC CHECKDB Command<\/strong><\/h3><p>If multiple pages are corrupted, then you can use the <a href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-repair-sql-database-using-dbcc-checkdb-command\/\" target=\"_blank\" rel=\"noreferrer noopener\">DBCC CHECKDB command<\/a> to repair the corrupt SQL database. You can use the REPAIR_ALLOW_DATA_LOSS option with the command.<\/p><p>First, you need to set the database in single-user mode by running the below command:<\/p><pre class=\"wp-block-code command_container\"><code>ALTER DATABASE Dbtesting SET SINGLE_USER<\/code><\/pre><p>Then, run the below command to repair the database:<\/p><pre class=\"wp-block-code command_container\"><code>DBCC CHECKDB (N &rsquo;Dbtesting&rsquo;, REPAIR_ALLOW_DATA_LOSS) WITH ALL_ERRORMSGS, NO_INFOMSGS;<\/code><\/pre><pre class=\"wp-block-code command_container\"><code>GO<\/code><\/pre><p>After repairing the database, set it to multi-user mode by using the below command:<\/p><pre class=\"wp-block-code command_container\"><code>ALTER DATABASE Dbtesting SET MULTI_USER<\/code><\/pre><p><strong>Limitations of &nbsp;the above method:<\/strong><\/p><ul class=\"wp-block-list\">\n<li>It may deallocate rows, pages, or series of pages, when repairing the database. This may result in some data loss.<\/li>\n\n\n\n<li>You may require to run this command several times to resolve the issues, which is a time-consuming process.<\/li>\n<\/ul><h3 class=\"wp-block-heading\"><strong>3 &ndash; Use a Professional SQL Repair Tool<\/strong><\/h3><p>If the above methods fail, you can use a professional <a href=\"https:\/\/www.stellarinfo.com\/sql-database-repair.php\">SQL database repair tool<\/a> to repair the corrupt database. Stellar Repair for MS SQL is one such tool that can quickly repair the corrupt SQL database without any data loss. It can repair and restore all the database objects, including tables, pages, views, keys, and indexes, with complete precision. &nbsp;<\/p><p><strong>Some key features of Stellar Repair for MS SQL:<\/strong><\/p><ul class=\"wp-block-list\">\n<li>Supports PAGE compressed data.<\/li>\n\n\n\n<li>Repairs both MDF and NDF files.<\/li>\n\n\n\n<li>Restores all the data from damaged SQL database with complete integrity.<\/li>\n\n\n\n<li>Supports repairing SQL databases on both Windows and Linux systems.<\/li>\n\n\n\n<li>Supports MS SQL Server 2022 and lower versions.<\/li>\n\n\n\n<li>Allows to save the repaired file in multiple formats &ndash; live database, new database, CSV, and XLS.<\/li>\n\n\n\n<li>Helps to resolve complex corruption-related errors.<\/li>\n<\/ul><p>Watch the below video to know how the software works: <\/p><figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"How to Repair and Restore Corrupt SQL server Database with Stellar Repair for MS SQL Software\" width=\"750\" height=\"422\" src=\"https:\/\/www.youtube.com\/embed\/yso4axqXxlM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure><p><a id=\"_msocom_1\"><\/a><\/p><h2 class=\"wp-block-heading\" id=\"to-conclude\"><strong>To Conclude<\/strong><\/h2><p>There are various reasons that can cause page-level corruption in SQL Server databases. Above, we have discussed how to detect page-level corruption in database. If there is corruption in a few pages, you can use the page restore method to restore the corrupted pages. If multiple pages are corrupted, you can use the DBCC CHECKDB command to repair the corrupt database. However, both these methods have some limitations. Alternatively, you can use a professional SQL repair tool, such as <a href=\"https:\/\/www.stellarinfo.com\/sql-database-repair.php\">Stellar Repair for MS SQL<\/a>. It can easily repair highly damaged SQL database files and restore all the data, including pages, with complete precision.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Page is the primary storage unit in SQL Server. All the information&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\">Continue reading <span class=\"screen-reader-text\">How to Fix Page Corruption in SQL Server?<\/span><\/a><\/p>\n","protected":false},"author":82,"featured_media":100176,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10],"tags":[364],"class_list":["post-100165","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-recovery","tag-sql-database-repair","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Fix Page Corruption in SQL Server?<\/title>\n<meta name=\"description\" content=\"Pages in SQL databases can get corrupted due to several reasons. Learn causes and methods to fix page level corruption in SQL Server\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix Page Corruption in SQL Server?\" \/>\n<meta property=\"og:description\" content=\"Pages in SQL databases can get corrupted due to several reasons. Learn causes and methods to fix page level corruption in SQL Server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-07T11:04:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-04T12:27:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Monika Dadool\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Monika Dadool\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\"},\"author\":{\"name\":\"Monika Dadool\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/02a465e9b5b4912eafedd1ae248558fd\"},\"headline\":\"How to Fix Page Corruption in SQL Server?\",\"datePublished\":\"2022-06-07T11:04:22+00:00\",\"dateModified\":\"2024-11-04T12:27:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\"},\"wordCount\":1131,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg\",\"keywords\":[\"SQL database repair\"],\"articleSection\":[\"SQL Database Repair\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\",\"name\":\"How to Fix Page Corruption in SQL Server?\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg\",\"datePublished\":\"2022-06-07T11:04:22+00:00\",\"dateModified\":\"2024-11-04T12:27:24+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/02a465e9b5b4912eafedd1ae248558fd\"},\"description\":\"Pages in SQL databases can get corrupted due to several reasons. Learn causes and methods to fix page level corruption in SQL Server\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg\",\"width\":1000,\"height\":600,\"caption\":\"How to Fix Page Corruption in SQL Server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix Page Corruption in SQL Server?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/\",\"name\":\"Stellar Data Recovery Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/02a465e9b5b4912eafedd1ae248558fd\",\"name\":\"Monika Dadool\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7d22d2cc256776033dcf284e9c6b96fcf19473429aa25ea91b3f7561ae5e8b7a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7d22d2cc256776033dcf284e9c6b96fcf19473429aa25ea91b3f7561ae5e8b7a?s=96&d=mm&r=g\",\"caption\":\"Monika Dadool\"},\"description\":\"Monika Dadool is a Senior Content Writer at Stellar with over 5 years of experience in technical writing. She is a tech enthusiast and expert who specializes in writing about SQL Server, MySQL Server, MariaDB Server, Microsoft Access, Active Directory, email recovery, Microsoft 365, pattern recognition, machine learning, data recovery, file repair, and operating systems like Linux, Windows, and Mac. She also writes about accounting software such as QuickBooks and Sage 50, as well as web-scripting languages like HTML, JavaScript, Python, PHP, Visual Basic, ASP.NET, and AJAX. Monika is passionate about researching and exploring new technologies, and she enjoys developing engaging technical blogs that help organizations and database administrators resolve various issues. When she's not creating content, you can find her on social media, watching web series, reading books, or exploring new food recipes.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/monika-dadool-105a87163\/\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/monika\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix Page Corruption in SQL Server?","description":"Pages in SQL databases can get corrupted due to several reasons. Learn causes and methods to fix page level corruption in SQL Server","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix Page Corruption in SQL Server?","og_description":"Pages in SQL databases can get corrupted due to several reasons. Learn causes and methods to fix page level corruption in SQL Server","og_url":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2022-06-07T11:04:22+00:00","article_modified_time":"2024-11-04T12:27:24+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg","type":"image\/jpeg"}],"author":"Monika Dadool","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Monika Dadool","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/"},"author":{"name":"Monika Dadool","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/02a465e9b5b4912eafedd1ae248558fd"},"headline":"How to Fix Page Corruption in SQL Server?","datePublished":"2022-06-07T11:04:22+00:00","dateModified":"2024-11-04T12:27:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/"},"wordCount":1131,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg","keywords":["SQL database repair"],"articleSection":["SQL Database Repair"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/","url":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/","name":"How to Fix Page Corruption in SQL Server?","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg","datePublished":"2022-06-07T11:04:22+00:00","dateModified":"2024-11-04T12:27:24+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/02a465e9b5b4912eafedd1ae248558fd"},"description":"Pages in SQL databases can get corrupted due to several reasons. Learn causes and methods to fix page level corruption in SQL Server","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2022\/05\/How-to-fix-page-corruption-in-sql-server.jpg","width":1000,"height":600,"caption":"How to Fix Page Corruption in SQL Server"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/how-to-fix-page-corruption-in-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix Page Corruption in SQL Server?"}]},{"@type":"WebSite","@id":"https:\/\/www.stellarinfo.com\/blog\/#website","url":"https:\/\/www.stellarinfo.com\/blog\/","name":"Stellar Data Recovery Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/02a465e9b5b4912eafedd1ae248558fd","name":"Monika Dadool","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7d22d2cc256776033dcf284e9c6b96fcf19473429aa25ea91b3f7561ae5e8b7a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7d22d2cc256776033dcf284e9c6b96fcf19473429aa25ea91b3f7561ae5e8b7a?s=96&d=mm&r=g","caption":"Monika Dadool"},"description":"Monika Dadool is a Senior Content Writer at Stellar with over 5 years of experience in technical writing. She is a tech enthusiast and expert who specializes in writing about SQL Server, MySQL Server, MariaDB Server, Microsoft Access, Active Directory, email recovery, Microsoft 365, pattern recognition, machine learning, data recovery, file repair, and operating systems like Linux, Windows, and Mac. She also writes about accounting software such as QuickBooks and Sage 50, as well as web-scripting languages like HTML, JavaScript, Python, PHP, Visual Basic, ASP.NET, and AJAX. Monika is passionate about researching and exploring new technologies, and she enjoys developing engaging technical blogs that help organizations and database administrators resolve various issues. When she's not creating content, you can find her on social media, watching web series, reading books, or exploring new food recipes.","sameAs":["https:\/\/www.linkedin.com\/in\/monika-dadool-105a87163\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/monika\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/100165","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/users\/82"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=100165"}],"version-history":[{"count":25,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/100165\/revisions"}],"predecessor-version":[{"id":172391,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/100165\/revisions\/172391"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/100176"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=100165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=100165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=100165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}