We're running a MySQL 5.5.29 server in Production. If I do:
SHOW GLOBAL STATUS;
I'm not getting the status variable 'Innodb_buffer_pool_bytes_data' which according to the official documentation for this version should be there. What am I missing here?
mysql> SHOW GLOBAL STATUS where variable_name IN ('Innodb_buffer_pool_bytes_data');is working perfectly for me. – atokpas May 04 '17 at 08:40ERROR 1054 (42S22) at line 1: Unknown column 'Innodb_buffer_pool_bytes_data' in 'where clause'. But this is another problem. There is just no such statvar!? – user214259 May 04 '17 at 08:54