Xmlparser.parse fails with ORA-20100 when reading from mapped network drive

Hi
I have a problem with the xmlparser when parsing an xml document from a mapped network drive. If I read the xml document from a local drive, then there is no problem.
I haven't been able to find any documentation specifying this. Is there any way to parse a file from a mapped network drive???
To clarify, I have created an example procedure, that parses an XML doc from disc, notice that the G: drive is a mapped drive:
CREATE OR REPLACE procedure test_xmlparser is
p xmlparser.Parser;
dir varchar2(100) := 'G:\Vejdirektoratet\root\xsl';
errfile VARCHAR2(32) := 'error.log';
begin
p := xmlparser.newParser;
-- set parser properties
xmlparser.setValidationMode(p, FALSE);
xmlparser.setErrorLog(p, dir || '\' || errfile);
xmlparser.setPreserveWhiteSpace(p, FALSE);
-- parse xml file
xmlparser.parse(p, dir || '\' || 'HelloWorld.xml');
xmlparser.FREEPARSER(p);
end;
The file HelloWorld.xml contains the following:
<?xml version = '1.0'?>
<message>
<text>Hello World</text>
</message>
When running this in SQL*Plus I get the following error:
ORA-20100: Error occurred while parsing: Invalid argument
ORA-06512: at "SYS.XMLPARSER", line 22
ORA-06512: at "SYS.XMLPARSER", line 69
ORA-06512: at "VD.TEST_XMLPARSER", line 14
ORA-06512: at line 1
Changing the value of the variable dir to 'C:\' makes it all work.

Hi again
I need to ask a last, hopefully ;-), question on upgrading the JDK to 1.3.1:
As far as I understand, this is how I do it:
1) Install JDK 1.3.1 on DB server
2) tell Oracle DB, to use that JDK.
Is this the correct way? And how is step 2 done?
Looked on metalink, google etc., but could only find this for 9iAS (not the DB) and Oracle Applications 11i.
thanks, Sxren

