{"id":75299,"date":"2021-02-24T11:52:29","date_gmt":"2021-02-24T11:52:29","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=75299"},"modified":"2025-08-26T12:47:35","modified_gmt":"2025-08-26T12:47:35","slug":"mysql-error-incorrect-key-file-on-table","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/","title":{"rendered":"How to Fix MySQL \u201cIncorrect Key File for Table\u201d Error"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>You may encounter the MySQL error &lsquo;Incorrect Key File for Table&rsquo; when running a large MySQL query. For instance, some users have reported receiving the error while executing a query to fetch thousands of records from a table using more than one JOIN.<\/p><h2 class=\"wp-block-heading\" id=\"why-mysql-shows-&ldquo;incorrect-key-file-for-table&rdquo;-error-(disk-or-corruption)\"><strong>Why MySQL Shows &ldquo;Incorrect Key File for Table&rdquo; Error (Disk or Corruption)<\/strong><\/h2><p>The complete MySQL error message &ldquo;<strong>Incorrect key file for table &lsquo;FILEPATH.MYI&rsquo;; try to repair it<\/strong>&rdquo; suggests that you can try to repair the key. Looking at your table FILEPATH can help you find more details about the error:<\/p><ul class=\"wp-block-list\">\n<li>If the FILEPATH looks similar to <strong>&lsquo;\/tmp\/#sql_xxxx.MYI<\/strong>&lsquo;, it means that your query is returning a large result set. The\/tmp folder used for storing a temporary table containing the larger result set is too small for the query size. Essentially, there is not sufficient space in your \/tmp folder for the temporary table.<\/li>\n<\/ul><ul class=\"wp-block-list\">\n<li>If your FILEPATH contains the database table&rsquo;s name, it&rsquo;s likely that your table is corrupt.<\/li>\n<\/ul><h2 class=\"wp-block-heading\" id=\"root-causes-&amp;-fixes:-disk-space-and-table-corruption\"><strong>Root Causes &amp; Fixes: Disk Space and Table Corruption<\/strong><\/h2><p>You may be getting the error because of a disk space issue or corruption in MySQL table. Read on to know how you can resolve these two issues.<\/p><h3 class=\"wp-block-heading\" id=\"h-cause-1-insufficient-disk-space-in-the-temporary-folder-tmp\"><strong>Cause 1 &ndash; Free Up or Move tmpdir to a Larger Partition<\/strong><\/h3><figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Note:<\/strong> You won&rsquo;t get the error on executing individual queries, but you may encounter the error when running large queries simultaneously on the same MySQL Server.<\/td><\/tr><\/tbody><\/table><\/figure><p>The primary reason that results in MySQL &lsquo;Incorrect key file&rsquo; error is that your query is fetching data greater than the size of your \/tmp folder (i.e., the folder used for storing temporary tables).<\/p><h3 class=\"wp-block-heading\" id=\"h-solution-change-the-location-of-temp-folder\"><strong>Solution &ndash; Change the location of &lsquo;\/temp&rsquo; folder<\/strong><\/h3><p>First of all, you must determine if the disk partition is full by looking at your \/tmp folder size. Run the <strong>df <\/strong>command with &lsquo;<strong>-h<\/strong>&lsquo; option to check disk usage of the file system in human-readable form:<\/p><p><strong><code>df &ndash;h<\/code><\/strong><\/p><p>If the partition is full, then change the location of the \/tmp folder to a disk with ample free space. Change the file location in the MySQL configuration file (.cnf).<\/p><p>Sometimes, the \/tmp folder is big enough, but it might still get full. In that case, you will need to clean up some space in the folder manually.<\/p><h3 class=\"wp-block-heading\" id=\"h-cause-2-corrupted-keys-or-table\"><strong>Cause 2 &ndash; Repair or Recreate the Corrupted Table (MyISAM \/ InnoDB)<\/strong><\/h3><p>Table corruption is another reason that may lead to the &lsquo;Incorrect Key File for Table&rsquo; error.<\/p><h3 class=\"wp-block-heading\" id=\"h-solution-re-create-or-repair-the-corrupted-table\"><strong>Solution &ndash; Re-create or Repair the Corrupted Table<\/strong><\/h3><p>To resolve the issue, drop\/re-create the corrupt table and then re-insert the data.<\/p><p>For example, in the following query &lsquo;DELETE&rsquo; operation is used for dropping the table, and &lsquo;OPTIMIZE&rsquo; TABLE command is used afterward to free disk space.<\/p><p><strong><code>mysql&gt; DELETE tbl_name WHERE id &lt; 200000;<\/code><\/strong><\/p><p><strong><code>mysql&gt; OPTIMIZE TABLE tbl_name;<\/code><\/strong><\/p><p>If you cannot re-insert the data, try repairing the table. For MyISAM tables, you can use the &lsquo;REPAIR table&rsquo; command to fix the corruption:<\/p><p><strong><code>REPAIR TABLE tbl_name USE_FRM;<\/code><\/strong><\/p><p>This command will work only on MyISAM tables. For repairing tables with InnoDB database engine, check out the <a href=\"https:\/\/www.stellarinfo.com\/blog\/repair-innodb-table-corruption-in-mysql\/\" target=\"_blank\" rel=\"noreferrer noopener\">best ways to repair InnoDB table corruption in MySQL<\/a>. But, running a repair command for each of the tables in the query can be a lengthy and time-consuming process.<\/p><h2 class=\"wp-block-heading\" id=\"advanced-option:-use-stellar-repair-for-mysql-for-severe-corruption\"><strong>Advanced Option: Use Stellar Repair for MySQL for Severe Corruption<\/strong><\/h2><p>Use <a href=\"https:\/\/www.stellarinfo.com\/mysql-repair.php\" target=\"_blank\" rel=\"noreferrer noopener\">Stellar Repair for MySQL<\/a> software to repair corrupt tables. The software helps repair MySQL database and all its objects quickly in just a few clicks. It recovers all data from the corrupted database without data loss.<\/p><h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2><p>When you encounter the MySQL error &lsquo;Incorrect Key File for Table&rsquo;, the first thing you should do is to check the location of \/tmp folder to ensure that it has enough disk space to store temporary tables. If not, then change the folder location to a disk having ample free space. If there is no issue with disk space, chances are that your database table is corrupt and needs to be repaired. If you fail to repair the table manually, using MySQL database repair software can help.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You may encounter the MySQL error &lsquo;Incorrect Key File for Table&rsquo; when&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\">Continue reading <span class=\"screen-reader-text\">How to Fix MySQL \u201cIncorrect Key File for Table\u201d Error<\/span><\/a><\/p>\n","protected":false},"author":34,"featured_media":75322,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1048],"tags":[1805,1804],"class_list":["post-75299","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mysql-repair","tag-fix-incorrect-key-file-for-table","tag-incorrect-key-file-for-table","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fix MySQL Error \u201cIncorrect Key File for Table\u201d \u2013 Solutions<\/title>\n<meta name=\"description\" content=\"Resolve MySQL \u201cIncorrect key file for table\u201d error by fixing tmpdir space, repairing table, or using MySQL repair software.\" \/>\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\/mysql-error-incorrect-key-file-on-table\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fix MySQL Error \u201cIncorrect Key File for Table\u201d \u2013 Solutions\" \/>\n<meta property=\"og:description\" content=\"Resolve MySQL \u201cIncorrect key file for table\u201d error by fixing tmpdir space, repairing table, or using MySQL repair software.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-24T11:52:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-26T12:47:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.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\/mysql-error-incorrect-key-file-on-table\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\"},\"author\":{\"name\":\"Charanjeet Kaur\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2\"},\"headline\":\"How to Fix MySQL \u201cIncorrect Key File for Table\u201d Error\",\"datePublished\":\"2021-02-24T11:52:29+00:00\",\"dateModified\":\"2025-08-26T12:47:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\"},\"wordCount\":665,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg\",\"keywords\":[\"fix incorrect key file for table\",\"incorrect key file for table\"],\"articleSection\":[\"MySQL Database Repair\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\",\"name\":\"Fix MySQL Error \u201cIncorrect Key File for Table\u201d \u2013 Solutions\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg\",\"datePublished\":\"2021-02-24T11:52:29+00:00\",\"dateModified\":\"2025-08-26T12:47:35+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2\"},\"description\":\"Resolve MySQL \u201cIncorrect key file for table\u201d error by fixing tmpdir space, repairing table, or using MySQL repair software.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg\",\"width\":1000,\"height\":600,\"caption\":\"fix MySQL error incorrect Key file for table\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix MySQL \u201cIncorrect Key File for Table\u201d Error\"}]},{\"@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":"Fix MySQL Error \u201cIncorrect Key File for Table\u201d \u2013 Solutions","description":"Resolve MySQL \u201cIncorrect key file for table\u201d error by fixing tmpdir space, repairing table, or using MySQL repair software.","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\/mysql-error-incorrect-key-file-on-table\/","og_locale":"en_US","og_type":"article","og_title":"Fix MySQL Error \u201cIncorrect Key File for Table\u201d \u2013 Solutions","og_description":"Resolve MySQL \u201cIncorrect key file for table\u201d error by fixing tmpdir space, repairing table, or using MySQL repair software.","og_url":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2021-02-24T11:52:29+00:00","article_modified_time":"2025-08-26T12:47:35+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.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\/mysql-error-incorrect-key-file-on-table\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/"},"author":{"name":"Charanjeet Kaur","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2"},"headline":"How to Fix MySQL \u201cIncorrect Key File for Table\u201d Error","datePublished":"2021-02-24T11:52:29+00:00","dateModified":"2025-08-26T12:47:35+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/"},"wordCount":665,"commentCount":0,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg","keywords":["fix incorrect key file for table","incorrect key file for table"],"articleSection":["MySQL Database Repair"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/","url":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/","name":"Fix MySQL Error \u201cIncorrect Key File for Table\u201d \u2013 Solutions","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg","datePublished":"2021-02-24T11:52:29+00:00","dateModified":"2025-08-26T12:47:35+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/4bcf0d3fb4f61fce73560518655de4f2"},"description":"Resolve MySQL \u201cIncorrect key file for table\u201d error by fixing tmpdir space, repairing table, or using MySQL repair software.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2021\/02\/How-to-Fix-MySQL-Database-Error-Incorrect-Key-File-for-Table.jpg","width":1000,"height":600,"caption":"fix MySQL error incorrect Key file for table"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/mysql-error-incorrect-key-file-on-table\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix MySQL \u201cIncorrect Key File for Table\u201d Error"}]},{"@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\/75299","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=75299"}],"version-history":[{"count":9,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/75299\/revisions"}],"predecessor-version":[{"id":185178,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/75299\/revisions\/185178"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/75322"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=75299"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=75299"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=75299"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}