Hi,
I'm running SQL Server Version 8.00.194 on Windows 2000.
I am am running this query:
select TOP 2000
TheoVolImplied
from OptionTrades
where ReutersSymbol = 'IBM.N'
and TheoVolImplied > 0.0
TheoVolImplied is of type float, precision 15, length 8.
When I run this query I get this error:
Server: Msg 3628, Level 16, State 1, Line 1
A floating point exception occurred in the user process. Current
transaction is canceled.
If I run this query:
select TOP 2000
TheoVolImplied
from OptionTrades
where TheoVolImplied > 0.0
It works fine with no problems.
If I run this query:select TOP 2000
TheoVolImplied
from OptionTrades
where ReutersSymbol = 'IBM.N'
It works fine with no problems.
Anyone have any ideas about what might be wrong?
I'm running SQL Server Version 8.00.194 on Windows 2000.
I am am running this query:
select TOP 2000
TheoVolImplied
from OptionTrades
where ReutersSymbol = 'IBM.N'
and TheoVolImplied > 0.0
TheoVolImplied is of type float, precision 15, length 8.
When I run this query I get this error:
Server: Msg 3628, Level 16, State 1, Line 1
A floating point exception occurred in the user process. Current
transaction is canceled.
If I run this query:
select TOP 2000
TheoVolImplied
from OptionTrades
where TheoVolImplied > 0.0
It works fine with no problems.
If I run this query:select TOP 2000
TheoVolImplied
from OptionTrades
where ReutersSymbol = 'IBM.N'
It works fine with no problems.
Anyone have any ideas about what might be wrong?
Comment