Created
September 1, 2010 15:58
-
-
Save guenter/560908 to your computer and use it in GitHub Desktop.
MySQL commands I forget all the time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Reset the query cache | |
RESET QUERY CACHE; | |
-- Closes all open tables, forces all tables in use to be closed, and flushes the query cache. | |
FLUSH TABLES; | |
-- Show character set in use by client, server, etc. | |
SHOW VARIABLES LIKE 'character_set%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment