mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-22 12:55:21 +00:00
9 lines
438 B
Bash
9 lines
438 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
|