I use the following SQL query successfully from within phpMyAdmin's SQl query window:

Code:
UPDATE live_products_description SET products_description = REPLACE (
products_description,
'OldKeyword',
'NewKeyword');
When I try to run the same from Admin Panel > Tools > Install SQL Patches I get the following error message:

Failed: 1
ERROR: Cannot execute because table live_products_description does not exist. CHECK PREFIXES!
Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.

What do I need to adjust so that my client can run it directly from Zen Cart's Admin Panel?

Thanks.