Medium severityconfiguration
Power BI Refresh Error:
1193
What does this error mean?
A SET statement references a MySQL system variable that does not exist in the installed MySQL version.
Common causes
- 1Setting a variable that was added in a newer MySQL version than is installed
- 2Setting a variable that was removed or renamed between MySQL versions
- 3Typo in the variable name
- 4Using a MySQL 8.0 variable on a MySQL 5.7 server
How to fix it
- 1Step 1: Check if the variable exists in the current MySQL version: `SHOW VARIABLES LIKE '%variable_name%';`
- 2Step 2: Verify the MySQL version: `SELECT VERSION();` and check the variable's version support in MySQL documentation.
- 3Step 3: Use the correct variable name for the installed MySQL version — refer to the MySQL 8.0 or 5.7 system variable reference.
Frequently asked questions
Official documentation: https://dev.mysql.com/doc/mysql-errors/8.0/en/server-error-reference.html