ORA-31061 XDB-error: special tank tank escaped conversion failed

I build a script to export data in a table to an xml file. After that, I came across this error: ORA-31061 XDB-error: special tank tank escaped conversion failed.

I have reduced the problem in 1 column and now knows that this query will trigger the problem:

Customer OF SELECT XMLELEMENT ('name', lastname)

clearly, there are some lastname in the array that contains some sort of bad character. The table contains 24,000,000 customers.
Is it possible to know what record (or records) are the cause of the problem?

Version information:

Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production
PL/SQL Release 11.2.0.2.0 - Production
CORE Production 11.2.0.2.0
AMT for 64-bit Windows: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - Production

Erik_NL wrote:
WE8MSWIN1252

Oracle recommends to use Unicode (AL32UTF8) as the database character set. Anyway, I'm still not sure that the problem is necessarily tied to the character set. So, as you suggest, it might be useful to have the list of family names is generating the error.

You can try something similar to the following:

CREATE OR REPLACE TYPE names_ty IS TABLE OF VARCHAR2(50)
/

CREATE TABLE bad_names(lastname VARCHAR2(50) NOT NULL);

CREATE OR REPLACE PROCEDURE logBadName(p_name VARCHAR2)
AUTHID CURRENT_USER
IS
    PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
    INSERT INTO bad_names(lastname) VALUES(p_name);
    COMMIT;
END logBadName;
/
SHOW ERRORS;

DECLARE
    customersNames   names_ty := names_ty();

    BAD_NAME_EXCEPTION EXCEPTION;
    PRAGMA EXCEPTION_INIT(BAD_NAME_EXCEPTION, -31061);

    xmlInfo     XMLTYPE;
    idx         PLS_INTEGER;
    lastName    VARCHAR2(50);
BEGIN
    SELECT lastname
    BULK COLLECT INTO customersNames
    FROM customer;

    idx := customersNames.FIRST;
    WHILE idx IS NOT NULL LOOP

        lastName := customersNames(idx);

        BEGIN
            SELECT XMLElement("name", lastName)
            INTO xmlInfo
            FROM dual;

            EXCEPTION
                WHEN BAD_NAME_EXCEPTION THEN
                    logBadName(p_name=>lastName);
        END;

        idx := customersNames.NEXT(idx);
    END LOOP;
END;
/

And finally the rows in the bad_names table will give you the information you're looking for.

I hope this can help you.

Kind regards
Dariyoosh

Edited by: dariyoosh June 4, 2013 08:32

Edited by: dariyoosh June 4, 2013 09:47

Edited by: dariyoosh June 4, 2013 09:48

Tags: Database

