Advantage Error Guide
Problem: The SQL engine detected a division by zero error while executing the statement.
Solution: Modify the SQL statement so that it does not produce division by zero errors. If, for example, your statement is "SELECT 1.0 / value FROM mytable", you might want to add a WHERE clause of the form "WHERE value <> 0" to avoid division by zero.