Similar Messages

  • ISync failed with Nokia 9300i when update from Mac OS 10.4.9 to 10.4.10

    Hi all,
    My Nokia 9300i doesn't iSync anymore with 10.4.10 Mac OS. With the previous version, it worked fine and smoothly.
    Connection: tried both USB and Bluetooth
    Reset any connection (Bluetooth) on both Mac and Phone
    Symptom: begin to sync but fails when reaching the 100% contacts communication and when beginning with transferring information.
    Any idea what changed with this PS version that may affect iSync?
    Thanks a lot for any help!

    Hi,
    Thanks for the advice. I try to reboot several times but doesn't help. I tried also to reboot removing my memory card as well. No success. I copied here below the message coming from the iSync log.
    10:06:24 Connecting to Nokia 9300i
    10:06:44 Device "Nokia 9300i" connected
    10:06:44 Receiving changes from "Nokia 9300i".
    10:07:52 "Nokia 9300i" finished receiving changes
    10:07:58 "Nokia 9300i" Processing changes...
    10:08:04 "Nokia 9300i" engine processing complete
    10:08:04 Applying changes to "Nokia 9300i"
    10:08:04 Error [Nokia 9300i] An unexpected error occurred.
    10:08:04 Error Device "Nokia 9300i" synchronization failed

  • Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.

    Hi All,
    I am trying to add a new task to a Tasks list called CATasks. The list was created via Visual Studio “Add > New Item > List” process and not by custom code. The code I am using to add a task is shown below.
    What I have noticed is if I use my code to add a Task to a Task List created by Visual studio “Add > New Item > List” process, I get an error. Error message when adding an item:
    Call failed. Error: An unexpected 'PrimitiveValue' node was found when reading from the JSON reader. A 'StartObject' node was expected.
    But if I create the same list using custom code I don't get an error.
    Am I missing something in my custom code or is this a bug?
    I hope you can help.
    CEStar
    App.js Code:
    function createItem() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/?$select=Title,CurrentUser/Id&$expand=CurrentUser/Id",
    type: "GET",
    dataType: "json",
    headers: {
    Accept: "application/json;odata=verbose"
    call.done(function (data, textStatus, jqXHR) {
    var userId = data.d.CurrentUser.Id;
    addItem(userId);
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function addItem(userId) {
    var due =
    new Date();
    due.setDate(due.getDate() + 7);
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getByTitle('CATasks')/Items",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.Data.CATasksListItem" },
    Title: "Sample Task",
    AssignedToId: userId,
    DueDate: due
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var div = jQuery("#message");
    div.text("Item added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    failHandler(jqXHR, textStatus, errorThrown);
    function failHandler(jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);
    Create List Custom Code:
    function createList() {
    var call = jQuery.ajax({
    url: _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists",
    type: "POST",
    data: JSON.stringify({
    "__metadata": { type:
    "SP.List" },
    BaseTemplate: SP.ListTemplateType.tasks,
    Title: "CATasks"
    headers: {
    Accept: "application/json;odata=verbose",
    "Content-Type":
    "application/json;odata=verbose",
    "X-RequestDigest": jQuery("#__REQUESTDIGEST").val()
    call.done(function (data, textStatus, jqXHR) {
    var message = jQuery("#message");
    message.text("List added");
    call.fail(function (jqXHR, textStatus, errorThrown) {
    var response = JSON.parse(jqXHR.responseText);
    var message = response ? response.error.message.value : textStatus;
    alert("Call failed. Error: " + message);

    Hi,
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thanks 
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • Local Domain Index  query fails with ora-01410: invalid rowid

    Hello!
    I have a task to implement partitioned domain index for range partitioned table.
    As I understood from reference http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28425/dom_idx.htm
    the main difference is to provide support for partitioning operations by
    implementing corresponding ODCI interface functions.
    For the first I decided to create something simple to not spend time on system partitioned
    index storage table. My problem is that domain index works correctly when it's created without
    support for partitioning and produces "*ORA-01410: INVALID ROWID*" when it's created
    with LOCAL option.
    Test query:
    SELECT /* +index(from_sample_index) */ * FROM index_in_partitioned_tbl WHERE position_between(card_no)  < 50 ORDER BY card_no DESC;
    Index creared in this way returns 3 rows:
    CREATE INDEX from_sample_index ON index_in_partitioned_tbl (card_no) INDEXTYPE IS position_indextype;
    When index has been creared with LOCAL option I got "ORA-01410: INVALID ROWID" :
    CREATE INDEX from_sample_index ON index_in_partitioned_tbl (card_no) INDEXTYPE IS position_indextype LOCAL;
    I don't post implementation's source code to reduce amount of text in post. It works for global index.
    If I copy rowid from index storage table and then put it into something like
    SELECT card_no FROM index_in_partitioned_tbl WHERE rowid = 'AAAXHGAAEAAAFERAAh';
    then it will be executed successfully without any errors.
    I suppose the error could be somehow linked with "alter index" calls that Oracle makes when local domain index is created.
    The calls are made with option "AlterIndexRebuild" - possibly they mark index as invalid (though it's shown as valid in SQL Developer)

    Solved :)
    when index is LOCAL calls for ODCIINDEXSTART - ODCIINDEXFETCH - ODCIINDEXCLOSE are executed for each partition of base table.
    In my case ODCIINDEXFETCH returns row_id's regardless of partition that are currently scanned for values. So first call returned rowid values for all partitions not only for the first partition and validation failed with "ora-01410: invalid rowid"

  • Financial Statement Generators fail with ORA-01722

    We upgaded from 11.5.10.2 to R12.1.3. Since then we have FGSs fail with ora-01722

    *+<Moderator edit - deleted MOS Doc content - pl do NOT post such content - it is a violation of your Support agreement>+*
    Please refer:
    R12: FSG: PERF0005 Error Detected In GET_DEF_LDGS – ORA-01403: No Data Found Common Issues [ID 1368691.1]
    R12: RGRARG FSG Completes with Error, rgrsap.rgrsxp: ORA-01722: Invalid Number [ID 579655.1]

  • EXPDP fails with ORA-39125: Worker unexpected fatal error in KUPW $

    Hi Friends,
    Oracle 10.2.0.4.0 on Sun OS
    Im trying to do metadata_only export using EXPDP
    Facing the below error
    ORA-39125: Worker unexpected fatal error in KUPW $ WORKER.UNLOAD_METADATA while calling DBMS_METADATA.FETCH_XML_CLOB []
    ORA-31642: The following SQL statement fails:
    BEGIN "SYS". "DBMS_RULE_EXP_RULES." SCHEMA_CALLOUT (1,1,1, '10 .02.00.04.00 ') END;
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_METADATA", line 907
    ORA-00942: table or view does not exist
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
    ORA-06512: at "SYS.KUPW $ WORKER", line 6307
    PL / SQL Call Stack
    object line object
    handle number name
    51bf5dc20 15032 package body SYS.KUPW $ WORKER
    51bf5dc20 6372 package body SYS.KUPW $ WORKER
    51bf5dc20 2396 package body SYS.KUPW $ WORKER
    51bf5dc20 6944 package body SYS.KUPW $ WORKER
    51bf5dc20 1314 package body SYS.KUPW $ WORKER
    51c7e8650 2 anonymous block
    ====================================
    Findings:
    I check the status of DBMS_RULE_EXP_RULES
    OWNER OBJECT_NAME OBJECT_TYPE STATUS
    SYS DBMS_RULE_EXP_RULES PACKAGE BODY VALID
    SYS DBMS_RULE_EXP_RULES PACKAGE VALID
    PUBLIC DBMS_RULE_EXP_RULES SYNONYM VALID
    DBMS_METADATA & DBMS_SYS_ERROR packages are valid.
    ======================================================
    Error in the alert:
    The value (30) of MAXTRANS parameter ignored.
    kupprdp: master process DM00 started with pid=25, OS id=6506
    to execute - SYS.KUPM$MCP.MAIN('SYS_EXPORT_SCHEMA_01', 'SYS', 'KUPC$C_1_20120908075037', 'KUPC$S_1_20120908075037', 0);
    kupprdp: worker process DW01 started with worker id=1, pid=26, OS id=6633
    to execute - SYS.KUPW$WORKER.MAIN('SYS_EXPORT_SCHEMA_01', 'SYS');
    when i check the trace file, find the below error
    ORA-04063: package body "SCH.COLLECTION" has errors
    But when I check the status of the package, it's valid.
    Thanks for your help
    KSG

    Hi;
    Is it full exp? Of yes please review:
    DataPump Export Fails With Errors ORA-39125 ORA-31642 ORA-1422 [ID 790988.1]
    Full And Schema DataPump Exports Fail With Errors ORA-39125 ORA-31642 During DBMS_SCHED_EXPORT_CALLOUTS.SCHEMA_CALLOUT [ID 1109045.1]
    EXPDP FAILS WITH ORA-39125 ORA-31642 DBMS_SCHED_EXPORT_CALLOUTS [ID 445291.1]
    Full Database DataPump Export (EXPDP) Fails With Errors ORA-39125 ORA-4045 ORA-1031 On XDB.XDB_PI_TRIG [ID 1102434.1]
    Errors ORA-39125 ORA-1801 When Running DataPump Export (EXPDP) [ID 815683.1]
    Regard
    Helios

  • Oem 12.1.0.3 installer fails with ora-01017

    Greetings,
    I am attempting to upgrade my OEM 12.1.0.1 installation to 12.1.0.3. I am following the instructions in the Oracle Enterprise Manager Cloud Control Upgrade Guide and Oracle Support Note 1568143.1. I have verified that all prerequisites are met and have installed patch 11061801 to the repository. The repository and OMS are on different machines. The 12.1.0.1 installation is able to connect to the repository, it has been running successfully for some time now. On the OMS server I stopped the OMS and the Agent and I invoke the 12.1.0.3 installer. I follow the steps and when it gets to the connection page it fails with ORA-01017. The messages are shown -
    1. Verify if the SYS password you entered is valid.
    2. Verify if the database initialization parameter REMOTE_LOGIN_PASSWORDFILE is set to either Shared or Exclusive.
    3. Verify if a password file with the file name orapw<SID> exists in the <ORACLE_HOME>/dbs directory.
    All conditions are met:
    -bash-3.2$ echo $ORACLE_SID
    oemrepos
    SQL> connect sys as sysdba
    Enter password:
    Connected.
    SQL> connect sysman
    Enter password:
    Connected.
    SQL> show parameter remote_login_passwordfile
    NAME                                 TYPE        VALUE
    remote_login_passwordfile            string      EXCLUSIVE
    -bash-3.2$ ls -l $ORACLE_HOME/dbs/orapwoemrepos
    -rw-r----- 1 oracle dba 1536 Jan 30  2013 /usr/local/oracle/app/oracle/product/11.2.0/dbhome_1/dbs/orapwoemrepos
    I am able to connect remotely from another machine. sqlplus is not installed on the OMS server.
    I am completely stumped and in need of assistance. Searching the web only indicates that I need to insure that the above listed conditions should be met, they are. If anyone has any suggestions I would appreciate the help.
    Thank you.
    Bill Wagman

    On repository server , can you login as sys user ?
    Try to connect through listener and share the result.
    sqlplus sys/<password>@<connectstring> as sysdba
    Thanks
    Rajesh

  • CSSCAN for database character set conversion failing with ORA-01578

    Hi ,
    CSSCAN for database character set conversion failing with ORA-01578: ORACLE data block corrupted (file # 84, block # 23930). please help me out in this regard.
    Thanks,
    Sravan.

    Hi Anand,
    Thanks for your update. The segment is a table not an index in my case. And i got this error while running CSSCAN on Apps database for character set conversion to UTF8 from WE8ISO8859P1. Please find the snapshot below for your reference.
    SQL> select segment_name, segment_type, owner from dba_extents where file_id = 84 and 23930 between block_id and block_id + blocks - 1;
    SEGMENT_NAME
    SEGMENT_TYPE OWNER
    EDW_LOOKUP_M
    TABLE POA
    SQL> ANALYZE TABLE POA.EDW_LOOKUP_M VALIDATE STRUCTURE CASCADE;
    ANALYZE TABLE POA.EDW_LOOKUP_M VALIDATE STRUCTURE CASCADE
    ERROR at line 1:
    ORA-01578: ORACLE data block corrupted (file # 84, block # 23930)
    ORA-01110: data file 84: '/d911/oracle/dbcondata/poad01.dbf'
    Thanks,
    Sravan.

  • ORA-01555 with ORA-02063 when submitted Concurrent  Requests

    Hello,
    My development team has reported some CM Requests got failed with some errors.When i checked the request log file i saw :java.sql.SQLException: ORA-01555: snapshot too old: rollback segment number with name "" too small ORA-02063: preceding line from EIHFDM  .Could you please help me out this to solve this issue.
    We are on Oracle Database 10g Release 10.2.0.5.0 - 64bit
    Application 11.5.10
    I have checked the UNDO Parameter values
    ACTUAL UNDO SIZE (MEGS) UNDO RETENTION (Secs)                OPTIMAL UNDO RETENTION (Secs)
                                     304849                               40000                4860
    Thanks,
    Prabhat.

    Hi Asif,
    This is a customized program.
    I have checked the UNDO Parameter values
    SQL> show parameter undo
    NAME                                 TYPE        VALUE
    _in_memory_undo                 boolean     TRUE
    _undo_debug_usage              integer     2
    undo_management                 string      AUTO
    undo_retention                       integer     40000
    undo_tablespace                    string      APPS_UNDOTS
    SQL>
    ACTUAL UNDO SIZE (MEGS) UNDO RETENTION (Secs)                OPTIMAL UNDO RETENTION (Secs)
                                     304849                               40000                4860

  • SRVCTL START DATABASE FAILS WITH  ORA-00119

    Hi,
    My DB version is 11.2.0.2.3
    I am able to start the DB thorough sqlplus as conventional way.But when I am trying to start using SRVCTL it gives the following errors:
    CRS-5017: The resource action "ora.****.db start" encountered the following error:
    SRVCTL START DATABASE FAILS WITH ORA-00119: invalid specification for system parameter LOCAL_LISTENER
    ORA-00132: syntax error or unresolved network name 'LISTENER_local'
    Can you please suggest for any workaround.
    Thanks

    Did you check the TNS_ADMIN? Where does it point to?
    Also check if you have all the network files placed under the directory pointed to by TNS_ADMIN.
    sqlnet.ora
    listener.ora
    tnsnames.ora

  • ORA-00904 while reading from Excel with ODI

    Hi all
    I'm trying to read data from some simple Excel files and to write the data into a 10g DB, but I get errors that don't make sense to me.
    Hope someone can give me an idea how I could get around them.
    For some files the transfer works as expected. For another one I get a ORA-00904 (invalid identifier) Message
    My Excel file that makes problems looks like that:
    __A___ __B___
    String1 String3
    String2 String4
    Through "ODI Reverse" I get a Datastore with one table containing the 2 columns F1 and F2 (both of type VARCHAR).
    Then I export this table and import it into my target datastore and set the adequate datatype (VARCHAR2).
    The next step is to create an interface and to use the two tables there (not to forget to define one column as key).
    As LKM I'm using SQL-to-SQL and as IKM I use Oracle-Incremental-Update.
    This process works fine for most of my Excel files but for the simple one described above ODI fails with ORA-00904.
    I tried to run the generated SQL directly on the DB with JDeveloper and the error occurs this way as well. The generated SQL is:
    /* DETECTION_STRATEGY = NOT_EXISTS */
    insert /*+ APPEND */ into TEST_TARGET.I$_FEASIBILITY
         F1,
         F2,
         IND_UPDATE
    select      
         C1_F1     F1,
         C2_F2     F2,
         'I' IND_UPDATE
    from     TEST_TARGET.C$_0FEASIBILITY
    where     (1=1)
    and not exists (
         select     'X'
         from     TEST_TARGET.FEASIBILITY T
         where     T.F1     = F1
              and     ((C2_F2 = T.F2) or (C2_F2 IS NULL and T.F2 IS NULL))
    Error Message:
    Error at Command Line:26 Column:44
    Error report:
    SQL Error: ORA-00904: "T"."F2": invalid identifier
    00904. 00000 - "%s: invalid identifier"
    *Cause:   
    *Action:
    Line 26 is the last but one and Column 44 is after the "or".
    In the beginning I used column headings, but I deleted them all after I had run into issues ORA-00904.
    Meanwhile I think that the root cause must be s.th. different as I'm only using the generic names and I can't believe that T.F2 is a reserved word.
    Any ideas? It would help me a lot to get this issue fixed.
    Thanks
    Rob

    Hi ,
    Try to use Double Quote (") in the mapping field of target datastore.
    Hope this help
    Thanks.

  • All scheduled jobs started suddenly to fail with ORA-01031: insufficient pr

    I have a setup of gridcontrol 11g on windows 2008. I've been running successful for weeks until the other day when all my scheduled jobs started to fail with
    ORA-01031: insufficient privileges (rman jobs)
    ERROR: Invalid username and/or password (sql scripts).
    I verified for the accounts being locked, pw correct, expired / grace period, etc.
    all good when I try from the command line. running an rman backup from the command line works great, but the same one through the job scheduler fails with ORA-01031.
    I've dropped the jobs completely, recreated them again. same thing.
    I'm using preferred credentials and dropped and recreated them. same thing.
    I don't know where else to look. Only grid control scheduled jobs fail, but all of them do.
    I'm using SQLNET.AUTHENTICATION_SERVICES= (NTS) in my sql.ne (always have).
    we use a windows domain server / domain authentication for logging into boxes. I haven't changed any of my passwords.
    I am probably looking in the wrong places. Anybody able to help?

    Hi,
    ERROR: Invalid username and/or password (sql scripts).This error message clearly tells that password is incorrect and "insufficient privileges" shows that perhaps you are using SYS user for running the jobs and password for user SYS is incorrect.
    If you are specifying passwords in your scripts, i don't think you need to set preferred credentials.
    Try following
    1) Remove preferred credentials
    2) Don't check password of user sys by locally logging in (because if Os authentication is on, even wrong password will allow you loging into the database and you will think that password is correct). Try connecting database using SYS user from a remote machine and check whether it accepts your password and make sure you have same password for your jobs and in sql scripts
    3) If still problem, just for test, remove SQLNET.AUTHENTICATION_SERVICES= (NTS) and try
    Salman

  • Export fails with ORA-24324

    After registering any XML Schema export fails with ORA-24324. any suggestions?
    Platform is Windows 2000, db characters: UTF-8
    exp system/manager@syzxml owner=(syzem) file=a.dmpExport: Release 9.2.0.4.0 - Production on Sun Nov 23 09:52:13 2003
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in EE8MSWIN1250 character set and AL16UTF16 NCHAR character set
    server uses AL32UTF8 character set (possible charset conversion)
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user SYZEM
    . exporting PUBLIC type synonyms
    . exporting private type synonyms
    . exporting object type definitions for user SYZEM
    About to export SYZEM's objects ...
    . exporting database links
    . exporting sequence numbers
    . exporting cluster definitions
    EXP-00056: ORACLE error 24324 encountered
    ORA-24324: service handle not initialized
    EXP-00056: ORACLE error 24324 encountered
    ORA-24324: service handle not initialized
    EXP-00000: Export terminated unsuccessfully
    v$version:
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    PL/SQL Release 9.2.0.4.0 - Production
    CORE 9.2.0.3.0 Production
    TNS for 32-bit Windows: Version 9.2.0.4.0 - Production
    NLSRTL Version 9.2.0.4.0 - Production
    dba_registry:
    COMP_NAME STATUS
    VERSION
    Oracle9i Catalog Views VALID
    9.2.0.4.0
    Oracle9i Packages and Types VALID
    9.2.0.4.0
    Oracle Workspace Manager VALID
    9.2.0.1.0
    Oracle XML Database VALID
    9.2.0.4.0
    nls_session_parameters:
    PARAMETER VALUE
    NLS_CALENDAR GREGORIAN
    NLS_COMP BINARY
    NLS_CURRENCY z&#9474;
    NLS_DATE_FORMAT RR/MM/DD
    NLS_DATE_LANGUAGE POLISH
    NLS_DUAL_CURRENCY z&#9474;
    NLS_ISO_CURRENCY POLAND
    NLS_LANGUAGE POLISH
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NUMERIC_CHARACTERS .,
    PARAMETER VALUE
    NLS_SORT POLISH
    NLS_TERRITORY POLAND
    NLS_TIME_FORMAT HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT RR/MM/DD HH24:MI:SSXFF
    NLS_TIMESTAMP_TZ_FORMAT RR/MM/DD HH24:MI:SSXFF TZR
    NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR

    Try use export utility version 9.0.1.1.1 or
    store XMLType as CLOB.

  • RAC Cloning failing with ORA-12505: TNS:listener does not currently know of SID given in connect

    Hi Folks
      Application cloning is failing with "ORA-12505: TNS:listener does not currently know of SID given in connect"
    Database cloning is completed successfuly .   database cloned in two nodes node1 and node2
    Now cloning applicatino tier with above cloned database nodes but faicing above issue .
    Thanks

    There are many reasons why an ORA-12505 might be raised at applications cloning. For anyone on this board to assist, you will have to post the log file detail or list the clone execution file which raises this exception.
    Thanks,
    Arif.

  • My computer crashed with lightroom open, since restart I get a msg LR encounted an error when reading from its preview cache and needs to quit

    Hi All
    My computer crashed with lightroom open, since restart I get a msg 'LR encounted an error when reading from its preview cache and needs to quit'
    I'd appreciate any suggestions
    Many thanks

    Many thanks for your help, at lease the LR is working now. How do I rebuild previews and smart previews or will this happen automatically?
    Many thanks

Maybe you are looking for

  • DV devise not being read by computer

    I'm baffled by my issue. Two cameras (Optura 20, DVX100) not being read by my eMac. 1 Sony cam reads fine. Only recently, after 3 years of my Optura being used as a deck on my eMac, decides it doesn't want to communicate with my eMac, and another G5

  • Check variable against an array of words

    Hi, I wish to check a variable for a number of words that are in a array. Not sure if this is the best way to do it, but this is what i have. I have my own counter system that counts every visitor, but some of these visits are from BOTS, spiders.. So

  • Color Correction Workflow Question

    If I am color correcting on the "original clip" - and then pulling that color corrected "original clip" into its own "clip sequence" that I then pull into a "master sequence", along with all the other "clip sequences" that make up my edit, and I am t

  • IPhoto crashes... a lot!

    Has anyone else been finding that iPhoto '09 crashes quite a bit? WAY more frequently than '08. It just seems like all the new functionality (while impressive) is slowing the program down a lot. Anyone else feeling this performance decline or is it m

  • SSD in MBP early 2011 optical drive

    i have an i7 macbook pro that has been very tired lately from video editing and photoshop i have a 500 gb hdd that i want for random files (current hard drive) i want to run adobe premiere, photoshop and larger files from the ssd i will be putting th