{"id":1262,"date":"2018-10-12T05:45:26","date_gmt":"2018-10-12T05:45:26","guid":{"rendered":"https:\/\/www.pcvita.com\/blog\/?p=1262"},"modified":"2021-12-18T12:47:29","modified_gmt":"2021-12-18T07:17:29","slug":"check-database-corruption-in-sql-server","status":"publish","type":"post","link":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html","title":{"rendered":"How to Check \/ Detect Database Corruption in SQL Server &#8211; Speedly"},"content":{"rendered":"<p style=\"text-align: justify;\">SQL Server Database corruptions, DBAs can understand how painful it is. Well does not occur so frequently but what if happens, it is always the troublesome and stressful situation for organizations and to there DBAs. How to check database corruption in SQL Server? Or How to detect if it occurs?<\/p>\n<h2 class=\"heading-style\">Causes of Corruption in SQL Server Database<\/h2>\n<p style=\"text-align: justify;\">Microsoft SQL Server Database is the core part to run the business. It is the relational database management system (RDBMS) developed by Microsoft for small &amp; big organizations, home users, etc. to securely store their crucial professional data.<\/p>\n<p style=\"text-align: justify;\">Corruption can occur due to many of the reasons like caused by hardware failure or subsystem issues, sudden power cut, SQL Server stops responding, while performing the Delete operation, etc. Being DBAs, there is not much to prevent these corruptions, only one can try to detect and resolve it as early as possible. Here you will find out how to check if the SQL Server database is corrupted and fix it using the relevant solution.<\/p>\n<h2 class=\"heading-style\">Detect \/ Check Database Corruption SQL Server using Four Methods<\/h2>\n<p style=\"text-align: justify;\">Following things, DBAs can do to find out corruption in SQL Database. This section only covers to the method to detect corruption.<\/p>\n<p style=\"text-align: justify;\"><strong>-PAGE Verify Option \u2013 Recovery<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>-Backup with Checksum<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>-DBCC CHECKDB<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>-Create an ALERT<\/strong><\/p>\n<blockquote>\n<p style=\"text-align: justify;\"><strong>Note: DBCC CheckDB<\/strong> command lets DBA to check database corruption in SQL Server, but corruption in SQL compact edition is verified with Engine object.<\/p>\n<\/blockquote>\n<p><strong>Method 1: How PAGE Verify Option detect corruption?<\/strong><\/p>\n<p style=\"text-align: justify;\">On each Database created within SQL Server, Page Verify Option. The user can set it by using T-SQL script or by SSMS. Whenever read &amp; write operation is performed on a page, this option tells the database how the health of the page is verified during the process.<\/p>\n<p><strong>Set with SQL Server Management Studio (SSMS)<\/strong><\/p>\n<p style=\"text-align: justify;\">1. Click on<strong> Databas<\/strong>e you need to check, and select properties.<\/p>\n<p style=\"text-align: justify;\">2. Next in the Database Properties window. Select<strong> Options page<\/strong> and drag down to Recovery.<\/p>\n<p style=\"text-align: justify;\">3. Under <strong>Recovery<\/strong> option, there is <strong>Page Verify<\/strong>. In this click on down arrow option and Select<strong> CHECKSUM<\/strong> and click on<strong> OK<\/strong> button. As shown in below image.<\/p>\n<p style=\"text-align: justify;\"><strong>Set using T-SQL<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong><em>ALTER DATABASE<\/em><\/strong><\/p>\n<p style=\"text-align: justify;\"><em>SET PAGE_VERIFY <strong>CHECKSUM<\/strong> WITH NO_WAIT;<\/em><\/p>\n<p style=\"text-align: justify;\">DBA can use three options i.e.<strong> \u2018NONE\u2019<\/strong> to not verify the page, \u2018<strong>TORN_PAGE_DETECTION\u2019<\/strong> was used earlier and is never the best option to choose for SQL 2005 &amp; above, and the best option to choose is <strong>\u2018CHECKSUM\u2019<\/strong><\/p>\n<p><strong>Method 2: Using Database Backup with CHECKSUM<\/strong><\/p>\n<p style=\"text-align: justify;\">Run the SQL database command with CHECKSUM always. This means when the backup is performed, SQL Server Check pages during the backup process and if it detects corruption in any page. In case, found any corruption backup fails.<\/p>\n<p style=\"text-align: justify;\">If the job is set, when a backup fails, DBA will receive backup fail notification on their email.<\/p>\n<p style=\"text-align: justify;\">Let\u2019s see demo how command looks:<\/p>\n<p style=\"text-align: justify;\"><strong>BACKUP DATABASE<\/strong> abc<\/p>\n<p style=\"text-align: justify;\"><strong>TO DISK<\/strong>=&#8217;D:\\SQLBackups\\abc.bak&#8217;<\/p>\n<p style=\"text-align: justify;\">WITH <strong>CHECKSUM;<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>Method 3: DBCC CHECKDB Command<\/strong><\/p>\n<p style=\"text-align: justify;\">Using DBCC CHECKDB command user or DB can the check the logical and physical integrity of all the Data objects within the database selected. This is used for checking full the database. It is recommended to run DBCC CHECKDB weekly or one can run more frequently depending on your system capacity.<\/p>\n<p style=\"text-align: justify;\">Run: DBCC CHECKDB(your database name)<\/p>\n<p style=\"text-align: justify;\">If detects any corruption, the job gets failed with an error message. This error message shows complete detail why job gets failed or reason why database corruption in SQL Server occurred.<\/p>\n<p style=\"text-align: justify;\"><strong>Method 4: Create an Alert<\/strong><\/p>\n<p style=\"text-align: justify;\">DBAs can create an Alert script and get informed to themselves if any critical error occurred in the database.<\/p>\n<h3 class=\"heading-style\">What to do if Corruption in SQL Server Detected?<\/h3>\n<p style=\"text-align: justify;\">If Database corruption in SQL Server detected, best is to restore it from most recent backup available. What to do if no recent backup available? In this case, DBAs can perform below manual method that may help to repair.<\/p>\n<p style=\"text-align: justify;\"><strong>1. DBCC CHECKDB REPAIR_REBUILD<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>Repair_REBUILD<\/strong> is the most secure manual approach used to repair the corrupted database. Well, this helps if the corruption level is not so high.<\/p>\n<p style=\"text-align: justify;\"><strong>2. DBCC CHECKDB REPAIR_ALLOW_DATA_LOSS<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>REPAIR_ALLOW_DATA_LOSS<\/strong> detects the corrupted part of database file selected and then it completely removes that part. Mostly, not recommended to perform because it may result from huge data loss.<\/p>\n<div class=\"alert alert-info\" role=\"alert\">\n<p><strong>Important Note:<\/strong> The user can also read another post to know <a href=\"https:\/\/www.pcvita.com\/blog\/how-often-should-i-run-dbcc-checkdb.html\">how often should I run DBCC CHECKDB<\/a> to repair the corrupt SQL database.<\/p>\n<\/div>\n<p style=\"text-align: justify;\">Thus, using an authentic solution is the best way to repair and recover corrupted SQL Database. DBAs can try<strong>\u00a0SQL Database Repair Tool<\/strong> to fix corruption and recover the database without any data loss.<\/p>\n<h3 class=\"heading-style\">Features of Alternate Solution to Detect &amp; Repair Database Corruption<\/h3>\n<p style=\"text-align: justify;\">A One-stop solution is to use <a class=\"text-red\" href=\"https:\/\/www.pcvita.com\/sql-database-recovery.html\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>SQL Database Recovery software<\/strong><\/a> to resolve how to check database corruption in SQL server and repair if detected. Why choose this software? The tool is available with most demanded features to check database corruption SQL Server and quickly fixes without any data loss.<\/p>\n<p><a class=\"btn btn-success btn-lg btn-md-block p-3 text-white\" href=\"https:\/\/systoolskart.com\/download\/SYS1S2Q7L\/18\">Download<\/a> <a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #ff6800; color: #fff !important;\" href=\"https:\/\/systoolskart.com\/buy\/SYS1S2Q7L\/18\" target=\"_blank\" rel=\"noopener noreferrer\"> Purchase Now<\/a><\/p>\n<p style=\"text-align: justify;\">Remove corruption from both MDF &amp; NDF files and recover all items like tables, triggers, indexes, stored procedure, etc. Capable to preview and recover deleted SQL database records. Provides user-friendly interface.<\/p>\n<h3 class=\"heading-style\">Conclusion<\/h3>\n<p style=\"text-align: justify;\">Above in this article, we have elaborated \u201chow to check database corruption in SQL Server?\u201d. Once the process to check database completes, and DBAs detect any corruption then he needs to decide the correct method to get rid of corruption. If no recent backup is available then the best approach is to try an alternate solution.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>SQL Server Database corruptions, DBAs can understand how painful it is. Well does not occur so frequently but what if <\/p>\n","protected":false},"author":17,"featured_media":1262,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[108],"class_list":["post-1262","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-general","tag-repair-database-corruption"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Database Corruption in SQL Server - How to Check or Detect<\/title>\n<meta name=\"description\" content=\"Here&#039;s how to check database corruption in SQL Server and find a relevant solution to repair corrupt database in case detected. Top four method to detect is discussed in this article.\" \/>\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.pcvita.com\/blog\/check-database-corruption-in-sql-server.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Database Corruption in SQL Server - How to Check or Detect\" \/>\n<meta property=\"og:description\" content=\"Here&#039;s how to check database corruption in SQL Server and find a relevant solution to repair corrupt database in case detected. Top four method to detect is discussed in this article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html\" \/>\n<meta property=\"og:site_name\" content=\"PCVITA Official Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-12T05:45:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-18T07:17:29+00:00\" \/>\n<meta name=\"author\" content=\"Mohit Jha\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohit Jha\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html\"},\"author\":{\"name\":\"Mohit Jha\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/46d7590809ce0596a0f14a1fbc5d56fe\"},\"headline\":\"How to Check \\\/ Detect Database Corruption in SQL Server &#8211; Speedly\",\"datePublished\":\"2018-10-12T05:45:26+00:00\",\"dateModified\":\"2021-12-18T07:17:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html\"},\"wordCount\":930,\"image\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/detect-database-corruption-in-sql-server.jpg\",\"keywords\":[\"repair database corruption\"],\"articleSection\":[\"General\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html\",\"name\":\"Database Corruption in SQL Server - How to Check or Detect\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/detect-database-corruption-in-sql-server.jpg\",\"datePublished\":\"2018-10-12T05:45:26+00:00\",\"dateModified\":\"2021-12-18T07:17:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/46d7590809ce0596a0f14a1fbc5d56fe\"},\"description\":\"Here's how to check database corruption in SQL Server and find a relevant solution to repair corrupt database in case detected. Top four method to detect is discussed in this article.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#primaryimage\",\"url\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/detect-database-corruption-in-sql-server.jpg\",\"contentUrl\":\"https:\\\/\\\/cdnxtra.com\\\/feature\\\/detect-database-corruption-in-sql-server.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/check-database-corruption-in-sql-server.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pcvita.com\\\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Check \\\/ Detect Database Corruption in SQL Server &#8211; Speedly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/\",\"name\":\"PCVITA Official Blog\",\"description\":\"Technology Solution that Matters\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/#\\\/schema\\\/person\\\/46d7590809ce0596a0f14a1fbc5d56fe\",\"name\":\"Mohit Jha\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g\",\"caption\":\"Mohit Jha\"},\"description\":\"Mohit is a Microsoft-certified expert who has assisted thousands of clients with Outlook &amp; Microsoft Office 365 issues. He enjoys writing on email clients as well as data migration. He is always excited about giving troubled readers the most up-to-date knowledge, explanation, and refinements.\",\"sameAs\":[\"https:\\\/\\\/in.linkedin.com\\\/in\\\/mohitkumarjha\",\"https:\\\/\\\/www.pcvita.com\\\/assets\\\/author\\\/mohit.png\"],\"url\":\"https:\\\/\\\/www.pcvita.com\\\/blog\\\/author\\\/mohit\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Database Corruption in SQL Server - How to Check or Detect","description":"Here's how to check database corruption in SQL Server and find a relevant solution to repair corrupt database in case detected. Top four method to detect is discussed in this article.","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.pcvita.com\/blog\/check-database-corruption-in-sql-server.html","og_locale":"en_US","og_type":"article","og_title":"Database Corruption in SQL Server - How to Check or Detect","og_description":"Here's how to check database corruption in SQL Server and find a relevant solution to repair corrupt database in case detected. Top four method to detect is discussed in this article.","og_url":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html","og_site_name":"PCVITA Official Blog","article_published_time":"2018-10-12T05:45:26+00:00","article_modified_time":"2021-12-18T07:17:29+00:00","author":"Mohit Jha","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mohit Jha","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#article","isPartOf":{"@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html"},"author":{"name":"Mohit Jha","@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/46d7590809ce0596a0f14a1fbc5d56fe"},"headline":"How to Check \/ Detect Database Corruption in SQL Server &#8211; Speedly","datePublished":"2018-10-12T05:45:26+00:00","dateModified":"2021-12-18T07:17:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html"},"wordCount":930,"image":{"@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#primaryimage"},"thumbnailUrl":"https:\/\/cdnxtra.com\/feature\/detect-database-corruption-in-sql-server.jpg","keywords":["repair database corruption"],"articleSection":["General"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html","url":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html","name":"Database Corruption in SQL Server - How to Check or Detect","isPartOf":{"@id":"https:\/\/www.pcvita.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#primaryimage"},"image":{"@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#primaryimage"},"thumbnailUrl":"https:\/\/cdnxtra.com\/feature\/detect-database-corruption-in-sql-server.jpg","datePublished":"2018-10-12T05:45:26+00:00","dateModified":"2021-12-18T07:17:29+00:00","author":{"@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/46d7590809ce0596a0f14a1fbc5d56fe"},"description":"Here's how to check database corruption in SQL Server and find a relevant solution to repair corrupt database in case detected. Top four method to detect is discussed in this article.","breadcrumb":{"@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#primaryimage","url":"https:\/\/cdnxtra.com\/feature\/detect-database-corruption-in-sql-server.jpg","contentUrl":"https:\/\/cdnxtra.com\/feature\/detect-database-corruption-in-sql-server.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.pcvita.com\/blog\/check-database-corruption-in-sql-server.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pcvita.com\/blog"},{"@type":"ListItem","position":2,"name":"How to Check \/ Detect Database Corruption in SQL Server &#8211; Speedly"}]},{"@type":"WebSite","@id":"https:\/\/www.pcvita.com\/blog\/#website","url":"https:\/\/www.pcvita.com\/blog\/","name":"PCVITA Official Blog","description":"Technology Solution that Matters","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pcvita.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.pcvita.com\/blog\/#\/schema\/person\/46d7590809ce0596a0f14a1fbc5d56fe","name":"Mohit Jha","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a4339547039990f13c5d3fd6ffce8722244e886b0d2b3fb9867d307b00d81ada?s=96&d=mm&r=g","caption":"Mohit Jha"},"description":"Mohit is a Microsoft-certified expert who has assisted thousands of clients with Outlook &amp; Microsoft Office 365 issues. He enjoys writing on email clients as well as data migration. He is always excited about giving troubled readers the most up-to-date knowledge, explanation, and refinements.","sameAs":["https:\/\/in.linkedin.com\/in\/mohitkumarjha","https:\/\/www.pcvita.com\/assets\/author\/mohit.png"],"url":"https:\/\/www.pcvita.com\/blog\/author\/mohit"}]}},"_links":{"self":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/1262","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/comments?post=1262"}],"version-history":[{"count":0,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/1262\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/posts\/1262"}],"wp:attachment":[{"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/media?parent=1262"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/categories?post=1262"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pcvita.com\/blog\/wp-json\/wp\/v2\/tags?post=1262"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}