How to fix the Oracle error PCC-00109: Dynamic SQL and PL/SQL are Oracle extensions to ANSI SQL?

In this post, you’ll learn more about the Oracle ErrorPCC-00109: Dynamic SQL and PL/SQL are Oracle extensions to ANSI SQL with the details on why you receive this error and the possible solution to fix it.

Oracle Error Description

PCC-00109: Dynamic SQL and PL/SQL are Oracle extensions to ANSI SQL

Reason for the Error PCC-00109: Dynamic SQL and PL/SQL are Oracle extensions to ANSI SQL

Cause: An Oracle extension to the ANSI/ISO SQL standard was used. Specifically, dynamic SQL or embedded PL/SQL was used. For example, the offending code might look like: EXEC SQL EXECUTE BEGIN SELECT … END; END-EXEC; This informational message is issued by the FIPS Flagger when FIPS=YES.

How to fix the Error PCC-00109: Dynamic SQL and PL/SQL are Oracle extensions to ANSI SQL ?

You can fix this error in Oracle by following the below steps

Action: No action required. However, for ANSI/ISO compliance, do not use dynamic SQL or embedded PL/SQL.

Tags :

Leave Your Comment