I'm getting the following error:
Arithmetic overflow error converting expression to data type datetime.
Here is the UPDATE Query:
The field parri_passu_debt in the balance table has a data type money. How can I get a datetime overflow?
Been at this a while.
Arithmetic overflow error converting expression to data type datetime.
Here is the UPDATE Query:
Code:
Declare
@record_number int,
@parri_passu_debt money
Set @record_number = 4792
Set @parri_passu_debt = 10
UPDATE balance
SET parri_passu_debt = @parri_passu_debt
WHERE record_number = @record_number
The field parri_passu_debt in the balance table has a data type money. How can I get a datetime overflow?
Been at this a while.