Subject Re: Absolutely boring...
Author Roman Rokytskyy
> Could anybody tell me why I have this boring error when trying to
> insert anything in my table, just 2 fields are NOT NULL, which I
> fill properly (considering the foreign key) BUT this error comes
> (the problem is that can be one of three things wrong, but which
> one?):
>
> Arithmetic overflow or division by zero has occored.
> arithmetic exception, numeric overflow, or string truncation

Check your domain definitions. Most likely you have some domain
defined as computed column with multiplication or division inside.
Also check your triggres if you have.

Roman