mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-23 19:58:02 -08:00
11 lines
554 B
Bash
11 lines
554 B
Bash
# *****************************************************************************
|
|
# BASICS
|
|
# *****************************************************************************
|
|
|
|
mysqldump -h hostname -u username -p database_name -P port > file.sql # Export database
|
|
mysql -u username -p database_name < file.sql # Import database
|
|
|
|
SHOW PROCESSLIST; # Show you any queries that are currently running or in the queue to run
|
|
|
|
GRANT ALL PRIVILEGES ON prospecwith.* TO 'power'@'localhost' WITH GRANT OPTION; # Grant all privileges on database
|