{"id":142837,"date":"2023-07-19T12:17:42","date_gmt":"2023-07-19T12:17:42","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=142837"},"modified":"2024-01-04T05:18:08","modified_gmt":"2024-01-04T05:18:08","slug":"fix-mysql-error-code-144","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/","title":{"rendered":"How to Fix MySQL Error Code 144?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>The MySQL error code 144 indicates that a table is crashed and last repair has failed. This error can arise for various reasons. Typically, it may occur when the MySQL storage engine stops writing into the physical files (MYD and MYI). For example, it may happen that the server hosting the MySQL is suddenly shut down. It may also happen due to a lack of storage space. But not only that, even a bug could crash MySQL, corrupting the data. In such a situation, the data becomes accessible. Therefore, you need to recover the data as soon as possible. Below, we&rsquo;ll be discussing the solutions to fix the MySQL error 144 and recover the data.<\/p><h2 class=\"wp-block-heading\" id=\"solutions-to-fix-the-error-144-in-mysql-and-recover-the-data\"><strong>Solutions to Fix the Error 144 in MySQL and Recover the Data<\/strong><\/h2><p>Here are some solutions you can try to fix the MySQL error code 144 and recover the data.<\/p><h3 class=\"wp-block-heading\"><strong>Method 1: Use the MyISAMchk Command<\/strong><\/h3><p>The error 144: Table is crashed and the last repair failed can be fixed using <a href=\"https:\/\/www.stellarinfo.com\/blog\/repair-mysql-tables-using-mysqlcheck\/\" target=\"_blank\" rel=\"noreferrer noopener\">the <strong>MyISAMchk<\/strong> command<\/a> (as given below) in MySQL. The <a href=\"https:\/\/dev.mysql.com\/doc\/refman\/8.0\/en\/myisamchk.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">MyISAMChk<\/a> command analyzes and retrieves information about MyISAM tables (MYD and MYI).<\/p><pre class=\"wp-block-code has-background command_container\" style=\"background-color:#eeeeee\"><code>MyIsamchk warehouse.MYI\nMyIsamchk *.MYI<\/code><\/pre><p>The above command will provide a list of corrupted tables, with the relative errors.<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"839\" height=\"410\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/image-5.png\" alt=\"Codesnippet for corrupted tables\" class=\"wp-image-142840 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/image-5.png 839w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/image-5-300x147.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/image-5-768x375.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/image-5-150x73.png 150w\" sizes=\"auto, (max-width: 839px) 100vw, 839px\" \/><\/figure><p>You need to mark the table as checked if MySQL server is not running due to a crash.<\/p><p>This could be done by adding the parameter <strong>-update-state<\/strong>.<\/p><p>If you perform the check on more than one table, then it will show the relative errors for the corrupted ones.<\/p><p>Now, each corrupted MyISAM table must be fixed. For this, execute the same command specifying the parameters -r &ndash;q.<\/p><p>The &ndash;r parameter means &ldquo;recovery mode&rdquo; and the &ndash;q means &ldquo;quick recovery mode&rdquo;.<\/p><pre class=\"wp-block-code has-background command_container\" style=\"background-color:#eeeeee\"><code>MyIsamchk &ndash;r &ndash;q warehouse.MYI<\/code><\/pre><p>This will attempt to fix the index file without modifying the data.<\/p><p>If the data file contains everything and the &ldquo;delete links&rdquo; point to the correct locations within the data file, this should work and the table will get fixed.<\/p><p>Otherwise, execute the MyIsamchk command specifying only the &ndash;r parameter.<\/p><pre class=\"wp-block-code has-background command_container\" style=\"background-color:#eeeeee\"><code><code>MyIsamchk &ndash;r warehouse.MYI<\/code><\/code><\/pre><p>This time the incorrect lines and the deleted lines will be removed from the data file. The procedure will rebuild the index file.&nbsp;<\/p><p>If this step also fails, then run the command with the &ldquo;&ndash;safe-recover&rdquo; parameter.<\/p><pre class=\"wp-block-code has-background command_container\" style=\"background-color:#eeeeee\"><code>MyIsamchk &ndash;safe-recover warehouse.MYI<\/code><\/pre><p>This is a slower option and only handles some particular cases of data corruption.<\/p><h3 class=\"wp-block-heading\"><strong>Method 2: Use the TRUNCATE TABLE Command<\/strong><\/h3><p>If the above method fails, then you can use the TRUNCATE TABLE command. You can use this method if the index file is missing or the first 16 KB block in the index file contains invalid information.<\/p><p><strong>Caution:<\/strong> Before proceeding, make a copy of the data file (.myd).<\/p><p>You need to create a new empty index file (.myi). To create a new .myi file, enter the following command in the MySQL shell:<\/p><pre class=\"wp-block-code has-background command_container\" style=\"background-color:#eeeeee\"><code>$&gt; mysql db_name<\/code><\/pre><p><strong>Now, execute the following commands:<\/strong><\/p><pre class=\"wp-block-code has-background command_container\" style=\"background-color:#eeeeee\"><code>mysql&gt; SET <code>autocommit<\/code>=1;<br>mysql&gt; TRUNCATE TABLE tbl_name;<br>mysql&gt; quit<\/code><\/pre><p>Copy the saved data file to the created data file.<\/p><p>Now, again execute the <strong>MyIsamchk &ndash;r &ndash;q <\/strong>command.<\/p><p>This time the recovery procedure should work.<\/p><h3 class=\"wp-block-heading\"><strong>Method 3: Use the REPAIR TABLE Command<\/strong><\/h3><p>Another option is to use the <strong>REPAIR TABLE tbl_name <\/strong>command, specifying the USE_FRM parameter. If the .MYI index file is missing or the header of the file is corrupted, this option tells the MySQL database engine not to trust the information in the .MYI file header and to recreate it reading data from the data dictionary.<\/p><p>However, it is be noted that using the USE_FRM option could lead to negative consequences.<\/p><p>The current AUTO_INCREMENT value and the link to the deleted records are lost. The latter point has led to the fact that deleted space records subsequently remain unoccupied.<\/p><p>Since the information contained in the index file, such as the fact that the table is compressed or not, is not considered using this option, you may experience data loss by using the USE_FRM option.<\/p><h3 class=\"wp-block-heading\"><strong>Method 4: Use a MySQL Repair Tool<\/strong><\/h3><p>You can use a powerful <a href=\"https:\/\/www.stellarinfo.com\/mysql-repair.php\" target=\"_blank\" rel=\"noreferrer noopener\">MySQL repair tool<\/a> to repair a corrupted MySQL database. It can fix the error &ldquo;<strong>error 144<\/strong> and many other errors related to database corruption.<\/p><p>Stellar Repair for MySQL can repair and fix corrupt MySQL databases and restore all the database objects, such as tables, primary keys, views, triggers, etc., without changing the original database structure. This tool saves the repaired files in not only MySQL or MariaDB format, but also in various other formats, such as SQL Script, CSV, HTML, and XLS.<\/p><p>The software supports both MySQL tables &ndash; InnoDB and MyISAM. It also supports the repairing of MySQL and MariaDB databases created on Windows and Linux.<\/p><h2 class=\"wp-block-heading\" id=\"to-conclude\"><strong>To Conclude<\/strong><\/h2><p>The MySQL error code 144 means that the index file (.MYI) contains errors. Above, we have mentioned different ways to fix this error and recover the data. However, if the MySQL database is corrupted, then the best option is to use a powerful MySQL recovery software, such as <strong>Stellar Repair for MySQL<\/strong>. This software can easily repair the corrupted database and recover all the data with complete integrity.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The MySQL error code 144 indicates that a table is crashed and&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\">Continue reading <span class=\"screen-reader-text\">How to Fix MySQL Error Code 144?<\/span><\/a><\/p>\n","protected":false},"author":85,"featured_media":143058,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1048],"tags":[],"class_list":["post-142837","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mysql-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>Fix MySQL Error 144: Recover Data and Repair Crashed Tables<\/title>\n<meta name=\"description\" content=\"Learn how to resolve MySQL Error 144, repair crashed tables, and recover inaccessible data. Get step-by-step solutions now!\" \/>\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\/fix-mysql-error-code-144\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fix MySQL Error 144: Recover Data and Repair Crashed Tables\" \/>\n<meta property=\"og:description\" content=\"Learn how to resolve MySQL Error 144, repair crashed tables, and recover inaccessible data. Get step-by-step solutions now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-19T12:17:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-04T05:18:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.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=\"Bharat Bhushan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Bharat Bhushan\" \/>\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\/fix-mysql-error-code-144\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\"},\"author\":{\"name\":\"Bharat Bhushan\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a\"},\"headline\":\"How to Fix MySQL Error Code 144?\",\"datePublished\":\"2023-07-19T12:17:42+00:00\",\"dateModified\":\"2024-01-04T05:18:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\"},\"wordCount\":821,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg\",\"articleSection\":[\"MySQL Database Repair\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\",\"name\":\"Fix MySQL Error 144: Recover Data and Repair Crashed Tables\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg\",\"datePublished\":\"2023-07-19T12:17:42+00:00\",\"dateModified\":\"2024-01-04T05:18:08+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a\"},\"description\":\"Learn how to resolve MySQL Error 144, repair crashed tables, and recover inaccessible data. Get step-by-step solutions now!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg\",\"width\":1000,\"height\":600,\"caption\":\"MyISAMchk error 144\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fix MySQL Error Code 144?\"}]},{\"@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\/c2edd14c25759638c6a69f5aececf07a\",\"name\":\"Bharat Bhushan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g\",\"caption\":\"Bharat Bhushan\"},\"description\":\"Bharat Bhushan is an experienced technical Marketer working at Stellar Data Recovery - expertise in data care. He is skilled in Microsoft Exchange Database, MSSQL Database troubleshooting &amp; data warehousing. He is a Management Post Graduate having a strong grip in Technology &amp; certified in SAP-SD, Oracle 10g &amp; Informatica Powercenter 9.1.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/bharat-bhushan-311956144\/\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/bharat\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fix MySQL Error 144: Recover Data and Repair Crashed Tables","description":"Learn how to resolve MySQL Error 144, repair crashed tables, and recover inaccessible data. Get step-by-step solutions now!","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\/fix-mysql-error-code-144\/","og_locale":"en_US","og_type":"article","og_title":"Fix MySQL Error 144: Recover Data and Repair Crashed Tables","og_description":"Learn how to resolve MySQL Error 144, repair crashed tables, and recover inaccessible data. Get step-by-step solutions now!","og_url":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2023-07-19T12:17:42+00:00","article_modified_time":"2024-01-04T05:18:08+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg","type":"image\/jpeg"}],"author":"Bharat Bhushan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Bharat Bhushan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/"},"author":{"name":"Bharat Bhushan","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a"},"headline":"How to Fix MySQL Error Code 144?","datePublished":"2023-07-19T12:17:42+00:00","dateModified":"2024-01-04T05:18:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/"},"wordCount":821,"commentCount":0,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg","articleSection":["MySQL Database Repair"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/","url":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/","name":"Fix MySQL Error 144: Recover Data and Repair Crashed Tables","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg","datePublished":"2023-07-19T12:17:42+00:00","dateModified":"2024-01-04T05:18:08+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/c2edd14c25759638c6a69f5aececf07a"},"description":"Learn how to resolve MySQL Error 144, repair crashed tables, and recover inaccessible data. Get step-by-step solutions now!","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2023\/07\/MyISAMchk-Error-144.jpg","width":1000,"height":600,"caption":"MyISAMchk error 144"},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/fix-mysql-error-code-144\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fix MySQL Error Code 144?"}]},{"@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\/c2edd14c25759638c6a69f5aececf07a","name":"Bharat Bhushan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8371107c793354293acf244b899d7bf7f4209ee58e4305f3b195241bd426ef12?s=96&d=mm&r=g","caption":"Bharat Bhushan"},"description":"Bharat Bhushan is an experienced technical Marketer working at Stellar Data Recovery - expertise in data care. He is skilled in Microsoft Exchange Database, MSSQL Database troubleshooting &amp; data warehousing. He is a Management Post Graduate having a strong grip in Technology &amp; certified in SAP-SD, Oracle 10g &amp; Informatica Powercenter 9.1.","sameAs":["https:\/\/www.linkedin.com\/in\/bharat-bhushan-311956144\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/bharat\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/142837","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\/85"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=142837"}],"version-history":[{"count":15,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/142837\/revisions"}],"predecessor-version":[{"id":158624,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/142837\/revisions\/158624"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/143058"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=142837"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=142837"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=142837"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}