{"id":75331,"date":"2021-02-24T12:34:05","date_gmt":"2021-02-24T12:34:05","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=75331"},"modified":"2025-12-17T11:25:35","modified_gmt":"2025-12-17T11:25:35","slug":"recognize-corrupted-sql-backup-file","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/","title":{"rendered":"How to Identify Corrupted SQL Backup File"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>Maintaining regular backup of SQL databases is a good practice. However, you may find yourself in a situation where the database cannot be restored from a backup. This happens when the backup file becomes corrupt. To avoid such a situation, you must regularly test your backups for corruption.&nbsp;<\/p><h2 class=\"wp-block-heading\" id=\"how-do-i-verify-a-sql-server-backup-file-for-corruption?\"><strong>How Do I Verify a SQL Server Backup File for Corruption?<\/strong><\/h2><p>You can check if your backup file is useable and not corrupted by restoring it and then running DBCC CHECKDB on the newly restored database. However, restoring the db and performing consistency checks for each database restore process is not feasible. That&rsquo;s because the process takes additional processing time and hard disk space to complete.<\/p><p><strong>Is there a better alternative?<\/strong><\/p><p>Yes. Using the &lsquo;<strong>RESTORE VERIFYONLY<\/strong>&rsquo;command can help you verify that your backup file is not corrupted and can be restored without any problem. The command does not restore a database. Instead, it reads through the backup file to ensure that it is useable after the backup process is complete.<\/p><p>Following are two different methods that can be used to validate SQL Server backup using the <strong>&lsquo;RESTORE VERIFYONLY&rsquo;<\/strong> command:<\/p><h3 class=\"wp-block-heading\" id=\"h-method-1-using-t-sql-statements\"><strong>Method 1 &ndash; Using T-SQL Statements<\/strong><\/h3><p>Execute the following command to check whether the backup file on disk is valid or not:<\/p><pre class=\"wp-block-code command_container\"><code><strong>RESTORE VERIFYONLY FROM DISK = C:\\YourDatabase.BAK<\/strong> <strong>GO<\/strong><\/code><\/pre><p>Usually, there are multiple database backups in a file. The above command will only check the first file. To check the second file in the backup, run the following command:<\/p><pre class=\"wp-block-code command_container\"><code><strong>RESTORE VERIFYONLY FROM DISK = C:\\YourDatabase.BAK WITH FILE = 2<\/strong> <strong>GO<\/strong><\/code><\/pre><h3 class=\"wp-block-heading\" id=\"h-method-2-using-ssms\"><strong>Method 2 &ndash; Using SSMS<\/strong><\/h3><p>When taking a backup of your SQL database using a maintenance plan or SSMS, the <strong>&lsquo;RESTORE VERIFYONLY&rsquo;<\/strong> (i.e., Verify backup when finished) option is used to validate whether the backup is useable.<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"463\" height=\"84\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/verify-backup-when-finished-option-img1.png\" alt=\"Verify backup when finished\" class=\"wp-image-75332 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/verify-backup-when-finished-option-img1.png 463w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/verify-backup-when-finished-option-img1-300x54.png 300w\" sizes=\"auto, (max-width: 463px) 100vw, 463px\" \/><\/figure>\n<\/div><p>However, the VERIFYONLY option is not enough to guarantee that your backup file can be restored without any issue. That&rsquo;s because SQL Server produces backup in Microsoft Tape Format (MTF), and the <strong>&lsquo;verify backup when finished&rsquo;<\/strong> option only performs a few checks on the MTF blocks containing the backup. Using only the <strong>VERIFYONLY <\/strong>option may report that the backup file is useable, even if it cannot be restored.<\/p><p>Thus, it&rsquo;s recommended that the <strong>&lsquo;Verify backup when finished&rsquo;<\/strong> option must be combined with the <strong>&lsquo;Perform checksum before writing to the media&rsquo;<\/strong> option to identify whether the SQL backup file is corrupted or not.<\/p><blockquote class=\"note_alert\">\n<p><strong>Note<\/strong>: On selecting the <strong>&lsquo;Perform checksum before writing to media&rsquo;<\/strong> option, SQL Server writes CHECKSUM value for each page when the backup is taken. The Server recalculates the CHECKSUM value for each page against the CHECKSUM generated during the backup process to validate whether the backup file is useable or not. &nbsp;<\/p>\n<\/blockquote><p>Both these options are available under <strong>&lsquo;Reliability&rsquo;<\/strong> in SSMS, as you can see in the image below:<\/p><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"722\" height=\"521\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/verify-backup-and-checksum-options-img2.png\" alt=\"Reliability in SSMS\" class=\"wp-image-75333 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/verify-backup-and-checksum-options-img2.png 722w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/verify-backup-and-checksum-options-img2-300x216.png 300w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><\/figure>\n<\/div><h2 class=\"wp-block-heading\" id=\"what-next?\"><strong>What Next?<\/strong><\/h2><p>If your SQL database backup file is corrupted, you can try repairing your database using 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> with the <strong>&lsquo;REPAIR_ALLOW_DATA_LOSS&rsquo;<\/strong> repair option. If you&rsquo;re lucky enough, you may restore your database with minimal data loss.<\/p><p>A better alternative is to use <a href=\"https:\/\/www.stellarinfo.com\/sql-database-toolkit.php\" target=\"_blank\" rel=\"noreferrer noopener\">Stellar Toolkit for MS SQL<\/a> software to restore your SQL database with all its data intact. The software comprises tools to repair a corrupt SQL database and extract db from corrupted backup. It also offers a tool to reset passwords of SQL Server database files.<\/p><h2 class=\"wp-block-heading\" id=\"conclusion\"><strong>Conclusion<\/strong><\/h2><p>As DBAs, you are already regularly backing up your SQL databases. However, you must also ensure that SQL Server can read the backup if your database needs to be restored. But, you cannot use the backup file to restore the database if it is corrupt. Hence, it is important to identify corrupted SQL backup file before performing the database restore process.<\/p><p><strong>Also read: <\/strong><\/p><ul class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/www.stellarinfo.com\/blog\/how-to-recover-sql-server-database-without-backup\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Recover SQL Server Database without Backup?<\/a><\/strong><\/li>\n\n\n\n<li><strong><a href=\"https:\/\/www.stellarinfo.com\/blog\/fix-sql-server-database-dbcc-checkdb-consistency-errors\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Fix DBCC CHECKDB Consistency Errors?<\/a><\/strong><strong><\/strong><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Maintaining regular backup of SQL databases is a good practice. However, you&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\">Continue reading <span class=\"screen-reader-text\">How to Identify Corrupted SQL Backup File<\/span><\/a><\/p>\n","protected":false},"author":34,"featured_media":75334,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10],"tags":[1806],"class_list":["post-75331","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-recovery","tag-corrupted-sql-backup-file","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 Identify Corrupted SQL Backup File<\/title>\n<meta name=\"description\" content=\"Different ways to identify corrupted SQL backup file. If the file is corrupt, you can try repairing your MS SQL database using the DBCC CHECKDB command.\" \/>\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\/recognize-corrupted-sql-backup-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Identify Corrupted SQL Backup File\" \/>\n<meta property=\"og:description\" content=\"Different ways to identify corrupted SQL backup file. If the file is corrupt, you can try repairing your MS SQL database using the DBCC CHECKDB command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-24T12:34:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-17T11:25:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.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=\"Charanjeet Kaur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Charanjeet Kaur\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\"},\"author\":{\"name\":\"Charanjeet Kaur\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2\"},\"headline\":\"How to Identify Corrupted SQL Backup File\",\"datePublished\":\"2021-02-24T12:34:05+00:00\",\"dateModified\":\"2025-12-17T11:25:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\"},\"wordCount\":628,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg\",\"keywords\":[\"corrupted SQL backup file\"],\"articleSection\":[\"SQL Database Repair\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\",\"name\":\"How to Identify Corrupted SQL Backup File\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg\",\"datePublished\":\"2021-02-24T12:34:05+00:00\",\"dateModified\":\"2025-12-17T11:25:35+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2\"},\"description\":\"Different ways to identify corrupted SQL backup file. If the file is corrupt, you can try repairing your MS SQL database using the DBCC CHECKDB command.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg\",\"width\":1000,\"height\":600,\"caption\":\"Identify Corrupted SQL Backup File\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Identify Corrupted SQL Backup File\"}]},{\"@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\/4bcf0d3fb4f61fce73560518655de4f2\",\"name\":\"Charanjeet Kaur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a4660bcceddd78a5c4de4caf8ed709c17893427075cd639070c6dc090adc520f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a4660bcceddd78a5c4de4caf8ed709c17893427075cd639070c6dc090adc520f?s=96&d=mm&r=g\",\"caption\":\"Charanjeet Kaur\"},\"description\":\"Charanjeet is a Technical Content Writer at Stellar\u00aewho specializes in writing about databases, e-mail recovery, and e-mail migration solutions. She loves researching and developing content that helps database administrators, organizations and novices to fix multiple problems related to MS SQL and MySQL databases and Microsoft Exchange.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/charanjeet-kaur-1b791920\/\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/charanjeet\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Identify Corrupted SQL Backup File","description":"Different ways to identify corrupted SQL backup file. If the file is corrupt, you can try repairing your MS SQL database using the DBCC CHECKDB command.","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\/recognize-corrupted-sql-backup-file\/","og_locale":"en_US","og_type":"article","og_title":"How to Identify Corrupted SQL Backup File","og_description":"Different ways to identify corrupted SQL backup file. If the file is corrupt, you can try repairing your MS SQL database using the DBCC CHECKDB command.","og_url":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2021-02-24T12:34:05+00:00","article_modified_time":"2025-12-17T11:25:35+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg","type":"image\/jpeg"}],"author":"Charanjeet Kaur","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Charanjeet Kaur","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/"},"author":{"name":"Charanjeet Kaur","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2"},"headline":"How to Identify Corrupted SQL Backup File","datePublished":"2021-02-24T12:34:05+00:00","dateModified":"2025-12-17T11:25:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/"},"wordCount":628,"commentCount":0,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg","keywords":["corrupted SQL backup file"],"articleSection":["SQL Database Repair"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/","url":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/","name":"How to Identify Corrupted SQL Backup File","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg","datePublished":"2021-02-24T12:34:05+00:00","dateModified":"2025-12-17T11:25:35+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2"},"description":"Different ways to identify corrupted SQL backup file. If the file is corrupt, you can try repairing your MS SQL database using the DBCC CHECKDB command.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Identify-Corrupted-SQL-Backup-File.jpg","width":1000,"height":600,"caption":"Identify Corrupted SQL Backup File"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/recognize-corrupted-sql-backup-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Identify Corrupted SQL Backup File"}]},{"@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\/4bcf0d3fb4f61fce73560518655de4f2","name":"Charanjeet Kaur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a4660bcceddd78a5c4de4caf8ed709c17893427075cd639070c6dc090adc520f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a4660bcceddd78a5c4de4caf8ed709c17893427075cd639070c6dc090adc520f?s=96&d=mm&r=g","caption":"Charanjeet Kaur"},"description":"Charanjeet is a Technical Content Writer at Stellar\u00aewho specializes in writing about databases, e-mail recovery, and e-mail migration solutions. She loves researching and developing content that helps database administrators, organizations and novices to fix multiple problems related to MS SQL and MySQL databases and Microsoft Exchange.","sameAs":["https:\/\/www.linkedin.com\/in\/charanjeet-kaur-1b791920\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/charanjeet\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/75331","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\/34"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=75331"}],"version-history":[{"count":4,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/75331\/revisions"}],"predecessor-version":[{"id":188293,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/75331\/revisions\/188293"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/75334"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=75331"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=75331"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=75331"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}