XAMPP MySQL Shutdown: Fatal error: Can’t open and lock privilege tables: Table ‘.\mysql\db’
Mar 13, 2024 - by kurinchilamp / MySql / Post Comment
Step 1: Go to C:\xampp\mysql. Make sure you are in the correct file location.
Step 2: Backup the data folder by making a copy of the folder
Step 3: Extract the "mysql" folder from C:\xampp\mysql\backup.
Step 4: Replace the mysql folder inside C:\xampp\mysql\data\
Step 5: Restart MySQL service from XAMPP
Continue Reading
Backup Types
Apr 28, 2010 - by kurinchilamp / MySql / Post Comment
Full backup
Full backup is process of backing up ALL data.
First step towards all other types of backup
Backup time will be longer
Restore operation takes less time
Differential backup
Differential backup is the process of backing up data that has changed since the last FULL backup.
Requires file maintenance as the backup file will be of similar size or larger than its previous backup
Longer backup time than incremental backup
Faster restoration than incremental backup
Incremental backup
Incremental backup is the process of backing up data that has changed since the last Full, Incremental or Differential backup
Takes lesser backup time as it will have small data to archive
Takes longer restoration time
Mirror backup
Mirror backup is similar to full backup and is a direct copy of the files/folders
Files are not compressed in zip files and are not protected with password. They remain the mirror or exact copy of the source.
Continue Reading