Problems while enabling Failover with Parallel Concurrent Processing (PCP)

Hi,
I followed the following Note , to configure PCP :
From Note 743716.1 - How to Setup and Test Failover of PCP on Non-RAC Environments
Concurrent Managers configured :
ERPCON1
ERPCON2
On those 2 Nodes :
- APPLDCP is 'ON'
- s_cp_reviver is 'enabled' (See Note 466752.1 - What is FNDREVIVER and How Is It Set?)
-> Concurrent Managers have been started with REVIVER_PROCESS="enabled"
The following Patches have been applied :
- One-off Patch 6495206
- Patch 9074947
- One-off Patch 7295684 (See Note 727127.1)
Manager Setup :
Assuming the 2 CP nodes defined on the environment are Primary ERPCON1(CP,Admin)
and Secondary ERPCON2(CP)
the below table gives a snapshot of few of the Manager definitions used for the failover testing.
Manager Name : Internal Manager (ICM)
Primary Node : ERPCON1
Secondary Node : ERPCON2
Manager Name : Internal Monitor_ERPCON1
Primary Node : ERPCON1
Secondary Node : ERPCON2
Manager Name : Internal Monitor_ERPCON2
Primary Node : ERPCON2
Secondary Node : ERPCON1
Manager Name : Standard Manager
Primary Node : ERPCON1
Secondary Node : ERPCON2
Manager Name : Conflict Resolution Manager(CRM)
Primary Node : ERPCON1
Secondary Node : ERPCON2
Manager Name : Scheduler/Prereleaser Manager)
Primary Node : ERPCON1
Secondary Node : ERPCON2
Failover Tests :
- Shutdown Concurrent Managers , Listener on ERPCON1
-> No Failover on ERPCON2 !!!
No Concurrent Managers are starting on ERPCON2
Regards,
Harry

Hi Harry;
Is there any error message on CM logs? Please also see below note:
How to Activate Parallel Concurrent Processing - More Facts [ID 602899.1]
Regard
Helios

