Closed KidProtect closed 6 months ago
Thank you.
For future reference: solution seems to be in manually adding SET sql_safe_updates=0;
before the line which gets specified in error, then add SET sql_safe_updates=1;
after that line.
In my case it looked something like this:
SET sql_safe_updates=0;
UPDATE IGNORE creature_template a INNER JOIN temp_entries b ON a.entry=(b.entry DIV 100) [...]
SET sql_safe_updates=1;
Using Debian 12 with MariaDB. InstallFullDB.sh script fails when loading a completely new database.