Similar Questions

  • ORA-31061: Error XDB

    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE     11.2.0.2.0     Production
    TNS for 64-bit Windows: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    don't know what I'm doing wrong here. (I don't use xml often if I'm sure it's something obvious)
    OK has created the following table and sequence
    CREATE TABLE saved_queries
    (
       seq_cd           NUMBER,
       user_id          VARCHAR2 (50 BYTE) NOT NULL,
       query_name       VARCHAR2 (200 BYTE) NOT NULL,
       create_dt        DATE NOT NULL,
       last_update_dt   DATE NOT NULL,
       query_info       SYS.XMLTYPE NOT NULL
    );
    
     ALTER TABLE saved_queries ADD (
      CONSTRAINT SAVED_QUERIES_PK
      PRIMARY KEY (SEQ_CD));
    
      ALTER TABLE saved_queries ADD (
      CONSTRAINT SAVED_QUERIES_UQ unique  (user_id , query_name ));
    
    
    CREATE SEQUENCE saved_queries_seq
       START WITH 1
       INCREMENT BY 1
       NOCACHE
       NOCYCLE;
    However, when I try my insert
    INSERT INTO saved_queries (seq_cd,
                               user_id,
                               query_name,
                               create_dt,
                               last_update_dt,
                               query_info)
         VALUES (
                   saved_queries_seq.nextval,
                   'Bdellinger',
                   'My First Query',
                   SYSDATE,
                   SYSDATE,
                   sys.xmltype.
                    createxml (
                      '<query>
        <DropDownListAssignedTo>Bryan Dellinger</DropDownListAssignedTo>
       < DropDownListTaskStatus>In-Progress</DropDownListTaskStatus>
        < DropDownListTaskStatus>Pending</DropDownListTaskStatus>
     </query>'));
    I get
    ORA-31061: XDB error: XML event error
    ORA-19202: Error occurred in XML processing
    In line 3 of orastream:
    LPX-00231: invalid character 32 (' ') found in a Name or Nmtoken
    Thanks for your help
    Let me know if you need more info.

    "Would it be the space after the"<' in="" this="">

     < DropDownListTaskStatus>In-Progress
        < DropDownListTaskStatus>Pending
    

    ?

  • ORA-30992: an error has occurred to Xpath ready, CstmrCdtTrfInitn, GrpHdr, CreDtTm

    Hi all

    I get this error when my XML with an XSD validation using Oracle

    XMTYPE variable.schemavalidate ();

    ORA-30992: an error has occurred to Xpath ready, CstmrCdtTrfInitn, GrpHdr, CreDtTm

    ORA-01830: date format picture ends before converting all of the input string

    I have the following XML generated which is having an element with time zone time-stamped in it.

    Total on the XML data:

    < TransactionFile CreationDate = "" 2013-09 - 02T 16: 47:32 + 01:00 "entity"TEST"= >"

    I'm against an XSD validation then that apply to a style sheet and using Oracle XMLTRANSFORM

    The stylesheet has the following code (code XSLT):

    "< CreDtTm > < xsl: value-of select="@CreationDate "/ > < / CreDtTm >

    The XML is properly validated and transformed in the final XML output, but for some reason it adds any fraction to my such date as displayed below:

    < CreDtTm > 2013 - 09 - 05T 16: 40:44.000000 + 01:00 < / CreDtTm >

    I'm finally validate this output with a predefined standard XSD, where the CredtTm is defined as a datetime variable

    < xs: element name = "CreDtTm" type = "ISODateTime" / >

    ISODateTime is of type datetime

    < xs:simpleType name = "ISODateTime" >

    < xs:restriction base = "XS: DateTime" / >

    < / xs:simpleType >

    Thanks for reading so far. Near here the real problem

    I'm posting this in my Oracle pakaged procedure, using the v_pain_xmldata.schemavalidate ();   (variable v_pain_xmldata is an XMLTYPE variable)

    During the validation of the XML with this XSD it fails with the above error

    Can someone let me know why it's a failure? Because we have the final zone as in my XML output format in the w3school standard

    http://www.w3schools.com/schema/schema_dtypes_date.asp

    I tried different dates hardcoing in my XML final to see which element in the date is a failure and here are the results. I think that when I add the minus sign hrs it is a failure

    2013-09 - 02T 16: does not work 47:32 + 01:00 -
    2013-09 - 02T 16: 47:32 - does not work 01:00 -
    2013-09-02 16:47:32 - does not work

    2013-09-02 - works
    2013-09 - 02T 16: 47:32 - works
    2013-09 - 02T 16: 47:32.000000 - works

    I'm using Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production


    For the record, I can't edit the XSD to add anything into it like that

    < xdb:SQLType XS: attribute = "TIMESTAMP WITH TIME ZONE' name ="CreationDate"type =" xs: DateTime "use ="required"/ >"

    As this is a standard XSD SEPA provided by the customer and therefore no changes can be made for her.

    I have only option for me is to modify the stylesheet to probably enter a format to convert the date in datetime format, however, the above generated output is a valid datetime format.

    Any question, please get back to me. Would appreciate any help on getting this problem sorted.

    Thanks in advace.

    What is this parenthesis for?

  • ORA-39127: unexpected error in call to 'WMSYS '. "" "" LT_EXPORT_PKG '. "" SYSTEM_INFO_EXP ".

    While the export of database complete expdp following errors show?

    Start "SYSTEM". "" EXPORT_JOB_150506150137 ":

    Current estimation using BLOCKS method...

    Treatment of DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA object type

    Total estimation using BLOCKS method: 2,906 GB

    Object DATABASE_EXPORT/TABLESPACE of treatment type

    Type of object DATABASE_EXPORT/PROFILE of treatment

    Treatment of DATABASE_EXPORT/SYS_USER/USER object type

    Treatment of type of object DATABASE_EXPORT/SCHEMA/TYPE/SCHOLARSHIP/OWNER_GRANT/OBJECT_GRANT

    Treatment of type of object DATABASE_EXPORT, SYSTEM_PROCOBJACT, PRE_SYSTEM_ACTIONS, PROCACT_SYSTEM

    ORA-39127: unexpected error in call to 'WMSYS '. "" "" LT_EXPORT_PKG '. "" SYSTEM_INFO_EXP ".

    ORA-44002: incorrect object name

    ORA-06512: at "SYS." DBMS_ASSERT", line 383

    ORA-06512: at "SYS." Dbms_metadata", line 10079

    Treatment of type of object DATABASE_EXPORT/SYSTEM_PROCOBJACT/PROCOBJ

    Treatment of type of object DATABASE_EXPORT, SYSTEM_PROCOBJACT, POST_SYSTEM_ACTIONS, PROCACT_SYSTEM

    SQL > select * from v version $;

    BANNER

    --------------------------------------------------------------------------------

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    PL/SQL Release 11.2.0.4.0 - Production

    CORE Production 11.2.0.4.0

    AMT for 64-bit Windows: Version 11.2.0.4.0 - Production

    NLSRTL Version 11.2.0.4.0 - Production

    SQL > select * FROM SYS. EXPPKGACT$ WHERE SCHEMA = "WMSYS";

    LEVEL OF SCHEMA PACKAGE CLASS #.

    ------------------------------ --------------- ---------- ----------

    LT_EXPORT_PKG 1 1000 WMSYS

    LT_EXPORT_PKG 2 1000 WMSYS

    -------------------------------------------------------------------------

    expdp

    Export: Release 11.2.0.4.0 - Production Wednesday, may 6, 16:11:43 2015

    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

    ---------------------------------------------------------------------------

    Operating system == > > Windows server 2008 R2 Enterprise Edition.

    RAJESH. PK

    Hello

    Conn / as sysdba
    create the table sys.exppkgact$ _backup in select * from sys.exppkgact$;
    remove the sys.exppkgact$ where package = "LT_EXPORT_PKG";
    commit;

    Run the new expdp

    'This eliminated error' now

    Thank you Top.Gun your fast support.

    Rajesh

  • ORA-20001: System error: procedure sort_segment_order step 40

    ORA-20001: System error: procedure sort_segment_order step 40

    DECLARE

    lc_employee_number per_all_people_f.employee_number%TYPE; -: = "tan_01";

    ln_person_id per_all_people_f.person_id%TYPE;

    ln_assignment_id per_all_assignments_f.assignment_id%TYPE;

    ln_object_ver_number per_all_assignments_f.object_version_number%TYPE;

    ln_address_id PER_ADDRESSES. ADDRESS_ID % TYPE;

    ln_asg_ovn NUMBER;

    ld_per_effective_start_date per_all_people_f.effective_start_date%TYPE;

    ld_per_effective_end_date per_all_people_f.effective_end_date%TYPE;

    lc_full_name per_all_people_f.full_name%TYPE;

    ln_per_comment_id per_all_people_f.comment_id%TYPE;

    ln_assignment_sequence per_all_assignments_f.assignment_sequence%TYPE;

    lc_assignment_number per_all_assignments_f.assignment_number%TYPE;

    lb_name_combination_warning BOOLEAN;

    lb_assign_payroll_warning BOOLEAN;

    lb_orig_hire_warning BOOLEAN;

    -------------------

    -Assignment

    l_assignment_id NUMBER;

    l_effective_date DATE: = NULL;

    l_supervisor_id NUMBER;

    lb_correction BOOLEAN;

    lb_update BOOLEAN;

    lb_update_override BOOLEAN;

    lb_update_change_insert BOOLEAN;

    lc_dt_ud_mode VARCHAR2 (100): = NULL;

    l_obj_version_num NUMBER;

    l_organization_id NUMBER: = 81;

    l_soft_coding_keyflex_id hr_soft_coding_keyflex.soft_coding_keyflex_id%TYPE;

    l_concatenated_segments VARCHAR2 (2000);

    l_comment_id per_all_assignments_f.comment_id%TYPE;

    l_effective_start_date per_all_assignments_f.effective_start_date%TYPE;

    l_effective_end_date per_all_assignments_f.effective_end_date%TYPE;

    l_no_managers_warning BOOLEAN;

    l_other_manager_warning BOOLEAN;

    ERROR_MESSAGE VARCHAR2 (4000): = NULL;

    current_records NUMBER;

    total_records NUMBER;

    error_records NUMBER;

    l_effective_date_valid NUMBER;

    error_message1 VARCHAR2 (4000): = NULL;

    v_ledger_id gl_ledgers.ledger_id%type;

    v_job_definition_id PER_JOB_DEFINITIONS.job_definition_id%type;

    v_position_definition_id per_position_definitions.position_definition_id%type;

    v_location_id hr_locations_all.location_id%type;

    v_emp_count number: = 0;

    -The Variables of the criteria of update for employees Assgment

    -- -------------------------------------------------------------------------------

    -ln_people_group_id NUMBER: = null;   -This will cause the error ORA-20001: System error: procedure step 40

    ln_people_group_id NUMBER: = hr_api.g_number;   -PEOPLE_GROUP_ID

    end;

    ln_special_ceiling_step_id PER_ALL_ASSIGNMENTS_F.SPECIAL_CEILING_STEP_ID%TYPE;

    lc_group_name VARCHAR2 (30);

    ld_effective_start_date PER_ALL_ASSIGNMENTS_F.EFFECTIVE_START_DATE%TYPE;

    ld_effective_end_date PER_ALL_ASSIGNMENTS_F.EFFECTIVE_END_DATE%TYPE;

    lb_org_now_no_manager_warning BOOLEAN;

    lb_other_manager_warning BOOLEAN;

    lb_spp_delete_warning BOOLEAN;

    lc_entries_changed_warning VARCHAR2 (30);

    Entry: HR_ASSIGNMENT_BK3. UPDATE_EMP_ASG_CRITERIA_B 10

    hr_api.validate_commit_unit 10

    Leave: HR_ASSIGNMENT_BK3. UPDATE_EMP_ASG_CRITERIA_B 20

    Enter hr_kflex_utility set_profiles 5

    hr_kflex_utility set_profiles 10

    hr_kflex_utility set_profiles 20

    hr_kflex_utility set_profiles 30

    hr_kflex_utility set_profiles 40

    hr_kflex_utility set_profiles 50

    Leaving hr_kflex_utility set_profiles 100

    Enter hr_kflex_utility set_session_date 5

    hr_kflex_utility set_session_date 30

    Leaving hr_kflex_utility set_session_date 100

    Inbound: upd_or_sel_keyflex_comb 10

    upd_or_sel_keyflex_comb 20

    Inbound: check_ignore_varray 10

    Seg3 $Sys_Def$                                                         101

    Inbound: ins_or_sel_keyflex_comb 10

    ins_or_sel_keyflex_comb 20

    Inbound: check_ignore_varray 10

    ins_or_sel_keyflex_comb 30

    Inbound: sort_segment_order 10

    sort_segment_order 20

    sort_segment_order 30

    sort_segment_order 40

    ins_or_sel_keyflex_comb 100

    Leaving upd_or_sel_keyflex_comb 140

    -RollBack ORA-20001: System error: sort_segment_order procedure step 40

    Cause: The sort_segment_order procedure created a mistake in step 40.

    Action: Contact your system administrator citing the sort_segment_order procedure and 40 of the step.

    Thank you all,

    I found the solution of adding at least one value in the key flexfield: "Flexfield group of people.

    Kind regards

  • [ORA-00600: internal error code, arguments: [25027], [10], [0], [] [], [], [], [], [], [], []]

    Hi gurus,

    While the insertion to column records we get from blob "ORA-00600: internal error code, arguments: [25027], [10], [0], [], [], [], [], [], [], [], [], [] ' inner exception

    Details of the environment:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    AMT for Linux: Version 11.2.0.2.0 - Production

    Hi gurus,

    We find the below workaround.

    The error is corrected by:

    Re-create the table using import-drop-exp.

    OR move the lob in a new tablespace. for example: Alter table move lob(&lob_column) store like (tablespace &tbsp);)

    Thank you

    VK

  • Oracle Database Vault ORA-12578 connection error: open TNS:wallet failed (user OS to access the wallet)

    Hi all

    I create a portfolio of oracle and everything works fine until a script is launched by the OS oracle user. (same user that whoever created the store)

    I use authentication external store and inside my script, I do something like a sqlplus / @MYSECURE_TNS.

    However, when I run a script OS another user as a 'data_loading_user' I get the error: Oracle Database Vault ORA-12578 connection error: TNS:wallet open failed

    I would like to know, how I can activate any user on the local host access the portfolio safe to connect to the database.

    Here my current ENV:

    ==================

    Oracle Linux 6.5

    Oracle a Standard 11.2.0.4

    Webtier Oracle 11g

    Database and thin client SQLNET. ORA

    =============================

    SQLNET. WALLET_OVERRIDE = TRUE

    SSL_CLIENT_AUTHENTICATION = FALSE

    SSL_VERSION = 0

    WALLET_LOCATION =

    (SOURCE =

    (METHOD = FILE)

    (METHOD_DATA =

    (DIRECTORY = / u01/app/oracle/owm/wallets)

    )

    )

    Thanks in advance for any help.

    JS

    Hi all

    Tried something out of the blue, that has worked.

    I added the data_loading_user of the user to the group administrator (Group of BONES that created the wallet).

    The I added the read permission to the group, so the permission on the files below were 640:

    # > chmod 640 cwallet.sso

    # > 640ewallet.p12 chmod

    Thank you

    JS

  • dbms_scheduler.create_window fails with ORA-27418: syntax error in the interval of recurrence or calendar

    I tried to create a window to test the activation of plans of RM. But I get this error.

    SQL > EXECUTE dbms_scheduler.create_window.

    > (-)

    > window_name = > 'day ', -.

    > resource_plan = > 'my_plan ', -.

    > start_date = > systimestamp + 1 /(24*60).

    > repeat_interval = > ' freq = > daily '.

    > time = > ' 0 01:00:00 '.

    > Comments = > ' C know if it works without a job "-"

    >);

    BEGIN dbms_scheduler.create_window (window_name = > 'day', resource_p)

    LAN = > 'my_plan', start_date = > systimestamp + 1 /(24*60), repeat_interv

    Al = > ' freq = > daily ', duration = > ' 0 01:00:00 ', comments = > ' C so she

    works without employment '); END;

    *

    ERROR on line 1:

    ORA-27481: 'SYS '. "' DAY ' has an invalid schedule

    ORA-27418: syntax error in the interval of recurrence or calendar

    ORA-06512: at "SYS." DBMS_ISCHED", line 486

    ORA-06512: at "SYS." DBMS_SCHEDULER', line 1295

    ORA-06512: at line 1

    I have tried many tips found on the web, nothing works.

    Any help would be greatly appreciated.

    Also, can you pls tell me if this command run once automatically activates the my_plan after 1 minute, 1 minute, after which, it will disable the my_plan? So, you do not need to create a JOB for this. If you create a window, that is, as a job creation to enable an RM plan?

    2734369 wrote:

    Wow, discovered the issue: the repeat interval is broken (I use a database of 12.1 in Windows 7). It must be uppercase. Very surprising in the windows to be case-sensitive.

    SQL >

    SQL > EXECUTE dbms_scheduler.create_window.

    >  (-

    > window_name-online 'day ', -.

    > resource_plan-online 'my_plan ', -.

    > start_date-online systimestamp + 1 /(24*60).

    > repeat_interval-online ' FREQ = DAILY; BYHOUR = 10; BYMINUTE = 30', -.

    > time-online ' 0 01:00:00 '.

    > Comments => ' C know if it works without a job "-"

    >  );

    PL/SQL procedure successfully completed.

    Problem is, after 1 minute, always that the plan is not activated?

    SQL > SEE THE RESOURCE_MANAGER_PLAN PARAMETER

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ----------------------

    resource_manager_plan chain

    Why the Plan is not activated after 1 minute. Have we not create a job (I don't think).

    I think you misunderstand the meaning of "start_date".  Please see the documentation on what this means exactly.

    This attribute specifies the first date and time where it is scheduled to open in this window. If the value start_date specified is in the past or is not specified, the window opens, from its inception.

    To repeat windows using an expression of the calendar to specify the repetition interval, the value of start_date is a reference date. The first time the window opens depends on the specified repeat interval and the value of start_date .

    (From Types and Oracle® packages of PL/SQL Database 11g Release 2 (11.2) reference E40758-03); dbms_scheduler, create_window.  DBMS_SCHEDULER

    Once you have done this, you will see that it is pretty useless to specify that you have.

    Your repeat_interval said "every day at 10:30.

  • [ORA-00600: internal error code, arguments: [1350], [1], [23] [] [], [], [], [], [], [], []]

    Hello

    We have an instance 12.1.3 (12.1.1 upgrade clone instance Prod)

    When I connect to the application and press the preferences at the top of the main html page link, I

    You have encountered an unexpected error. Please contact the system administrator for assistance.

    Click here for exception details.

    error and when I check the db alert log file I see this error:

    Sat Apr 12 11:05:08 2014

    Errors in the /u01/PROD/db/tech_st/11.1.0/admin/PROD_fapp/diag/rdbms/prod/PROD/trace/PROD_ora_3884.trc file (incident = 32266):

    [ORA-00600: internal error code, arguments: [1350], [1], [23] [] [], [], [], [], [], [], []]

    Incident details in: /u01/PROD/db/tech_st/11.1.0/admin/PROD_fapp/diag/rdbms/prod/PROD/incident/incdir_32266/PROD_ora_3884_i32266.trc

    Sat Apr 12 11:05:12 2014

    Sweep the Incident [32266]: completed

    Sat Apr 12 11:05:12 2014

    Track of dumping performs id = [cdmp_20140412110512]

    and in the PROD_ora_3884_i32266.trc log file, I see:

    -Run SQL statement for the current session (sql_id = 8qv1vyc197t0b).

    SELECT * FROM (select t.territory_short_name, territory_name, t.nls_territory)

    of fnd_territories_vl t, v$ nls_valid_values v

    where t.nls_territory = v.value

    and v.parameter = 'TERRITORY') QRSLT ORDER BY territory_name

    If the problem is related to this request.

    I have search in metalink and I found that it is probably because of ORA_NLS10 parameter.

    but when I checked the settings in my os (oratrng and appltrng) in both two users the path is valid.

    document ORA-600 [1350] error raised when E - Business Suite is in use (Doc ID 1117757.1() see this problem for 11.1.0.7 step 10 interoperability on E - Business Suite 12.0 with Oracle Database 11 GR 1 (11.1.0) material (Doc ID 735276.1().

    but in this procedure some patches must be applied to that I applied their 12.1.1 to 12.1.3 upgrade

    can someone help me what can I do to solve this problem please?

    Thank you

    Can you stop all services on the application tier and the database layer, make sure that this environment variable is set correctly, then restart the database services and the application of layer? If the error persists, pl open a SR

    HTH
    Srini

  • ORA-00600: internal error code, arguments: [qmcxeExUseLoc93] with xmltable and big bows in the CLOB column

    Hi all

    Running the following:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    PL/SQL Release 11.2.0.2.0 - Production

    "CORE 11.2.0.2.0 Production."

    AMT for IBM/AIX RISC System/6000: Version 11.2.0.2.0 - Production

    NLSRTL Version 11.2.0.2.0 - Production

    Create a view of a relational table and XMLTABLE and extract nodes from voluminous of the xmltable, mapped text using COLUMNS. I concatenate the text nodes in an xml element in the XQuery xmltable, simple sequencing:

    <CONTENT>
    {$i/summary/text(),$i/know/text(),$i/considerations/text(),$i/look_for/text(),
    $i/nc//text(),$i/level1//text(),$i/level2//text(),$i/ipocc//text()}
    </CONTENT>
    

    SQLDeveloper query execution and right on when I scroll the 50th outcome accordingly set or... DB connection is closed and stack following error appears:

    [ORA-00600: internal error code, arguments: [qmcxeExUseLoc93], [], [], [], [], [], [], [], [], [], []]

    00600 00000 - "internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s] '.

    * Cause: It's the generic internal error for Oracle program number

    exceptions.    This indicates that a process has encountered a

    Exceptional condition.

    * Action: Report as a bug - the first argument is the internal error number

    I went site Oracle Support to use the 'search' for these types of errors, but he found nothing to the argument: "qmcxeExUseLoc93"... any ideas short of opening an SR with Oracle support? S/n reports that no problems with memory or tablespace... trace files report a stack trace is complete:

    [ORA-00600: internal error code, arguments: [qmcxeExUseLoc93], [], [], [], [], [], [], [], [], [], []]

    = Dump for incident 32114 (ORA 600 [qmcxeExUseLoc93]) =.

    2014-04-08 07:31:51.369

    dbkedDefDump(): from the default crash dumps (flags = 0x2, level = 3, mask = 0 x 0)

    -Run SQL statement for the current session (sql_id = 0qn4zxr0stgjh).

    SELECT ID, CONTENT of ort_active_content_en_vw

    -Call trace stack memory-

    call call entered the argument values in hex

    location point type (? means dubious value)

    -------------------- -------- -------------------- ----------------------------

    skdstdst () + 40 bl 107ca 9980 FFFFFFFFFFD99A8? 000002004?

    000000001? 000000003?

    000000000? 000000002?

    000000001? 000000000?

    ksedst1 () + 104 call skdstdst() FFFFFFFFFFD89B0? 000002004?

    110641000? 1098C 1164?

    110641000? 000000000?

    FFFFFFFFFFD8AE0? 700000007?

    ksedst () + 40 call ksedst1() 3030000000000? 002050033?

    1098C 1158? 700000000025C?

    000000000? 000000000?

    1098C07B8? 000000000?

    dbkedDefDump (+ 2828) call ksedst() FFFFFFFFFFD8B90? 000000000?

    000000000? 000000000?

    000000000? 000000000?

    000000000? 300000003?

    …….

    -Binary stack dump-

    = FRAME [1] (skdstdst () + 40 - > 107ca 9980) =.

    defined by pointers frame 0xffffffffffd88b0 and 0xffffffffffd8840

    CALL TYPE: bl ERROR REPORTED: no COMPONENT: (null)

    0xffffffffffd8840 to 0xffffffffffd88b0 memory dump

    FFFFFFFFFFD8840 0FFFFFFF FFFD88B0 42422220 098C 1158 [...] BB '... X]

    08EBE70C FFFFFFFFFFD8850 00000001 00000001 10641000 [... d..]

    FFFFFFFFFFD8860 00000000 00000000 0FFFFFFF FFFD89E8 [...]

    FFFFFFFFFFD8870 0FFFFFFF FFFD99A8 00000000 00002004 [...].

    FFFFFFFFFFD8880 00000003 00000000 00000000 00000001 [...]

    FFFFFFFFFFD8890 00000000 00000000 00000000 00000002 [...]

    FFFFFFFFFFD88A0 00000000 00000001 00000000 00000000 [...]

    = SETTING [2] (ksedst1 () + 104-> skdstdst()) =.

    defined by pointers frame 0xffffffffffd89b0 and 0xffffffffffd88b0

    TYPE of CALL: call ERROR REPORTED: no COMPONENT: KSE

    0xffffffffffd88b0 to 0xffffffffffd89b0 memory dump

    FFFFFFFFFFD88B0 0FFFFFFF FFFD89B0 42422220 10317 68 A... 1zh BB"]

    FFFFFFFFFFD88C0 1033F758 00000001 00000001 0014963C [... <...] 3.X]

    FFFFFFFFFFD88D0 09ED0CA9 1873F04F 28422848 73743231... Sagna (B (Hst21]

    FFFFFFFFFFD88E0 0FFFFFFF FFFD89B0 00000000 00002004 [...].

    FFFFFFFFFFD88F0 00000001 00000001 10641000 098C 1164 [... d...d]

    FFFFFFFFFFD8900 00000001 10641000 00000000 00000000 [... d...]

    ……

    -Status of the Dump process (2).

    ===================================================

    STATE OF THE PROCESS

    -------------

    Global information process:

    process: 0x700000012b18de8, call: 0x70000000b880ee0, xact: 0x0, curses: 0x700000012bf11f0, usrses: 0x700000012bf11f0

    in_exception_handler: no

    ----------------------------------------

    SO: 0x700000012b18de8, type: 2, owner: 0x0, flag: INIT /-/-/ 0x00 if: 0 x 3 c: 0 x 3

    proc = 0x700000012b18de8, name = process, queue = ksu.h LINE: 12451 ID:, pg = 0

    (process) Oracle pid:42, ser:153, called heart/high: 0x70000000b880ee0/0x70000000b880ee0

    flags: (0x0).

    Flags2: (0 x 800), flags3: (0x0)

    Intr error: call error 0,: 0, sess error: error of txn, 0, 0

    queue intr: vacuum

    ksudlp FALSE to the location: 0

    (post info) last message received: 0 0 0

    Last message received-card: no post

    last process affect me: no

    Last message sent: 0 0 26

    Last message sent-map: ksa2.h LINE: 282 ID:ksasnd

    last process posted by me: 6 1 700000012af9058

    (info from latch) wait_event = 0 bits = 0

    Process group: by DEFAULT, proc pseudo: 0x700000012b4db88

    Info of the o/s: user: tst214, duration: UNKNOWN, ospid: 4370650

    OSD pid Info: Unix process pid: 4370650, image: oracle@mldb2385

    ----------------------------------------

    SO: 0x700000010430ba0, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de3758 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/temp01.dbf

    FNO = 201 lblksz = 8192 fsiz = 36608

    ----------------------------------------

    SO: 0 x 700000010430578, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de2b40 incno = 0 waiting for IO cnt = 0

    fname=/tst214_03/oradata/TST214/ort_data01.dbf

    FNO = 6 lblksz = 8192 fsiz = 25600

    ----------------------------------------

    SO: 0x70000001042ff38, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de1310 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/sysaux01.dbf

    FNO = 2 lblksz = 8192 fsiz = 89600

    ----------------------------------------

    SO: 0x70000001042f910, type: 10, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: c: 0x1 0x1

    proc = 0x700000012b18de8, name = FileOpenBlock, leader is ksfd.h LINE: 6337 ID:, pg = 0

    (FOB) flags = 2050 fib = 700000010de0d10 incno = 0 waiting for IO cnt = 0

    fname=/tst214_01/oradata/TST214/System01.dbf

    FNO = 1 lblksz = 8192 fsiz = 96000

    ----------------------------------------

    SO: 0x700000012bf11f0, type: 4, owner: 0x700000012b18de8, flag: INIT /-/-/ 0x00 if: 0 x 3 c: 0 x 3

    proc = 0x700000012b18de8, name = session, lead = ksu.h LINE: 12459 ID:, pg = 0

    (session) sid: 41 ser: 1263 trans: 0x0, creator: 0x700000012b18de8

    indicators: (0 x 8000045) USR /-flags_idl: (0 x 1) BSY /-/ - /-/ - / -.

    Flags2: (0 x 40008) - / -.

    DID:, DID in the short term:

    TXN branch: 0x0

    Oct: 3, prv: 0, sql: 0x70000000c59dbd0, psql: 0x70000000b196c38, user: 73/ORT_READ

    ksuxds FALSE to the location: 0

    name of the service: the USERS of SYS$

    Customer details:

    Info of the o/s: user: norman.jonker, duration: unknown, ospid: 6224

    machine: G4021165 program: SQL Developer

    application name: SQL Developer, hash value = 1012150930

    Battery active waiting:

    No waiting; last waiting ended 2,617517 sec ago

    Wait state:

    fixed_waits = 0 flags = 0 x 21 limit = 0 x 0 /-1

    History of waiting for session:

    elapsed time of 2,617552 sec from last wait

    0: waiting for 'direct path read '.

    number = 0 x 6, first s/n = 0 x 2901, block cnt = 0 x 2

    wait_id = 2222 seq_num = 2223 snap_id = 1

    wait time: snap = 0,000035 s, exc = 0,000035 s, total s = 0,000035

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,029003 seconds time elapsed

    1: expected "asynch descriptor resize.

    #aio in circulation = 0 x 0, the current limit of aio = 0xc8, this capping aio = 0 x 145

    wait_id = 2221 seq_num = 2222 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = 307445734561 min 49sec

    wait charges: calls = 0 os = 0

    After 0,000710 seconds time elapsed

    "2: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2220 seq_num = 2221 snap_id = 1

    wait time: snap = 0,000005 dry, exc = 0,000005, total = 0,000005 sec

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,001452 seconds time elapsed

    3: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2219 seq_num = 2220 snap_id = 1

    wait time: snap = 0,499033 s, exc = 0,499033 s, total s = 0,499033

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000034 seconds time elapsed

    "4: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2218 seq_num = 2219 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000048 seconds time elapsed

    5: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2217 seq_num = 2218 snap_id = 1

    wait time: snap = 0,061319 s, exc = 0,061319 s, total s = 0,061319

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000028 seconds time elapsed

    "6: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2216 seq_num = snap_id 2217 = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000048 seconds time elapsed

    7: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2215 seq_num = 2216 snap_id = 1

    wait time: snap = 0,063435 s, exc = 0,063435 s, total s = 0,063435

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000045 seconds time elapsed

    "8: expected ' SQL * Net message to client"

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2214 seq_num = 2215 snap_id = 1

    wait time: snap = 0,000003 s, exc = 0,000003 s, total s = 0,000003

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000070 seconds time elapsed

    9: expected ' SQL * Net client message'

    pilot-id = 0 x 54435000, #bytes = 0 x 1, = 0x0

    wait_id = 2213 seq_num = 2214 snap_id = 1

    wait time: snap = 0,060780 s, exc = 0,060780 s, total s = 0,060780

    wait time: max = infinite

    wait charges: calls = 0 os = 0

    After 0,000030 seconds time elapsed

    The Session history sampled session 1263 series 41

    ---------------------------------------------------

    History of the sampled session is built by sampling

    the session target all the 1 second. The sampling process

    capture to each sample, if the session is in an active waiting.

    a wait inactive, or not in a wait. If the session is in a

    active wait interval then one is indicated for all samples

    the session was in the same active waiting. If the

    session is in an inactive waiting or not waiting for

    consecutive samples then one interval is indicated for all

    consecutive samples. If we post these consecutive

    samples in a single interval session may NOT be permanently

    inactive or not in a wait (the sampling process is unclear).

    The history is displayed in reverse chronological order.

    sampling interval: 1 s, max 120 sec history

    ---------------------------------------------------

    [3 samples, 07:31:51 - 07: 31:53]

    not waiting at each sample

    [18 samples, 07:31:33 - 07: 31:50]

    waiting in each sample slowed

    [2 samples, 07:31:31 - 07: 31:32]

    not waiting at each sample

    [42 samples, 07:30:49 - 07:31:30]

    waiting in each sample slowed

    [4 biopsies, 07:30:45 - 07: 30:48]

    not waiting at each sample

    [7 samples, 07:30:38 - 07: 30:44]

    waiting in each sample slowed

    [sample 1, 07:30:37]

    waited for ' SQL * Net break/reset for customer ', seq_num: 1149

    P1: 'driver id' = 0 x 54435000

    P2: 'pause '? = 0 x 0

    P3: "= 0x0

    time_waited: 0,013444 sec (sampling interval: 0 sec)

    [14 samples, 07:30:23 - 07: 30:36]

    waiting in each sample slowed

    [4 biopsies, 07:30:19 - 07: 30:22]

    not waiting at each sample

    [26 samples, 07:29:53 - 07:30:18]

    waiting in each sample slowed

    ---------------------------------------------------

    History of the sampled plenary:

    longest_non_idle_wait: ' SQL * Net break/reset for customer '

    [sample 1, 07:30:37]

    time_waited: 0,013444 sec (sampling interval: 0 sec)

    ---------------------------------------------------

    the temporary object counter: 2

    ----------------------------------------

    Virtual discussion:

    kgskvt: 700000011f06658, sess: 700000012bf11f0 sid: 41 ser: 1263

    VC: 0, proc: 700000012b18de8, id: 41

    News consumer group: OTHER_GROUPS (upd? 0) maps: DEFAULT_CONSUMER_GROUP, orig:

    vt_state: 0x100, vt_flags: 0xA030, blkrun: 0, numa: 1

    inwait: 0

    place where last insched series: kgskthrrun

    place where insched last reset: kgskthrrun2

    place where inwait the last value: NULL

    place where inwait last reset: kgskbindfast

    is_assigned: 1, in_sched: 0 (0)

    QCLs: 0, qlink: FALSE

    vt_active: 0 (pending: 1).

    vt_pq_active: 0, dop: 0

    used quanta: 0 (cg: 0) usec, num penalty: 0

    start of CPU time: 0

    idle time: 0, time: 0 (cg: 0)

    yields of processor: 0 (cg: 0), expected: 0 (cg: 0), wait time: 0 (cg: 0) usec

    e/s expected: 0 (cg: 0), wait time: 0 (cg: 0) usec

    ASL in queue wait times: 0, time: 0 (NEWS 0, 0 cg)

    PQQ in queue wait times: 0, time: 0 (NEWS 0, 0 cg)

    Violation of the time to wait in queue: 0

    aborted calls: 0, num is exec hit limit: 0

    Cancel current: max k 0: 0 k

    I/O credits: small = 0 General = 0

    I/O waiting credits: small = 0 General = 0

    KTU Session Commit Cache Dump for IDLs:

    XID: 0x0009.008.00002025 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0006.018.00001f5a RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0009.015.00002024 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0005.004.00001f30 RCS: flg 0x0000.00cd4e90 = 0x1

    XID: 0x0006.021.000011ed RCS: flg 0x0000.00cd4e90 = 0x1

    KTU Session Commit Cache Dump for Non-IDLs:

    ----------------------------------------

    KKS - UOL used: 0 locks (used = 19, free = 3)

    KGX atomic operation Log 70000000b30a840

    Mutex 0 (0, 0) oper idn 0 NONE

    Cursor Parent uid 41 DTS 4 w/h 7 slp 0

    Oper = pt1 NONE = 0 pt2 pt3 0 = 0 =

    PT4 = 0 = 0 = 0 stt u41

    KGX atomic operation Log 70000000b30a890

    Mutex 0 (0, 0) oper idn 0 NONE

    parasite of the slp whr 6 table uid 41 DTS torrent 4 0

    Oper = NONE pt1 = 70000000d1485e8 pt2 = pt3 148678 = 0 70000000d

    PT4 = 0 = 0 = 0 stt u41

    KGX atomic operation Log 70000000b30a8e0

    Mutex 0 (0, 0) oper idn 0 NONE

    FSO uid 41 DTS mutex 0 w/h 0 slp 0

    KGX atomic operation Log 70000000b30a930

    Mutex 0 (0, 0) oper idn 0 NONE

    FSO uid 41 DTS mutex 0 w/h 0 slp 0

    ----------------------------------------

    KGL - UOL SO Cache (total = 182, free = 107)

    KGX atomic operation Log 70000000 b 045538

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache uid 41 DTS 5 w/h 85 slp 0

    Oper = 0 = 70000000b 227350 pt2 = pt3 = 0 70000000c5df180 pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045590

    Mutex (0, 0) 70000000c5b11d8 idn 69fd5d60 oper NONE

    Library Cache uid 41 DTS 4 w/h 77 slp 0

    Oper = pt1 pt2 70000000934fb60 0 = = 0 = 0 pt3

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000b0455e8

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache uid 41 DTS 4 w/h 79 slp 0

    Oper = 0 = 70000000b 225950 pt2 = pt3 = 0 70000000c382cb8 pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045640

    Mutex (0, 0) 70000000b225a80 idn ae8e84f6 oper NONE

    Library Cache uid 41 DTS 4 w/h 70 slp 0

    Oper = 0 = 70000000b 225950 pt2 = 0 = 0 pt3, pt1

    PT4 = pt5 0 = 0 ub4 = 4

    KGX atomic operation Log 70000000 b 045698

    Mutex (0, 0) 70000000b225a80 idn ae8e84f6 oper NONE

    Library Cache uid 41 DTS 4 w/h 70 slp 0

    Oper = 0 = 70000000b 225950 pt2 = 0 = 0 pt3, pt1

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000b0456f0

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache 41 DTS uid 0 w/h 0 slp 0

    Oper = pt1 pt2 = pt3 0 = 0 0 = 0

    PT4 = 0 = 0 = 0 ub4 pt5

    KGX atomic operation Log 70000000 b 045748

    Mutex 0 (0, 0) oper idn 0 NONE

    Library Cache 41 DTS uid 0 w/h 0 slp 0

    Oper = pt1 pt2 = pt3 0 = 0 0 = 0

    PT4 = 0 = 0 = 0 ub4 pt5

    KGL SO hide

    SO = 70000000c5df180 link = 70000000c5df1f0 [70000000b115e38, b 70000000, 045520]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    SO = 70000000b115dc8 link = 70000000b115e38 [70000000c5df380, 70000000c5df1f0]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    SO = 70000000c5df310 link = 70000000c5df380 [70000000c7abab8, 70000000b115e38]

    FLG = 8000 use its 700000012bf11f0 = 700000012bf11f0 =

    Hello

    I'm not saying that it will solve the problem, but you must use XMLCast in this case, not XMLSerialize.

    Try also with fn:local - name instead (unless you need information namespace as well):

    Select (xmlcast)

    XMLQUERY)

    "for $dcrContent in fn:collection("oradb:/PUBLIC/DATA_CAPTURE_RECORD_CONTENT") / ROW.

    where $dcrContent/DATA_CAPTURE_RECORD_CONTENT_ID = xs:decimal ($id)

    "return fn:local - name($dcrContent/CONTENT_XML/*)"

    from 608 as "id".

    contents of return

    )

    as varchar2 (100)

    )

    Double;

  • [ORA-03137: internal error of TTC Protocol: [3113] [] [] [] [] [] []]

    Hi all

    I get these errors very often in newspapers warning oracle.

    My version of DB are 11.2.0.4, it's on a 3 RAC node, the version of the OS is OEL 6.4

    Diagnosis SysEx in directory = [cdmp_20140130092235], requested by (instance = 1, DiSo = 17753), summary = [incident = 45214].

    Wed Jan 30 09:38:08 2014

    Errors in the /u01/app/oracle/diag/rdbms/dbname/iname/trace/iname_ora_57038.trc file (incident = 33273):

    [ORA-03137: internal error of TTC Protocol: [3113] [] [] [] [] [] []]

    Incident details in: /u01/app/oracle/diag/rdbms/dbname/iname/incident/incdir_33273/iname_ora_57038_i33273.trc

    Wed Jan 30 09:38:09 2014

    Diagnosis SysEx in directory = [cdmp_20140130093809], requested by (instance = 2, = 57038 DiSo), summary = [incident = 33273].

    Wed Jan 30 09:38:11 2014

    Scan [inc] [33273]: completed

    Sweep [inc2] [33273]: completed

    Wed Jan 30 09:41:31 2014

    Diagnosis SysEx in directory = [cdmp_20140130094247], requested by (instance = 1, DiSo = 25288), summary = [incident = 45152].

    I have already send the SR in Oracle, but did not get the response again, also I tried the search tool error ora-600 on Oracle's Support site but couldn't find anything with the parameter [3113] nor on the Internet.

    Help, please...

    Thank you!!!

    Hello

    Please refer to the below document referred to re-examine the situation of matrix and compatibility between the Oracle client and the database support

    Ref: Client / Server / interoperability Support Matrix for Oracle Versions (Doc ID 207303.1)

    The document clearly shows that the 9.2.0.8 is no longer supported with 11.2 database. Please use a higher version of the client to avoid such errors.

    Kind regards

    Vautrin - Oracle

  • ORA-09314: sltln: error

    Hello
    on 11g (11.2.0.3)
    RMAN backup fails:
    run{                                   
    backup as compressed backupset format '\\server\rmanpsv9$\backup\MYDB\rman\full\al_%%d_%%T_%%s_%%p' archivelog all delete input;
    }
    
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 05/29/2013 09:11:01
    ORA-09314: sltln: error translating logical name
    OSD-04503: 
    We found
    OSD-04503
    Text contains no translatable items
    Cause: The program cannot recognize variables in the text to be translated.
    Action: Check and, if necessary, correct the text to translate.
    But what is the problem with my text?

    I used also:
    backup as compressed backupset format 'S:\backup\MYDB\rman\full\al_%%d_%%T_%%s_%%p' archivelog all delete input;
    The same error.

    Thank you

    user522961 wrote:
    Hello
    on 11g (11.2.0.3)

    backup as compressed backupset format 'S:\backup\MYDB\rman\full\al_%%d_%%T_%%s_%%p' archivelog all delete input;
    

    The same error.

    Thank you

    see if it works

    backup as compressed backupset "S:\backup\MYDB\rman\full\al_%d_%T_%s_%p" all entered archivelog delete;

  • [ORA - 00600 internal error code, arguments: [16203], [], [], []]

    Hi all

    I'm working on Forms 6i (Version: 6.0.8.11.3)

    I have two databases: applications, db1

    I created a procedure of db1 and I a binding apps-db1 as dblink1 database.

    Name of the procedure is: sample_proc

    I created a synonym of "sample_proc" in applications such as this:

    create or replace the synonym sample_proc for sample_proc@dblink1;

    I'm calling this sample_proc to the constructor of the form. Now, I am facing the below error:

    [ORA - 00600 internal error code, arguments: [16203], [], [], []]

    Not sure about this error. I would ask someone to help me please on this.

    Forms 6i (Version: 6.0.8.11.3)

    Update! If you want to stay on Forms 6i, at least move to the last set of patch Developer 6i.

    What versions of database are involved? Character set which use? Note that you cannot use with Forms 6i AL32UTF8.

  • ORA-00368: checksum error in redo log block

    Hi all


    We have two node RAC instance.
    11 GR 1 material [11.1.0.7] with R12.1.3 Apps


    In the two journal alerts nodes with errors such as:
    ORA-00368: checksum error in redo log block
    ORA-00353: journal corruption near block 163842 change 3809154858 time 03/31/2013 16
    : 30: 29
    ORA-00334: archived log: ' / arch/1_19685_696638733.dbf '
    ORA-00700: soft internal error, arguments: [kesqsMakeSql - invstat:cpuTime], [],]
    ], [], [], [], [], []

    IAM see this error frequently,
    Please help me solve the problem.


    Thank you
    Shaik

    Shaik wrote:
    Hi Hussein.

    I checked, not applied the patch.

    Thank you
    Shaik

    Please apply the patch and see if you see the same entries in the log file.

    Thank you
    Hussein

  • ORA-00600: internal error code, arguments: [17183], [0 x 033134908], [], [],.

    Hi exports.


    [I get ORA-00600: internal error code, arguments: [17183], [0 x 033134908] [] [] [], [], []]

    The temporary tablespace of the database is full and I'm trying to follow the following steps.




    SQL > select * from dba_temp_files;

    FILE_ID File_name nom_tablespace blocks State RELATIVE_FNO AUT MAXBLOCKS INCREMENT_BY MAXBYTES BYTES
    ----------------------------------------------------------------- ---------- ------------------------- ---------- ------------ ------ ------------ --- ---------- ---------- ------------
    USER_BYTES USER_BLOCKS
    ---------- -----------
    G:\ORADATA\TEMP01. DBF 1 TEMP + 10 4 194 176 AVAILABLE 3.4359E 1 YES + 10 4194302 80 3.4360E
    3.4358E + 10 4194048

    J:\ORADATA\TIVOLIORTEMPTS. DBF 5 104857600 12 800 AVAILABLE 1 NO. 0 0 0 TIVOLIORTEMPTS
    103809024 12672

    J:\ORADATA\TEMP_ORISSA_MASTER. TMP 2 10485760 1 280 AVAILABLE TEMP_ORISSA_MASTER 1 52428800 6400 128 YES
    9437184 1152

    J:\ORADATA\TEMP_ORISSA_BENCHMARK. TMP TEMP_ORISSA_BENCHMARK 680525824 83 072 AVAILABLE 3 1 1073741824 131072 2 YES
    679477248 82944

    J:\ORADATA\TEMP_ORISSA_TRANSACTION 104857600 12 800 AVAILABLE TEMP_ORISSA_TRANSACTION 4 1073741824 131072 2 YES 1
    103809024 12672


    5 selected lines.

    SQL > select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$ TEMP_SPACE_HEADER;

    NOM_TABLESPACE BYTES_USED, BYTES_FREE
    ------------------------- ---------- ----------
    3.4359E + 10 0 TEMP
    6291456 4194304 TEMP_ORISSA_MASTER
    TEMP_ORISSA_BENCHMARK 680525824 0
    37748736 67108864 TEMP_ORISSA_TRANSACTION
    103809024 1048576 TIVOLIORTEMPTS

    5 selected lines.

    SQL > CREATE TEMPORARY TABLESPACE MYTEMPFILE
    2 TEMPFILE 'G:\ORADATA\TEMP001.dbf '.
    3 SIZE 1000M AUTOEXTEND ON NEXT 10 M MAXSIZE 2000 M;

    Created tablespace.

    SQL > ALTER MYTEMPFILE TEMPORARY TABLESPACE by DATABASE by DEFAULT.

    Database altered.

    SQL > select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$ TEMP_SPACE_HEADER;

    NOM_TABLESPACE BYTES_USED, BYTES_FREE
    ------------------------- ---------- ----------
    3.4359E + 10 0 TEMP
    6291456 4194304 TEMP_ORISSA_MASTER
    TEMP_ORISSA_BENCHMARK 680525824 0
    37748736 67108864 TEMP_ORISSA_TRANSACTION
    103809024 1048576 TIVOLIORTEMPTS
    1047527424 1048576 MYTEMPFILE

    6 selected lines.

    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES;
    ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES
    *
    ERROR on line 1:
    ORA-25152: TEMPFILE cannot be deleted at this time


    SQL > select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$ TEMP_SPACE_HEADER;

    NOM_TABLESPACE BYTES_USED, BYTES_FREE
    ------------------------- ---------- ----------
    6291456 4194304 TEMP_ORISSA_MASTER
    TEMP_ORISSA_BENCHMARK 680525824 0
    37748736 67108864 TEMP_ORISSA_TRANSACTION
    103809024 1048576 TIVOLIORTEMPTS
    11534336 1037041664 MYTEMPFILE

    5 selected lines.

    SQL > Select ENABLED, STATUS, STATUS, BYTES/1024/1024 in v$ tempfile;

    Status ENABLED State BYTES/1024/1024
    ------ ---------- ------ ---------------
    READING WRITING OFFLIN OFFLIN 0
    READING WRITING 100 ONLINE ONLINE
    READ WRITE 10 ONLINE ONLINE
    ONLINE READING WRITING ON LINE 649
    READING WRITING 100 ONLINE ONLINE
    READING WRITING ONLINE 1000 ONLINE

    6 selected lines.

    SQL > desc v$ tempfile;
    Name Null? Type
    ----------------------------------------------------------------------------------------------------------- -------- ------------------------------------------------------------------------
    FOLDER # NUMBER
    CREATION_CHANGE # NUMBER
    CREATION_TIME DATE
    TS # NUMBER
    RFILE # NUMBER
    STATUS VARCHAR2 (7)
    VARCHAR2 (10) ENABLED
    THE NUMBER OF BYTES
    NUMBER OF BLOCKS
    NUMBER OF CREATE_BYTES
    NUMBER OF BLOCK_SIZE
    NAME VARCHAR2 (513)

    SQL > select file #, STATUS, STATUS, ENABLED, BYTES/1024/1024 of v$ tempfile;

    FOLDER # State ACTIVATED State BYTES/1024/1024
    ---------- ------ ---------- ------ ---------------
    1 READ WRITE OFFLIN OFFLIN 0
    5 READ ONLINE WRITE 100 ONLINE
    2 ONLINE READ WRITE 10 ONLINE
    3 READ ONLINE WRITING ONLINE 649
    4 READ ONLINE WRITE 100 ONLINE
    6 READ ONLINE WRITE 1000 ONLINE

    6 selected lines.

    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES;
    ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES
    *
    ERROR on line 1:
    ORA-25152: TEMPFILE cannot be deleted at this time


    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' offline;

    Database altered.

    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES;
    ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES
    *
    ERROR on line 1:
    ORA-25152: TEMPFILE cannot be deleted at this time


    SQL > select * from dba_temp_files;

    FILE_ID File_name nom_tablespace blocks State RELATIVE_FNO AUT MAXBLOCKS INCREMENT_BY MAXBYTES BYTES
    ----------------------------------------------------------------- ---------- ------------------------- ---------- ------------ ------ ------------ --- ---------- ---------- ------------
    USER_BYTES USER_BLOCKS
    ---------- -----------
    G:\ORADATA\TEMP01. DBF 1 TEMP AVAILABLE


    J:\ORADATA\TIVOLIORTEMPTS. DBF 5 104857600 12 800 AVAILABLE 1 NO. 0 0 0 TIVOLIORTEMPTS
    103809024 12672

    J:\ORADATA\TEMP_ORISSA_MASTER. TMP 2 10485760 1 280 AVAILABLE TEMP_ORISSA_MASTER 1 52428800 6400 128 YES
    9437184 1152

    J:\ORADATA\TEMP_ORISSA_BENCHMARK. TMP TEMP_ORISSA_BENCHMARK 680525824 83 072 AVAILABLE 3 1 1073741824 131072 2 YES
    679477248 82944

    J:\ORADATA\TEMP_ORISSA_TRANSACTION 104857600 12 800 AVAILABLE TEMP_ORISSA_TRANSACTION 4 1073741824 131072 2 YES 1
    103809024 12672

    G:\ORADATA\TEMP001. DBF 6 1048576000 128 000 AVAILABLE MYTEMPFILE 1 2097152000 256000 1280 YES
    1047527424 127872


    6 selected lines.

    SQL > select file #, STATUS, STATUS, ENABLED, BYTES/1024/1024 of v$ tempfile;

    FOLDER # State ACTIVATED State BYTES/1024/1024
    ---------- ------ ---------- ------ ---------------
    1 READ WRITE OFFLIN OFFLIN 0
    5 READ ONLINE WRITE 100 ONLINE
    2 ONLINE READ WRITE 10 ONLINE
    3 READ ONLINE WRITING ONLINE 649
    4 READ ONLINE WRITE 100 ONLINE
    6 READ ONLINE WRITE 1000 ONLINE

    6 selected lines.

    SQL > ALTER DATABASE temp by DEFAULT TABLESPACE TEMPORARY;

    Database altered.

    SQL > select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$ TEMP_SPACE_HEADER;

    NOM_TABLESPACE BYTES_USED, BYTES_FREE
    ------------------------- ---------- ----------
    6291456 4194304 TEMP_ORISSA_MASTER
    TEMP_ORISSA_BENCHMARK 680525824 0
    37748736 67108864 TEMP_ORISSA_TRANSACTION
    103809024 1048576 TIVOLIORTEMPTS
    28311552 1020264448 MYTEMPFILE

    5 selected lines.

    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' online;

    Database altered.

    SQL > select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$ TEMP_SPACE_HEADER;

    NOM_TABLESPACE BYTES_USED, BYTES_FREE
    ------------------------- ---------- ----------
    3.4359E + 10 0 TEMP
    6291456 4194304 TEMP_ORISSA_MASTER
    TEMP_ORISSA_BENCHMARK 680525824 0
    37748736 67108864 TEMP_ORISSA_TRANSACTION
    103809024 1048576 TIVOLIORTEMPTS
    28311552 1020264448 MYTEMPFILE

    6 selected lines.

    SQL > ALTER MYTEMPFILE TEMPORARY TABLESPACE by DATABASE by DEFAULT.

    Database altered.

    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES;
    ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES
    *
    ERROR on line 1:
    ORA-25152: TEMPFILE cannot be deleted at this time


    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' offline;

    Database altered.

    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES;
    ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' DROP, INCLUDING DATA FILES
    *
    ERROR on line 1:
    ORA-25152: TEMPFILE cannot be deleted at this time


    SQL > ALTER DATABASE TEMPFILE ' G:\ORADATA\TEMP01. DBF' online;

    Database altered.


    SQL > ALTER DATABASE temp by DEFAULT TABLESPACE TEMPORARY;

    Database altered.

    SQL > select TABLESPACE_NAME, BYTES_USED, BYTES_FREE from V$ TEMP_SPACE_HEADER;

    NOM_TABLESPACE BYTES_USED, BYTES_FREE
    ------------------------- ---------- ----------
    3.4359E + 10 0 TEMP
    6291456 4194304 TEMP_ORISSA_MASTER
    TEMP_ORISSA_BENCHMARK 680525824 0
    37748736 67108864 TEMP_ORISSA_TRANSACTION
    103809024 1048576 TIVOLIORTEMPTS
    32505856 1016070144 MYTEMPFILE

    6 selected lines.

    SQL > exit


    I'm not able to drop the Temp file as it is used by some users.

    When I checked my alert log, then I get the error ora-600...


    When I check metalink for this argument, I found that this is a bug in the 91 & 10 gr 2

    Please suggest a solution to this problem.

    This is a serious problem of database.

    ASIT Kumar reducing wrote:


    In this society that they don't give me metalink Id. it is why I am facing a lot of problem. But somehow, I check the argument: [17183], [0 x 033134908], [], [] is a bug in 9i and 10 g 2, his good or bad I'm confused again... Please give me a solution for this...

    Why? MetaLink account exists to solve the problem like this

Maybe you are looking for