UPDATE dbtab SET ...
without a WHERE
condition changes all the entries of the table. Check whether dataset to be changed
can be limited by a suitable WHERE
condition.
Noncompliant code example
UPDATE COUNTRIES SET NAME=country_name.
Compliant solution
UPDATE COUNTRIES SET NAME=country_name WHERE CODE=country_code.