Similar Messages

  • Problem while Creating MVLOG with synonym in Oracle 9i:Is it an Oracle Bug?

    Hi All,
    I am facing a problem while Creating MVLOG with synonym in Oracle 9i but for 10G it is working fine. Is it an Oracle Bug? or i am missing something.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    SQL>
    SQL> create table t ( name varchar2(20), id varchar2(1) primary key);
    Table created.
    SQL> create materialized view log on t;
    Materialized view log created.
    SQL> create public synonym syn_t for t;
    Synonym created.
    SQL> CREATE MATERIALIZED VIEW MV_t
      2  REFRESH ON DEMAND
      3  WITH PRIMARY KEY
      4  AS
      5  SELECT name,id
      6  FROM syn_t;
    Materialized view created.
    SQL> CREATE MATERIALIZED VIEW LOG ON  MV_t
      2  WITH PRIMARY KEY
      3   (name)
      4    INCLUDING NEW VALUES;
    Materialized view log created.
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE    9.2.0.6.0       Production
    TNS for Solaris: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    SQL>
    SQL> create table t ( name varchar2(20), id varchar2(1) primary key);
    Table created.
    SQL> create materialized view log on t;
    Materialized view log created.
    SQL> create public synonym syn_t for t;
    Synonym created.
    SQL> CREATE MATERIALIZED VIEW MV_t
    REFRESH ON DEMAND
    WITH PRIMARY KEY
    AS
      2    3    4    5  SELECT name,id
    FROM syn_t;   6
    Materialized view created.
    SQL> CREATE MATERIALIZED VIEW LOG ON  MV_t
    WITH PRIMARY KEY
    (name)
      INCLUDING NEW VALUES;  2    3    4
    CREATE MATERIALIZED VIEW LOG ON  MV_t
    ERROR at line 1:
    ORA-12014: table 'MV_T' does not contain a primary key constraintRegards
    Message was edited by:
    Avinash Tripathi
    null

    Hi Nicloei,
    Thanks for the reply. Actually i don't want any work around (Creating MVLOG on table rather than synonym is fine with me) . I just wanted to know it is actually an oracle bug or something else.
    Regards
    Avinash

  • Problem while uploading data with GUI UPLOAD Function

    Hi,
      I am facing problem while uploading data with FM GUI UPLOAD    in out text file there are 7 row  but after the FM GUI UPLOAD  there are 14 entries are coming in Internal table   and each alternate row is coming as blank  with  0000 in some column   in internal table first row is proper and second line is blank so on.
    what can be the problem .
    The program in which we are using this we are using it from last 2 year but we are facing problem today only.
    regards,
      zafar

    Hi,
      The file formate is same as it is from last two years it is automatically generated by one another bar code server and there is no change  in the file formate.
      So waht can be the problem  to check any inconsistancy in system  i have develop a samll program fro  uploading a text file with same function module ,  but it is working fine.
    regards,
      zafar

  • Problem while creating xml with cdata section

    Hi,
    I am facing problem while creating xml with cdata section in it. I am using Oracle 10.1.0.4.0 I am writing a stored procedure which accepts a set of input parameters and creates a xml document from them. The code snippet is as follows:
    select xmlelement("DOCUMENTS",
    xmlagg
    (xmlelement
    ("DOCUMENT",
    xmlforest
    (m.document_name_txt as "DOCUMENT_NAME_TXT",
    m.document_type_cd as "DOCUMENT_TYPE_CD",
    '<![cdata[' || m.document_clob_data || ']]>' as "DOCUMENT_CLOB_DATA"
    ) from table(cast(msg_clob_data_arr as DOCUMENT_CLOB_TBL))m;
    msg_clob_data_arr is an input parameter to procedure and DOCUMENT_CLOB_TBL is a pl/sql table of an object containing 3 attributes: first 2 being varchar2 and the 3rd one as CLOB. The xml document this query is generating is as follows:
    <DOCUMENTS>
    <DOCUMENT>
    <DOCUMENT_NAME_TXT>TestName</DOCUMENT_NAME_TXT>
    <DOCUMENT_TYPE_CD>BLOB</DOCUMENT_TYPE_CD>
    <DOCUMENT_CLOB_DATA>
    &lt;![cdata[123456789012345678901234567890123456789012]]&gt;
    </DOCUMENT_CLOB_DATA>
    </DOCUMENT>
    </DOCUMENTS>
    The problem is instead of <![cdata[....]]> xmlforest query is encoding everything to give &lt; for cdata tag. How can I overcome this? Please help.

    SQL> create or replace function XMLCDATA_10103 (elementName varchar2,
      2                                             cdataValue varchar2)
      3  return xmltype deterministic
      4  as
      5  begin
      6     return xmltype('<' || elementName || '><![CDATA[' || cdataValue || ']]>
      7  end;
      8  /
    Function created.
    SQL>  select xmlelement
      2         (
      3            "Row",
      4            xmlcdata_10103('Junk','&<>!%$#&%*&$'),
      5            xmlcdata_10103('Name',ENAME),
      6            xmlelement("EMPID", EMPNO)
      7         ).extract('/*')
      8* from emp
    SQL> /
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[SMITH]]></Name>
      <EMPID>7369</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[ALLEN]]></Name>
      <EMPID>7499</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[WARD]]></Name>
      <EMPID>7521</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[JONES]]></Name>
      <EMPID>7566</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[MARTIN]]></Name>
      <EMPID>7654</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[BLAKE]]></Name>
      <EMPID>7698</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[CLARK]]></Name>
      <EMPID>7782</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[SCOTT]]></Name>
      <EMPID>7788</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[KING]]></Name>
      <EMPID>7839</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[TURNER]]></Name>
      <EMPID>7844</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[ADAMS]]></Name>
      <EMPID>7876</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[JAMES]]></Name>
      <EMPID>7900</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[FORD]]></Name>
      <EMPID>7902</EMPID>
    </Row>
    <Row>
      <Junk><![CDATA[&<>!%$#&%*&$]]></Junk>
      <Name><![CDATA[MILLER]]></Name>
      <EMPID>7934</EMPID>
    </Row>
    14 rows selected.
    SQL>

  • Parallel concurrent processing

    Hi All,
    I need some information about parallel concurrent processing.
    Anybody please help me and share your information and also give some links, documents and metalink note id regarding this.
    Regards,
    Ganesh
    Trainee DBA

    I need some information about parallel concurrent processing.
    Anybody please help me and share your information and also give some links, documents and metalink note id regarding this.We had this discussion many times in the forum before; please see old threads for details.
    PCP
    https://forums.oracle.com/forums/search.jspa?threadID=&q=PCP&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Parallel Concurrent Processing
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Parallel+AND+Concurrent+AND+Processing&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Problem while reversing allocations with KEU5

    Dear Experts,
    we encounter some problems when reversing allocations with KEU5 (using KSU5 in the background). When doing so all 4 update processes will be occupied by the system on our 2 servers. Which means that the systems is blocked. 
    Thanks in advance for help and best regards
    Melanie

    SAP OSS Says the following
    This is not a program
    error and completely correct
    behaviour. Nevertheless, I would like provide the following
    recommendations which could possibly reduce workload/improve the
    runtime in the transaction KEU5:
    1. Please make sure that
    the flag for 'detail list' is not activated.
    If the option 'detailed list' is selected, a detailed output list is
    created for every segment. This takes up the largest amount of time
    during the process.
    2. Ensure that the Summarization that you use are updated on a regular
    basis, daily if possible.
    3. Also consider the
    cycles dimensions recommended by SAP (a maximum
    of 50 segments per cycle, a maximum total of 10,000 sender-receiver
    relationships, see documentation). If possible, enter only those
    objects in the cycle that are valid senders or receivers. Consider
    that if, for example, you entered 100 cost centers in a group of which
    only 20 are valid receivers, the complete master data validation and
    database selection is carried out for all 100. See note 79224 and
    130350 for further information.
    4. For the definition of segments and their summary in cycles, you
    should take into account the technical aspects included in note 420081.
    Please take into account that the selection of data is carried out
    from CE3xxxx, CE4xxxx (no effect at this point if you have archived
    CE1xxxx), as explained in note 420081.
    The selection of the reference data can both be carried out from a
    summarization level or from object level (tables CE3xxxx, CE4xxxx).
    In additional , you are
    recommended to perform
    this transaction during the evening/night. This will affect the system
    processes/workload during peak period.

  • Net_PRICE problem while creating PO with BAPI_PO_CREATE1 ***ASAP

    Dear All,
    While creating PO with bapi BAPI_PO_CREATE1, The net price is not populating, though the logic is correct, as when i change the net price to some otrher value of in the bapi, while debugging, it is taking the Net price, but in general run, the price is over written by Gross price in PO, Please Help, Its Urgent.
    Any Sample codes are welcomed, where Net_price is used.
    Thanks in Advance..
    Rewards Guaranteed.

    Dear All,
    While creating PO with bapi BAPI_PO_CREATE1, The net price is not populating, though the logic is correct, as when i change the net price to some otrher value of in the bapi, while debugging, it is taking the Net price, but in general run, the price is over written by Gross price in PO, Please Help, Its Urgent.
    Any Sample codes are welcomed, where Net_price is used.
    Thanks in Advance..
    Rewards Guaranteed.

  • OWSM problems while associating clientAgent with BPEL process

    Hi All,
    Refering to the PDF *"Securing Oracle SOA Applications by Using Oracle Web Services Manager (Oracle WSM) Agents.pdf"* we made an clientAgent and associated that with a simple BPEL process. After that we did the following:
    1) Change the Configuration Directory (with the component id of the clientAgent)
    2) Enable Web Services Agent (which was not mentioned in the pdf).
    3) Restart the SOA server.
    At the time of executing the BPEL process it is giving an error like "internal server error". Log is not being generated for clientAgent. At BPEL domaim log it is giving the following error:
    ORABPEL-02152
    Instance not found in datasource.
    The process domain was unable to fetch the instance with key "0ec681d22ef098ba:-529c35a1:1220cecf7e4:-7fcf" from the datasource.
    Please check that the instance key "0ec681d22ef098ba:-529c35a1:1220cecf7e4:-7fcf" refers to a valid instance that has been started and not removed from the process domain.
    Please reslove as early as possible.
    Thanks in Advance.
    Chandra.

    There are a few things you can do when trying to troubleshoot this kind of problem:
    1) tunnel the interaction between the BPEL server and the web service to see what SOAP messages are exchanged.
    2) try to turn debugging of the ws layer on: BPEL Console>Manage Domain>Logging
    2) email us your project, including the WSDL of your service so that we can take a look at it.
    Finally, one best practice is to never think in terms of Java object. Instead always start by designing your WSDLs and XSDs thinking of ports and XML documents and then generate the stubs. This will guaranty that your service is interoperable.
    Edwin

  • Oracle 12.1.3 Parallel Concurrent Processing Failover

    I have installed / configured PCP on 12.1.3 Ebiz
    When I stop the processes on the PRIMARY NODE, the processes on the secondary node stop also
    I want the SECOND NODE to automatically take up the processing the the PRIMARY NODE was carrying out
    Any ideas what I am doing wrong?
    I have Primary / Secondary node defined at the Conc Manger level
    I have it set for the Conflict Resolution manager also (how ever I only have CRM set for Primary node... do I need to set this for the secondary node also?)
    My aim eventually is to LOAD BALANCE between the two nodes and then have the failover automatic
    Anyone out there seen any blatant errors with what I have described?
    Thanks

    969654 wrote:
    I have installed / configured PCP on 12.1.3 Ebiz
    When I stop the processes on the PRIMARY NODE, the processes on the secondary node stop also
    I want the SECOND NODE to automatically take up the processing the the PRIMARY NODE was carrying out
    Any ideas what I am doing wrong?This is an expected behavior when you stop the CM normally.
    I have Primary / Secondary node defined at the Conc Manger level
    I have it set for the Conflict Resolution manager also (how ever I only have CRM set for Primary node... do I need to set this for the secondary node also?)
    My aim eventually is to LOAD BALANCE between the two nodes and then have the failover automatic
    Anyone out there seen any blatant errors with what I have described?Please see old thread for the PCP failover docs you need to refer to -- https://forums.oracle.com/forums/search.jspa?threadID=&q=PCP+AND+Failover&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Configuring Parallel Concurrent Processing with ssh

    Happy New Year,
    Metalink Note 185489.1 describes setting up PCP so that the applmgr account on each node can rsh into the other apps tier nodes, but has anyone been successful in setting it up with ssh? I see that the last time this document was updated was in 2004, quite some time ago.
    Sincerely,
    Ted Persky
    Sun Microsystems, Inc.

    I have configured PCP in 11.5.10.2 having two application server with OS RHEL 4.0 as follows:
    a. On node app1 check whether the apps_sid listener is up and if it is down bring it up.
    b. Log in to the applications by system administrator responsibility and do the following steps:
    1. Check whether both the nodes are registered by navigating to Install > Nodes and verify.
    2. Navigate to Concurrent > Manager > Define and query for Internal Manager.
    3. In the secondary node box enter the name of <node2> and save the changes.
    4. Do the same for some other concurrent managers except Standard.
    5. For some concurrent managers do the reverse i.e. enter aap2 as the primary node and app1 as secondary node.
    6. Query whether service managers of the name Service Manager (<node2>) and Internal Monitor (<node2>) exists along with its <node1> counterparts.
    7. For Service Managers and Internal Monitors of both app1 and app2 define a ‘Standard’ workshift (IMP- The workshifts are not defined by default for IMON/SM since the IMON is a feature exclusively for PCP).
    8. Define a new concurrent manager of name Standard Manager2 with definitions same as that of a Standard Manager except that in the specialization rules form include a program, say, Active Users.
    9. Exclude the Active User program from the specialization rules of the Standard Manager.
    10. Stop and start the concurrent managers by executing the script adcmctl.sh.
    11. Check whether the FNDSM and FNDIMON processes have started on both the nodes. It should be, otherwise it is indicative of miss-configuration.
    12. Navigate to Concurrent > Manager > Administer form select the Standard Manager 2 and activate it.
    13. After it has activated check from the back-end of the second node whether the desired FNDLIBR processes have been started. It should be, otherwise it is indicative of miss-configuration.
    Regards,
    Nitesh.

  • Problem while using XML with Oracle

    I have a problem using XML with oracle applications
    The process I am following
    1. Making a XML string.
    2. Parsing it to get a document
    3. Free the parser using xmlparser.freeparser
    4. Traversing through nodes .
    5. Freeing the document.
    The whole Process is executed in batch mode.
    The problem occurs after executing the procedure for 5000 records and I get the error
    ORA-04031: unable to allocate 4176 bytes of shared memory ("shared pool","unknown object","sga
    heap","library cache")
    Can you please help me out to overcome this problem
    It's urgent
    I have
    Oracle version 8.1.7.0.0
    XML version 1.2
    OS Windows NT
    To resolve the problem I have increase shared memory size and java initialization parameters ,which seems OK
    Looking forward for your answer.

    Hello, Reena
    Your process flow seems to be correct in term of getting/freeing memory.
    Following error
    The problem occurs after executing the procedure for 5000 records and I get the error
    ORA-04031: unable to allocate 4176 bytes of shared memory ("shared pool","unknown object","sga
    heap","library cache")may be caused by memory leaks in xdk or memory fragmentation(due to get/free memory cycle)
    To find out if this is an memory leak issue you could try to monitor V$SGASTAT from one session while running your batch process in another session.
    To prevent (or lower its impact) fragmentation issues try to PIN objects, and adjust java_pool_size and shared_pool_reserved_size.
    Anyway, counsult your Oracle DBA.
    Oracle version 8.1.7.0.0I think, you should apply database patch first of all. The latest one (8.1.7.4.x) could be accured from Metalink.

  • Problem while sync iPhone with itunes (with cable)

    hello guys
    i am using iPhone 3GS version 5.1.1,
    whilie i am syncing my iPhone with itunes 11 using cable (or perivious version), a message appears as
    "itune is stop working, please close itune"
    this message appears when itunes is "BACKING UP" the data.
    please help me. i have change three cables also but still issue
    i cannt understand this problem
    thanks!
    i am using windows 7 (64-bit)

    Hey wavymitch,
    I changed my iTunes account email address and Apple ID Sign-in.  My iPhone and iPad 3 keeps bring up my old email address when I go to download any updates to any of the apps on the phone/pad and from there I am unable to log into my Apple ID. When I enter the settings on the devices to view "iTunes & Apps Stores" and then select "View Apple ID" I am once again unable to access with existing password which did not change in iTunes. 
    I appreciate your response and look forward to a solution(s).  Thanks much for your help and patience!

  • Problem while importing table with blob datatype

    hi i am having a database 9i on windows xp and dev database 9i on AIX 5.2
    while i am taking export of normal tables and trying to import i am successful.but when i am trying to import a table with blob datatype it is throwing "tablespace <tablespace_name> doesn't exist" error
    here how i followed.
    SQL*Plus: Release 9.2.0.1.0 - Production on Mon Oct 8 14:08:29 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Enter user-name: test@test
    Enter password: ****
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    SQL> create table x(photo blob);
    Table created.
    exporting:
    D:\>exp file=x.dmp log=x.log tables='TEST.X'
    Export: Release 9.2.0.1.0 - Production on Mon Oct 8 14:09:40 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Username: pavan@test
    Password:
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    Current user changed to TEST
    . . exporting table X 0 rows exported
    Export terminated successfully without warnings.
    importing:
    D:\>imp file=x.dmp log=ximp.log fromuser='TEST' touser='IBT' tables='X'
    Import: Release 9.2.0.1.0 - Production on Mon Oct 8 14:10:42 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Username: system@mch
    Password:
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Oracle Data Mining op
    tions
    JServer Release 9.2.0.6.0 - Production
    Export file created by EXPORT:V09.02.00 via conventional path
    Warning: the objects were exported by PAVAN, not by you
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    import server uses US7ASCII character set (possible charset conversion)
    . importing TEST's objects into IBT
    IMP-00017: following statement failed with ORACLE error 959:
    "CREATE TABLE "X" ("PHOTO" BLOB) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS "
    "255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "TESTTB"
    "S" LOGGING NOCOMPRESS LOB ("PHOTO") STORE AS (TABLESPACE "TESTTBS" ENABLE "
    "STORAGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE STORAGE(INITIAL 65536 FREE"
    "LISTS 1 FREELIST GROUPS 1))"
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'TESTTBS' does not exist
    Import terminated successfully with warnings.
    why it is happening for this table alone?plz help me
    thanks in advance

    Here is exerpt from {
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:378418239571}
    =============================================
    Hi Tom,
    I have a dump file containing blob datatypes, when i import the dump file in a schema it gives an
    error stating that the tablespace for Blob datatype does not exists. My question is how do i import
    the dump file in the default tablespace of the importing user.
    Followup March 2, 2004 - 7am US/Eastern:
    You'll have to precreate the table.
    do this:
    imp userid=u/p tables=that_table indexfile=that_table.sql
    edit that_table.sql, fix up the tablespace references to be whatever you want to be, run that sql.
    then imp with ignore=y
    for any MULTI-SEGMENT object (iot's with overflows, tables with lobs, partitioned tables, for
    example), you have to do this -- imp will not rewrite ALL of the tablespaces in that
    multi-tablespace create -- hence you either need to have the same tablespaces in place or precreate
    the object with the proper tablespaces.
    Only for single tablespace segments will imp rewrite the create to go into the default if the
    requested tablespace does not exist.
    ===================================================
    To summarize: precreate target table when importing multi-segment tables

  • [File] Problem while creating files with long pathnames

    Hello everybody
    I'm trying to create File objects corresponding to physical files. These files have very long pathnames because they are located in directories tree with large depth. So, my pathname conatins a lot of directories plus the name of the file itself.
    It seems, that there is a limitation in the length of the pathname that I pass to the File constructor because files with small pathnames are OK bu the ones with very large pathnames cannot be created.
    I tried the different File constructors (File(String pathname) and File(File parent, String childname)) but it still does not work. Even if the second constructor is a little bit better as it succeeds on files where the first constructor failed. But still, it's not enough.
    Please Help!
    Thank you
    Hugo

    RESOLVED!
    The problem was from the OS itself (Windows XP) which accepts at most 255 characters long path names.

  • Facing problem while connecting N70 with bluetooth

    I am connecting N70 with my laptop thru bluetooth. But im facing a error msg saying that hardware problem with MODEM.
    do i need to install Modem & if so which one suitable.
    all others application working thru bluetooth expect net connection.
    description:
    Window XP
    Nokia PC suite letest one
    thru blutooth.
    plz suggest. Thanks

    When one installed pcsuites successfully it installed all drivers including the modem, the reasons why it takes sometimes when one is prompted to connect the cable.
    Try to uninstall pcsuite again & run the pcsuites cleaner afterwards then re-install pcsuite. Don't connect the cable until told to so & check. If it does fail again, make a backup & format your phone; is the firmware of your N70 the latest one?
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

Maybe you are looking for

  • How to search for a tile in store

    I need Moxilla, Safari or Google Chrome to run my software I'm using for my chiropractic office. I can't seem to find a search section in the application store to purchase this. What am I doing wrong? Chelsea Knapp

  • Application builder switiches to Chinese language

    I'm using LabVIEW 2010 over Windows 7 Professinal. Sometimes when building an executable all the text on the created executable standalone application changes to Chinese. After a restart of the computer and executing the application builder I get the

  • I try to find such as pivot table like in excel sheet

    How to collect data like pivot table in excel sheet. Please help me

  • Why does Windows call my Acrobat 8.1 documents "AcroExch.Document"?

    I just installed Acrobat 8 on a new computer. On my previous computer, Acrobat documents were listed in Windows as "Adobe Acrobat 8" File Type. Now Windows calls them "AcroExch.Document" and the icon looks different. They seem to be working okay (the

  • Work contacts on iphone5

    Just switched from droid to iphone.   I got all my emails (personal and work/exchange) configured.   My work has like 300 employees when i sync the contacts they are all in my contacts..isn't there any way to have work acct contacts separate from my