Answers for "RIBPS, Recommended InnoDB Buffer Pool Size"

0

RIBPS, Recommended InnoDB Buffer Pool Size

SELECT CEILING(Total_InnoDB_Bytes*1.6/POWER(1024,3)) RIBPS FROM
(SELECT SUM(data_length+index_length) Total_InnoDB_Bytes
FROM information_schema.tables WHERE engine='InnoDB') A;
Posted by: Guest on October-10-2021

Browse Popular Code Answers by Language