The %S_MSG '%.*ls' is out of the range for numeric representation (maximum precision 38).

Error Message:
Msg 1007, Level 15, State 1, Line 3
The %S_MSG ‘%.*ls’ is out of the range for numeric representation (maximum precision 38).

Severity level:
15.

Description:
This error message appears when a numerischer Wert ausserhalb des Bereiches für die Darstellung numerischer Werte liegt.

Consequences:
The SQL statement cannot be parsed and further execution is stopped.

Resolution:
Errors of the Severity Level 15 are generated by the user and can be fixed by the SQL Server user. The statement cannot be executed this way. The value must be within the valid range for numerical representation.

Versions:
All versions of SQL Server.

Example(s):
DECLARE @f1 float;

SET @f1 = 0.000000000000000000000000000000000000001
SELECT @f1;

Remarks:
In the above example we try to assign a value that is outside the range for numerical representation to the variable @f1. This raises the error.

]]>

Leave a comment

Your email address will not be published.