|
ORA-06550, ORA 6550 error is a generic error that indicates the line number at which the error has occured. This error is followed by a descriptive message that actually points to the type of oracle error that has occurred
ORA-06550:line string, column string:string
ORA-06550 Cause:
A PL/SQL compilation error has occurred. The numbers given for line and column are the location in the PL/SQL block where the error occurred.
ORA-06550 Action:
Refer to the following PL/SQL messages for more information about the error.
The ORA-06550 error points to the location of the syntax error and this error is followed by a more descriptive message
ORA-06550: line 14, column 27:PLS-00302: component 'MY_DATABASE' must be declared
ORA-06550: line 14, column 12:PL/SQL:Statement ignored
ORA-06550: line 12, column 2:PLS-00302: component 'MY_SITE' must be declared
ORA-06550: line 12, column 4:PL/SQL:Statement ignored
|