ORA-06550: line num, column num: str ora error code 6550
FranklinFaces.com
FranklinFaces.com - Oracle & SQL Server Database Forums for all IT Professionals
 Home          Members     Calendar     Who's On

Welcome Guest ( Login | Register )
        



ORA-06550: line num, column num: str ora... Expand / Collapse
Message
Posted 6/14/2010 3:46:33 PM Post #332
 

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being
Ora Error Code ORA-06550: line num, column num: str

Error:

ORA-06550: line num, column num: str

Cause:

You tried to compile a block of PLSQL code, but a compilation error occurred.

Action:

The options to resolve this Oracle error are:
  1. Refer to the line and column numbers (in the error message) to find the compilation error and correct it. Then try recompiling your code.

Posted 6/14/2010 3:47:22 PM Post #333
 

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being
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

Posted 6/14/2010 3:48:53 PM Post #334
 

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being

ORA-06550 and ORA-06502

Two errors that continuously dog developers and dba's alike are ORA-06550 and ORA-06502. These are due to code issues within the PL/SQL that has been developed and a good explanation of the same is available at the locations below.

ORA-06550:line string, column string:string

ORA-06502 :Text: PL/SQL: numeric or value error
Posted 6/14/2010 3:51:22 PM Post #335
 

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being
You get this error when attempting to add, edit or delete a record in your application:

Microsoft Internet Explorer

Unable to create record.  ORA-06550: line XX, column YY:

PLS-0905: object ZZZ is invalid

ORA-06550: line XX, column YY:

PL/SQL: Statement ignored.

This error occurs when your application’s stored procedures are not functioning properly at application run-time.

Solution

Step 1:  Change your application to generate inline SQL instead of stored procedures via the Application Wizard.

Step 2:  Build and run your application.

 

Posted 6/14/2010 3:52:56 PM Post #336
 

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being

Resolving error ORA-06550

    • Digg This
    • Stumble
    • Delicious
    I have problems when executing this sentence:
    SQL> executedbms_logmnr_d.build(options=>dbms_logmnr_d.store_in_redo_logs); 
    BEGINdbms_logmnr_d.build(options=>dbms_logmnr_d.store_in_redo_logs); 
    END;                                                   
    * ERROR at line 1: 
    ORA-06550: line 1, column 50: 
    PLS-00302: component 'STORE_IN_REDO_LOGS' must be declared 
    ORA-06550: line 1, column 7: 
    PL/SQL: Statement ignored
    Posted 6/14/2010 3:53:54 PM Post #337
     

    Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being
    It appears that you have a permissions problem with
    this package the the user that is running the package.
    First, make sure that the user running the statement
    above is given either the EXECUTE_CATALOG_ROLE role,
    or is granted EXECUTE on DBMS_LOGMNR_D and DBMS_LOGMNR
    directly.


    Another thing to try is prepending the package with
    the owner name, SYS.

    executeSYS.dbms_logmnr_d.build(options=>SYS.dbms_logmnr_d.store_in_redo_logs);

    Finally, if you are still having problems, sign on to
    the system as SYS and run the following commands:
    @?/rdbms/admin/dbmslmd.sql@?/rdbms/admin/dbmslm.sql
    « Prev Topic | Next Topic »


    Reading This Topic Expand / Collapse
    Active Users: 0 (0 guests, 0 members, 0 anonymous members)
    No members currently viewing this topic.
    Forum Moderators: silencer

    Permissions Expand / Collapse

    All times are GMT -5:00, Time now is 9:13am

    Powered By InstantForum.NET v4.1.4 © 2012
    Execution: 0.084. 9 queries. Compression Disabled.
    Contextual Links