Detailed map traversal, teach you to master the complex gremlin query debugging method>>>
I don’t like to say goodbye, because sometimes I know that the next goodbye is far away or no goodbye
The error is as follows:
ERROR 1615 (HY000) at line 406 in file: 'update-mysql.sql': Prepared statement needs to be re-prepared
This is where a stored procedure is called. The solution is to reset the values of the two cache size variables of MySQL, as follows:
table_ open_ Cache: the size of the table cache
table_ definition_ Cache: table definition information cache
View the values of the two configuration variables:
SHOW VARIABLES LIKE '%table_open_cache%';
SHOW VARIABLES LIKE '%table_definition_cache%';
Reset the size of the current value:
mysql> set global table_open_cache=16384;
mysql> set global table_definition_cache=16384;
After setting, you can check the variable value again
Then re execute the script file that called the stored procedure
Similar Posts:
- [Solved] MySQL Error: ERROR 1615 (HY000): Prepared statement needs to be re-prepared
- The ‘INFORMATION_SCHEMA.GLOBAL_STATUS’ feature is disabled; see the documentation for …
- The solution of the table is full in MySQL
- MySQL exclude error 1114 holmium HY000 41 holmium“
- How to Solve Mysql Error 1206: The total number of locks exceeds the lock table size
- [Solved] MYSQL5.6 Error: ERROR 1709 (HY000): Index column size too large. The maximum column size is 767 bytes.
- When debugging stored procedure, ora-20000: oru-10027: buffer overflow is prompted
- Loading local data is disabled; this must be enabled on both the client and server sides
- How to Solve MYSQL ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository