About 178,000 results
Open links in new tab
  1. Restoring MySQL database from physical files - Stack Overflow

    A MySQL MyISAM table is the combination of three files: The FRM file is the table definition. The MYD file is where the actual data is stored. The MYI file is where the indexes created on the …

  2. Recovering mysql database from data folder backup

    Copy all your database folders from your old xampp (except performance_schema, mysql and phpmyadmin folder) to new xampp in xampp\mysql\data Copy ib_logfile0, ib_logfile1, ibdata1 …

  3. How to recover MySQL database from .myd, .myi, .frm files

    Sep 14, 2016 · Stop the SQL server instance in the current SQL instance Go to the datafolder located at "C:\Program Data\MySQL\MSQLServer5.1\Data" Paste the ibdata1 and the folder of …

  4. innodb - recover mysql database from ibdata1 - Stack Overflow

    If in the first step you incremented your innodb_force_recovery => 4, you need to set it below 4. As of 5.6.15, an innodb_force_recovery setting of 4 or greater places InnoDB in read-only mode.

  5. How to recover just deleted rows in mysql? - Stack Overflow

    Aug 3, 2011 · For InnoDB tables, Percona has a recovery tool which may help. It is far from fail-safe or perfect, and how fast you stopped your MySQL server after the accidental deletes has …

  6. How to fix Error: MySQL shutdown unexpectedly on Xampp due to …

    The solution is Removing the aria_log_control file allowed MariaDB to start again. You can find this file in \xampp\mysql\data. Then restart or start xammp.

  7. xampp - MySql stops unexpectedly - Stack Overflow

    Jul 3, 2019 · Seems that there is corruption in MySQL log and/or data files, one way to workaround this problem is to start MySQL in recovery mode. From my.ini in windows (or …

  8. mysql - InnoDB Corruption in Xampp - Stack Overflow

    Jun 3, 2015 · The ibdata1 file contains the tablespace information and other metadata about your Mysql database (s). You can try using the innodb_force_recovery = 1 all the way to …

  9. Restore table structure from frm and ibd files - Stack Overflow

    Nov 11, 2014 · From mysql 8.0 there is no .frm files its just .ibd files which contain s both the structure and the data. I use this tool ibd2sql to recover my db data. this is a python script that …

  10. Restore MySQL database using only .frm and .ibd files

    Aug 24, 2018 · Closed 7 years ago. I accidentally uninstalled my XAMPP and MySQL with InnoDB. How can I restore the files without having previously exported the database? For …