Created
August 14, 2018 23:11
-
-
Save redneurocom/5a0535ea58c92401611c36f9ec2f2a15 to your computer and use it in GitHub Desktop.
innodb buffer size
This file contains hidden or 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
| SELECT (PagesData*PageSize)/POWER(1024,3) DataGB FROM | |
| (SELECT variable_value PagesData | |
| FROM information_schema.global_status | |
| WHERE variable_name='Innodb_buffer_pool_pages_data') A, | |
| (SELECT variable_value PageSize | |
| FROM information_schema.global_status | |
| WHERE variable_name='Innodb_page_size') B; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment