How to fix the Oracle error PCC-00101: Lower case ‘e’ in floating point number is not ANSI?
In this post, you’ll learn more about the Oracle ErrorPCC-00101: Lower case ‘e’ in floating point number is not ANSI with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PCC-00101: Lower case ‘e’ in floating point number is not ANSI
Reason for the Error PCC-00101: Lower case ‘e’ in floating point number is not ANSI
Cause: A Oracle extension to the ANSI/ISO SQL standard was used. Specifically, a lowercase ‘e’ was used in scientific notation. For example, the offending code might look like: maxnum = 10e38; This informational message is issued by the FIPS Flagger when FIPS=YES.
How to fix the Error PCC-00101: Lower case ‘e’ in floating point number is not ANSI ?
You can fix this error in Oracle by following the below steps
Action: No action required. However, for ANSI/ISO compliance, use an uppercase ‘E’ in scientific notation.
Leave Your Comment