Tag: database
Store Emoji in MySQL DB
July 27, 2021
If you want to store Emoji characters in a MySQL DB, you need to update the table encoding. You can…
Database Data to Download Variables
November 24, 2015
Gets data from a MySql database, splits the data into separate columns, then uses one column in a URL to download something – and uses other column to name the file thats downloaded
Import All MySQL Sql Dumps in a Folder
December 1, 2008
This command will import all the MySQL sql dumps in the current folder. You can use this to restore your…
Backup All Databases in MySQL
August 24, 2007
Backup all files in /var/lib/mysql to another folder To restore, stop mysqld if it is running service stop mysqld Move…
MySQL Database Backup/Restore
March 17, 2007
This command can be used to backup MySQL database. mysqldump -u <User> -p <Database name> [<Table name>] > backup.sql This…
Recent Comments