MySQL Error number: MY-013189; Symbol: ER_SYS_VAR_NOT_FOUND; SQLSTATE: HY000 报错 故障修复 远程处理

文档解释

Error number: MY-013189; Symbol: ER_SYS_VAR_NOT_FOUND; SQLSTATE: HY000

Message: Variable name ‘%s’ not found.

Error MY-013189 ( ER_SYS_VAR_NOT_FOUND) is thrown by MySQL when a query is performed which references a system variable that does not exist.

Error Message:

SQLSTATE[HY000]: General error: 13183 Variable ‘%s’ not found.

Explanations:

Error MY-013189 occurs when a variable is referenced that does not exist. This might happen when the variable is misspelled, or not declared.

Common cases:

When a system variable is defined, or someone is trying to change the value of an existing system variable, they might mistype the variable name.

When a system variable is referenced but is not defined, it leads to this error message.

Solution:

To resolve this issue, make sure to use the correct spelling and case of the system variable name in the query. When defining a system variable, make sure that the variable is known in the scope of the session.

Check for typos in the variable name and make sure the variable is actually defined.

香港美国云服务器首选后浪云,2H2G首月10元开通。
后浪云(www.IDC.Net)提供简单好用,价格厚道的香港/美国云服务器和独立服务器。IDC+ISP+ICP资质。ARIN和APNIC会员。成熟技术团队15年行业经验。

THE END