ORA-06557 null values are not allowed for any parameters to pipe icd's
Description:
ORA-06557 null values are not allowed for any parameters to pipe icd’s
Cause:
Internal error from the DBMS_PIPE package.
Description:
ORA-06557 null values are not allowed for any parameters to pipe icd’s
Cause:
Internal error from the DBMS_PIPE package.
Description:
ORA-06558 buffer in dbms_pipe package is full. No more items allowed
Cause:
The pipe buffer size has been exceeded.
Description:
ORA-06559 wrong datatype requested, string, actual datatype is string
Cause:
The sender put different datatype on the pipe than that being requested (package DBMS_PIPE). The numbers are:
Action: Check that the sender and receiver agree on the number and types of items placed on the pipe.
Description:
ORA-06561 given statement is not supported by package DBMS_SQL
Cause:
An attempt was made to parse an unsupported statement using procedure PARSE provided by package DBMS_SQL.
Description:
ORA-06562 type of out argument must match type of column or bind variable
Cause:
An attempt was made to get the value of a column or a bind variable by calling procedure COLUMN_VALUE or VARIABLE_VALUE of package DBMS_SQL but the type of the given out argument where to place the value is different from the type of the column or bind variable that was previously defined by calling procedure DEFINE_COLUMN (for defining a column) or BIND_VARIABLE (for binding a bind variable) of package DBMS_SQL.
Description:
ORA-06563 top level procedure/function specified, cannot have subparts
Cause:
The name to be resolved was specified with three parts (a.b.c) but the a.b part resolves to a top level procedure or function (which do not have nested procedures). This can also happen with a two-part name, a.b, where a is a synonym for a top level package or procedure.
Description:
ORA-06564 object string does not exist
Cause:
The named object could not be found. Either it does not exist or you do not have permission to access it.
Description:
ORA-06565 cannot execute string from within stored procedure
Cause:
The named procedure cannot be executed from within a stored procedure, function or package. This function can only be used from PL/SQL anonymous blocks.
Description:
ORA-06566 invalid number of rows specified
Cause:
An invalid number of rows was specified in a call to the procedure DEFINE_COLUMN in the package DBMS_SQL. For a given parsed statement in a given cursor, all columns must be defined to have the same number of rows, so all the calls to DEFINE_COLUMN must specify the same number of rows.
Description:
ORA-06567 invalid number of values specified
Cause:
An invalid number of values to be bound was specified in a call to the procedure BIND_VARIABLE in the package DBMS_SQL. In order to execute a given parsed statement in a given cursor, the same number of values must have been bound for all bind variables, so when EXECUTE is called, the latest calls to BIND_VARIABLE must have specified the same number of values to be bound for all bind variables.