R
R
run1822020-01-19 14:50:39
SQL
run182, 2020-01-19 14:50:39

Why does the Divide by zero error encountered error appear?

1) I start the procedure
2) The procedure at the end of the execution gives an error on the line with the code

SET @Gdpks_Daugiklis = @Gdpks_Svoris/@Gdpks_PusgaminioIseiga;

3) I checked that the procedure was completed to the end, that is, the code after this line also worked despite the error.
4) I checked the data that @Gdpks_PusgaminioIseiga takes before the line with the error - they are not equal to 0, the value is 1000.0002 or 999.01, and the like, but they are never equal to 0.
What could be the error and why, despite the error, the code was still executed anyway?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
K
Konstantin Tsvetkov, 2020-01-19
@tsklab

Will not "run anyway":

SET ARITHABORT ON 
SET ANSI WARNINGS OFF

Or the error will not appear:
SET @Gdpks_Daugiklis = @Gdpks_Svoris / NULLIF( @Gdpks_PusgaminioIseiga, 0 )

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question