Error ORA-600, please help me

Hello,
My computer planted while I had the base of gone up datum. I not more to open my data base: error ora-600, how to make to remedy this probleme??
Thank you in advance

plz go in some detail ,what do u want to do while get this error
peeyush

Similar Messages

  • I am getting error in below code  ERROR ORA-06530 Please help

    function get_master_client3(i_gid                    IN VARCHAR2
                                       , i_status IN VARCHAR2
                                       , i_legal_name               IN     VARCHAR2
                                       , i_conformed_name IN VARCHAR2
                                       , i_alias_name               IN VARCHAR2
                                       , i_former_name           IN VARCHAR2
                                       , i_address                    IN     VARCHAR2
                                       , i_city                    IN     VARCHAR2
                                       , i_postal                    IN     VARCHAR2
                                       , i_state                    IN VARCHAR2
                                       , i_country_code          IN      VARCHAR2
                                       , i_incorporation          IN     VARCHAR2
                                       , i_reg_type               IN     VARCHAR2
                                       , i_reg_code               IN     VARCHAR2
                                       , i_industry_code          IN     VARCHAR2
                                       , i_source_system          IN     VARCHAR2
                                       , i_client_type               IN     VARCHAR2
                                       , i_include_branches IN VARCHAR2 )
    return types.ref_cursor AS
    gcr_cursor types.ref_cursor;
    o_gcr_cursor types.ref_cursor;
    Type gcr_cursor_record_t is record (UICON varchar2(1000),COMPANYGID varchar2(1000),COMPANYNAME varchar2(1000),
    DOMICILE varchar2(1000), ULTIMATENAME varchar2(1000) ,ULTIMATEGID varchar2(1000) , ISO2CODE varchar2(1000), ENTITY varchar2(1000) ,
    SHORTNAME varchar2(1000));
    Type gcrtableType_t is table of gcr_cursor_record_t INDEX BY PLS_INTEGER;
    GCRTABLE_t gcrtableType_t;
    GCRTABLE gcrtableType := gcrtableType(gcr_cursor_record(null,null,null,null,null,null,null,null,null));
    -- i integer;
    begin
    gcr_cursor := GCR.get_master_client( i_gid, i_status , i_legal_name, i_conformed_name, i_alias_name, i_former_name
                                                 , i_address     , i_city, i_postal, i_state     , i_country_code, i_incorporation, i_reg_type, i_reg_code
                                                      , i_industry_code, i_source_system, i_client_type     , i_include_branches );
    fetch gcr_cursor bulk collect into GCRTABLE_t;
    for i in 1..GCRTABLE_t.COUNT LOOP
    GCRTABLE.EXTEND;
    dbms_output.put_line(GCRTABLE_t(i).UICON);
    GCRTABLE(i).UICON := 0 ;
    GCRTABLE(i).UICON := GCRTABLE_t(i).UICON;
    GCRTABLE(i).COMPANYGID := GCRTABLE_t(i).COMPANYGID; ******************************** ERROR at this LIne ORA-06530
    -- GCRTABLE(i).COMPANYNAME := GCRTABLE_t(i).COMPANYNAME;
    -- GCRTABLE(i).DOMICILE := GCRTABLE_t(i).DOMICILE;
    -- GCRTABLE(i).ULTIMATENAME := GCRTABLE_t(i).ULTIMATENAME;
    -- GCRTABLE(i).ULTIMATEGID := GCRTABLE_t(i).ULTIMATEGID;
    -- GCRTABLE(i).ISO2CODE := GCRTABLE_t(i).ISO2CODE;
    -- GCRTABLE(i).ENTITY := GCRTABLE_t(i).ENTITY;
    -- GCRTABLE(i).SHORTNAME := GCRTABLE_t(i).SHORTNAME;
    -- GCRTABLE(i) := gcrtableType(GCRTABLE_t(i).UICON,GCRTABLE_t(i).COMPANYGID,GCRTABLE_t(i).COMPANYNAME,GCRTABLE_t(i).DOMICILE,GCRTABLE_t(i).ULTIMATENAME,GCRTABLE_t(i).ULTIMATEGID,GCRTABLE_t(i).ISO2CODE,GCRTABLE_t(i).ENTITY,GCRTABLE_t(i).SHORTNAME);
    -- GCRTABLE(i) := gcrtableType(gcr_cursor_record(null,null,null,null,null,null,null,null,null));
    END LOOP;

    I'm sure you understand that "line 1236" doesn't mean much to any of us?
    For starters, I think you are missing an "END;" to it all, aren't you?
    Here is your code auto-formatted, at least:
    /* Formatted on 15.04.2009 10:38:41 (QP5 v5.114.809.3010) */
    FUNCTION get_master_client3 (i_gid                IN VARCHAR2,
                                 i_status             IN VARCHAR2,
                                 i_legal_name         IN VARCHAR2,
                                 i_conformed_name     IN VARCHAR2,
                                 i_alias_name         IN VARCHAR2,
                                 i_former_name        IN VARCHAR2,
                                 i_address            IN VARCHAR2,
                                 i_city               IN VARCHAR2,
                                 i_postal             IN VARCHAR2,
                                 i_state              IN VARCHAR2,
                                 i_country_code       IN VARCHAR2,
                                 i_incorporation      IN VARCHAR2,
                                 i_reg_type           IN VARCHAR2,
                                 i_reg_code           IN VARCHAR2,
                                 i_industry_code      IN VARCHAR2,
                                 i_source_system      IN VARCHAR2,
                                 i_client_type        IN VARCHAR2,
                                 i_include_branches   IN VARCHAR2)
       RETURN types.ref_cursor
    AS
       gcr_cursor     types.ref_cursor;
       o_gcr_cursor   types.ref_cursor;
       TYPE gcr_cursor_record_t
       IS
          RECORD (
             UICON          varchar2 (1000),
             COMPANYGID     varchar2 (1000),
             COMPANYNAME    varchar2 (1000),
             DOMICILE       varchar2 (1000),
             ULTIMATENAME   varchar2 (1000),
             ULTIMATEGID    varchar2 (1000),
             ISO2CODE       varchar2 (1000),
             ENTITY         varchar2 (1000),
             SHORTNAME      varchar2 (1000)
       TYPE gcrtableType_t
       IS
          TABLE OF gcr_cursor_record_t
             INDEX BY PLS_INTEGER;
       GCRTABLE_t     gcrtableType_t;
       GCRTABLE gcrtableType
             := gcrtableType (gcr_cursor_record (NULL,
                                                 NULL,
                                                 NULL,
                                                 NULL,
                                                 NULL,
                                                 NULL,
                                                 NULL,
                                                 NULL,
                                                 NULL)) ;
        -- i integer;
    BEGIN
       gcr_cursor :=
          GCR.get_master_client (i_gid,
                                 i_status,
                                 i_legal_name,
                                 i_conformed_name,
                                 i_alias_name,
                                 i_former_name,
                                 i_address,
                                 i_city,
                                 i_postal,
                                 i_state,
                                 i_country_code,
                                 i_incorporation,
                                 i_reg_type,
                                 i_reg_code,
                                 i_industry_code,
                                 i_source_system,
                                 i_client_type,
                                 i_include_branches);
       FETCH gcr_cursor BULK COLLECT INTO   GCRTABLE_t;
       FOR i IN 1 .. GCRTABLE_t.COUNT
       LOOP
          GCRTABLE.EXTEND;
          DBMS_OUTPUT.put_line (GCRTABLE_t (i).UICON);
          GCRTABLE (i).UICON := 0;
          GCRTABLE (i).UICON := GCRTABLE_t (i).UICON;
          GCRTABLE (i).COMPANYGID := GCRTABLE_t (i).COMPANYGID;
       -- GCRTABLE(i).COMPANYNAME := GCRTABLE_t(i).COMPANYNAME;
       -- GCRTABLE(i).DOMICILE := GCRTABLE_t(i).DOMICILE;
       -- GCRTABLE(i).ULTIMATENAME := GCRTABLE_t(i).ULTIMATENAME;
       -- GCRTABLE(i).ULTIMATEGID := GCRTABLE_t(i).ULTIMATEGID;
       -- GCRTABLE(i).ISO2CODE := GCRTABLE_t(i).ISO2CODE;
       -- GCRTABLE(i).ENTITY := GCRTABLE_t(i).ENTITY;
       -- GCRTABLE(i).SHORTNAME := GCRTABLE_t(i).SHORTNAME;
       -- GCRTABLE(i) := gcrtableType(GCRTABLE_t(i).UICON,GCRTABLE_t(i).COMPANYGID,GCRTABLE_t(i).COMPANYNAME,GCRTABLE_t(i).DOMICILE,GCRTABLE_t(i).ULTIMATENAME,GCRTABLE_t(i).ULTIMATEGID,GCRTABLE_t(i).ISO2CODE,GCRTABLE_t(i).ENTITY,GCRTABLE_t(i).SHORTNAME);
       -- GCRTABLE(i) := gcrtableType(gcr_cursor_record(null,null,null,null,null,null,null,null,null));
       END LOOP;
    END;

  • TS3694 How can I fix this type of error in iphone 4?"The iphone could not be restored. An unknown error occurred (3194) "please help me.

    Hi everybody !
    AT&T company is unlocked (factory)my iphone4 before 3 days ago so i want to restore to unlock iphone 4 with itunes but it is not restore.
    How can I fix this type of error in iphone 4?- "The iphone could not be restored. An unknown error occurred (3194) "
    please help me in nepali language(if posible) or english. thank you.

    http://support.apple.com/kb/TS3694#error3194
    This means that either your firewall/antivirus is blocking access to Apple's servers, or you have used your computer to jailbreak an iDevice in the past. The link above tells you how to resolve this issue.

  • Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service. 

    Photoshop CS6 could not update successfully.  Error codes Adobe Photoshop 13.0.1.3 Installation failed. Error Code: U44M1P7  Extension Manager 6.0.8 Update Installation failed. Error Code: U44M1P7  Please help me figure out how to call customer service.  I would prefer to talk to someone directly.

    Are you using any disk cleaner or optimization tools like CleanMymac or Mackeeper?
    Regards,
    Ashutosh

  • TS2865 when i export movie from final cut pro to quicktime , something happened. it says error quicktime -50. please help.

    when i export movie from final cut pro to quicktime , something happened. it says error quicktime -50. please help.
    i need to submit this movie for uni project tomorrow.
    any help/advice will help . thanks.

    According to Crash Analyzer
    -50 (QuickTime)
    This error occurs when there is corrupt or invalid media in your timeline. Check that the codec used by the file is recommended for use in your editing application.
    good luck

  • TS3694 hi, I was trying to update my iPhone 3gS but when I turn it on again iTunes send me a message that says error 3194 occurs, please help me!!

    hi, I was trying to update my iPhone 3gS but when I turn it on again iTunes send me a message that says error 3194 occurs, please help me!!

    If the screen shows a plug going to itunes, then you have no choice,  It's in recovery mode.  You'll be given the chance to restore from a backup either from itunes or icloud.
    I assume when you got the message to update (was this for the ios or update some apps?), that was before the device when dead.  At any rate, doing a restore does not change the ios.

  • HT201413 Whenever i try to sync my ipod a message keeps coming up saying "1 or more items could not be synced", apparently its error -69. Please help, i've tried rebooting my laptop, installing the latest itunes and turning off the wifi but nothing seems

    Whenever i try to sync my ipod a message keeps coming up saying "1 or more items could not be synced", apparently its error -69. Please help, i've tried rebooting my laptop, installing the latest itunes and turning off the wifi but nothing seems to work.

    Are you using security software on your PC? If yes, try to disable the software or check the settings. More info here: http://support.apple.com/kb/TS3125

  • My ipad mini 2 is not turning on. I tried to reset with the power/home buttons but it didnt work. I tried to restore it in DFU mode but it didnt work, i get error 4004. Please help me!

    My ipad mini 2 is not turning on. I tried to reset with the power/home buttons but it didnt work. I tried to restore it in DFU mode but it didnt work, i get error 4004. Please help me!

    I also tried the ol' whacking 3 times trick...Didn't work to my surprise

  • I backed up my movies and rebuild my computer, and after making sure i'm using the latest version of itunes and quicktime and and making sure i still had spare computer authorizations, i still get error 23132.  Please help.

    I backed up my movies and rebuild my computer, and after making sure i'm using the latest version of itunes and quicktime and and making sure i still had spare computer authorizations, i still get error 23132.  Please help.

    I had this exact issue.  Spent over an hour on the phone with apple support, they couldn't resolve.  Here is what I ended up doing, that worked.
    1.  Turned iTunes match off on all my iOS devices
    2.  Deleted the offending playlists from the iOS device they originated on
    3.  Started iTunes, let it run (literally) for an hour before it became responsive.  First thing I did, before clicking anywere else was disable iTunes match.  If I clicked anywhere, it would clock for another hour.
    4.  Let iTunes run overnight, by morning it had cleaned out the repeating play lists.  This got my Mac/iTunes back to an operable state.
    5.  Restore iPhones from backup in iTunes.
    What was causing my issue was a single playlist that was created on an iPhone, then suddenly showed up with several thousand duplicates on my other iPhone.  The culprit playlist did not, for some reason, duplicate itself on my two iPads.  Apple support seemed to think it was because the problem iPhone tried to sync the playlist to iCloud over and over again unsuccessfully, then it finally went through and populated the thousands of blank/failed playlists which then tried to propigate to iTunes and my other iOS devices.  Seems like a reasonable theory.
    I have not yet re-enabled iTunes match.  So, no idea what will happen if I decide to go back down that rabbit hole.

  • Cannot restore my brand new iphone 4s ,got stuck in DFU mode and itunes shows error code (-1) please help?

    Cannot restore my brand new iphone 4s ,got stuck in DFU mode and itunes shows error code (-1) please help?
    repeatedly tried from diffierent computers and the same error code pops up (error -1)

    That's a hardware problem which will require a trip to the Apple store for evaluation, unless your phone has been jailbroken, then it's a corrupt hosts file (and we can't help you with that here as it is against the forum's terms of use).

  • I cannot restore my Iphone 4, I keep getting the error code 1611, please help and the Iphone keeps displaying the "Plug-In Itunes Symbol!??

    I cannot restore my Iphone 4, I keep getting the error code 1611, please help and the Iphone keeps displaying the "Plug-In Itunes Symbol!??

    http://tinyurl.com/nyj36v

  • ýesterday  my iphone 5c screen  suddendly  shows connect to itune and i try to restore it using itune but halfway i got a message error occured (14). please help me in solving this problem.

    ýesterday  my iphone 5c screen  suddendly  shows connect to itune and i try to restore it using itune but halfway i got a message error occured (14). please help me in solving this problem.

    what did you learn when you search the internet for iPhone error 14?

  • I am not able to sync some videos and apps onto my iphone 3gs. it shows a sync error: 0xe8008001.i updated it but still i am getting the same sync error problem..please help.

    i am not able to sync some videos and apps onto my iphone 3gs. it shows a sync error: 0xe8008001.i updated it but still i am getting the same sync error problem..please help.
    aman

    Are you using Windows...?

  • My dear during i update my iphone 4s 16 giga  to ios 7 itis not responde and error 4005  wasfound please help me

    dear sir during updating my iphone 4s 16 giga error 4005 found please help me

    http://lmgtfy.com/?q=iPhone+error+code+4005

  • TS3694 Hello. I have an iphone 3gs 8gb factory unlocked. Currently its running on ios 5.0.1 and I am trying to update it ios 5.1.1 but its not updating. The itunes downloads the ios 5.1.1and gives back unknown error(3194). Please help.

    Hello. I have an iphone 3gs 8gb factory unlocked. Currently its running on ios 5.0.1 and I am trying to update it ios 5.1.1 but its not updating. The itunes downloads the ios 5.1.1and gives back unknown error(3194). Please help.

    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

Maybe you are looking for

  • How to print on paper napkins?

    I require to print images on paper napkins for my decoupage work. I have a HP CP1215 colour laser. Because the napkins are so thin, its ideal for my craft work. How can I get my printer to print on these 3ply paper napkins?

  • Playlist on iPhone doesn't show same number of songs in library

    The playlist on my iPhone 4S shows that I've downloaded from my library 893 songs, across 4 playlists.  However when I connect the iPhone to the library, the information bar, that indicates how much of the memory is being used on the phone, shows 103

  • Internet outage at 3:30 PM

    I don't appreciate that there was a 3G outage in my area (48073) at around 3:30 PM today. I pay over $80 every month for the use of this phone and modem and need them available at a moment's notice. The paying public simply should not be expected to

  • Standard User Analyzer - Microsoft Compatibility Toolkit 5.6 - No (valid) log Error

    Information: Test machine running Windows 7 Professional 64 bit. Machine is bound to an Active Directory domain Logged in as a standard user. I am testing some applications for compatibility in my company on this machine.  I am currently trying to ut

  • Service order IW32 - change header data while saving with UE

    Hello I have the following problem. I need to clear while saving order in IW31/2 one single fields this is CAUFVD-ABGSL but I cannot find any user exist that could allow me to CHANGE this field I tryied to use : IWO10009 IH-Auftrag: Kundenprüfung zum