How to fix the Oracle error ORA-06554: package DBMS_STANDARD must be created before using PL/SQL?
In this post, you’ll learn more about the Oracle ErrorORA-06554: package DBMS_STANDARD must be created before using PL/SQL with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-06554: package DBMS_STANDARD must be created before using PL/SQL
Reason for the Error ORA-06554: package DBMS_STANDARD must be created before using PL/SQL
The DBMS specific extensions to PL/SQL’s package “STANDARD” are in package “DBMS_STANDARD”. This package must be created before using PL/SQL.
How to fix the Error ORA-06554: package DBMS_STANDARD must be created before using PL/SQL ?
You can fix this error in Oracle by following the below steps
Create package “DBMS_STANDARD”. The source for this PL/SQL stored package is provided with the distribution.
Leave Your Comment