ORA-39776 from impdp

Greetings
I am trying to do a test import with impdp from a 10.1.0.5 system to a 10.2.0.1.0 system. I have the following parfile:
DIRECTORY=image_import
remap_schema=track2:image_admin
remap_tablespace=users:image_test
remap_tablespace=indx:image_test
job_name=impdp_track2_try1
logfile=impdp_track2.log
dumpfile=expdp_track2_01.dmp
I set up the directory with
create directory or replace image_import '/oracle/oradata'
and put the files there. I set the ownership to oracle:orinstal
When I try to run the import with
impdp IMAGE_ADMIN/***** PARFILE=impdp.parfile
I get the error:
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
ORA-39002: invalid operation
ORA-31694: master table "IMAGE_ADMIN"."IMPDP_TRACK2_TRY1" failed to load/unload
ORA-02354: error in exporting/importing data
ORA-39776: fatal Direct Path API error loading table "IMAGE_ADMIN"."IMPDP_TRACK2_TRY1"
ORA-00600: internal error code, arguments: [klaprs_12], [], [], [], [], [], [], []
The user image_admin as the sysdba role and import privileges.
I'm guessing that 39776 is the root cause, but I can't find enough info on this error to figure out what to do next. Can I use impdp from 10.1 to 10.2? Can anyone suggest some places where I might look for an error?
Thanks
Mike

Thanks for the reply. I've been off on other tasks for awhile.
The command used was:
impdp IMAGE_ADMIN/******* PARFILE=impdp.parfile
The parfile contains:
DIRECTORY=image_import
remap_schema=track2:image_admin
remap_tablespace=users:image_test
remap_tablespace=indx:image_test
job_name=impdp_track2_try1
logfile=impdp_track2.log
dumpfile=expdp_track2_01.dmp
Regarding patchsets--I see many possible. I have downloaded document 316901.1 "Known issues specific to the 10.2.0.1 Beta Release" and it has a number of issues listed, but I don't see a link to a particular patch set. I have also downloaded the patches through the Maintenance view of the EnterpriseManager, but I don't see anything that looks like a single patchset. The patchsets and patches I do see have cautions about applying them if they are not relevant to the problem. Any guidance in this area will be gratefully appreciated.
Thanks
Mike

Similar Messages

  • Exluding TABELSPACE from impdp?

    Hello
    Is it possible to EXCLUDE a TABLESPACE from impdp? I didn;t find any post about that.
    I have DB with 2 tablespaces with archive data which I don't need for my test server. How to import all object from dmp file without this 2 databse?
    My parameter file for IMPDP:
    DIRECTORY=data_pump_dir
    FULL=y
    DUMPFILE=FULL_2010.08.20.dmp
    logfile=imp2.log
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\VA_DATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\VA_DATA.DBF'
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\VA_IDATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\VA_IDATA.DBF'
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\HA_DATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\HA_DATA.DBF'
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\HA_IDATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\HA_IDATA.DBF'
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\VA_ARCHDATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\VA_ARCHDATA.DBF'
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\HA_ARCHDATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\HA_ARCHDATA.DBF'
    REMAP_DATAFILE=\'E:\ORACLE\PRODUCT\10.2.0\ORADATA\BCK_DATA.DBF\':\'C:\oracle\product\10.2.0\oradata\ORCL\BCK_DATA.DBF'
    EXCLUDE=TABELSPACE:VARCHIVE
    EXCLUDE=TABLESPACE:HARCHIVE
    It seems not work I ahve errors:
    ORA-39001
    ORA-39071
    ORA-00920

    Hi,
    For full database exp/imp, you exp/imp all users/schemas, so all tablespaces are supposed to import data of these schemas, you can't skip any tablespace.
    Alternatively you can go for transportable tablespaces option to exp/imp only certain tablespaces.
    Salman

  • Materialized view problem ORA-00904: "from$_subquery$_ error

    Hello everyone,
    I've created data warehouse star schema and I'm trying to set up materialized view. DBMS_MVIEW.EXPLAIN_MVIEW passes and also the select query passes and is executed with no problems but when I try to CREATE MATERIALIZED VIEW... then error ORA-00904: "from$_subquery$_003"."SERVICE_ID_2_2": invalid identifier pops-up. How does Oracle 9i (9.2.0.1.0) managed to do this ? How to make it to work ?
    This is the query, and the schema:
    CREATE MATERIALIZED VIEW analiza_profitabilnosti
    BUILD IMMEDIATE
    REFRESH FAST
    ON COMMIT
    AS
    select
    GROUPING_ID(t.y,t.q,t.m,t.w,t.d,s.service_type,s.service_id,c.customer_category) as g_id,
    t.y, t.q, t.m, t.w, t.d,
    s.service_type , s.service_id ,
    c.customer_category ,
    COUNT(*) as c_star,
    SUM(cost) cost, COUNT(cost) c_cost,
    SUM(number_of_units) number_of_units, COUNT(number_of_units) as c_number_of_units
    from fact f
    inner join timeline t on f.datum = t.datum
    inner join service s on f.service_id = s.service_id
    inner join customer_category c on f.customer_category=c.customer_category
    group by
    ROLLUP(t.y, t.q, t.m, t.w, t.d),
    ROLLUP(s.service_type, s.service_id),
    ROLLUP (c.customer_category)
    and the schema:
    FACT (
    DATUM DATE,
    HOST_ID NUMBER,
    SERVICE_ID NUMBER (5),
    CALLED_PREFIX_ID NUMBER (10),
    CUSTOMER_CATEGORY NUMBER,
    TRAFIC_PERIOD_ID NUMBER (5),
    CALL_DURATION NUMBER,
    COST NUMBER,
    NUMBER_OF_UNITS NUMBER,
    NUMBER_OF_CALLS NUMBER)
    TIMELINE (
    Y VARCHAR2 (5),
    Q VARCHAR2 (5),
    M VARCHAR2 (5),
    W VARCHAR2 (5),
    D VARCHAR2 (5),
    DATUM DATE NOT NULL)
    SERVICE (
    SERVICE_ID NUMBER (5) NOT NULL,
    SERVICE_CODE VARCHAR2 (15) NOT NULL,
    SERVICE_NAME VARCHAR2 (63),
    SERVICE_TYPE NUMBER (5),
    SERVICE_TYPE_CODE VARCHAR2 (4) NOT NULL,
    S_ID NUMBER (5))
    CUSTOMER_CATEGORY (
    CUSTOMER_CATEGORY_NAME VARCHAR2 (65) NOT NULL,
    CUSTOMER_CATEGORY NUMBER NOT NULL)
    Thanks,
    Igor

    Yes, thank you. I suspected that version is problem, and patch 9.2.0.6 helped. It works under 9.2.0.6

  • ORA-00923:FROM KEYWORD NOT FOUND WHERE EXPECTED

    I have nade a oracle ODBC TO MS-EXCEL.While writting query in microsoft query editor I got the error msg
    ORA-00923:FROM KEYWORD NOT FOUND WHERE EXPECTED
    The following query runs fine on sql plus editior
    wht could be the reason ,pls guide me
    select ORDR_H.ORDERDT,ordR_h.orderno,ordr_h.partycd "CODE",
    DECODE (PARTY_M.PARTY_TY,1,'TRADE',2,'NTR'),
    party_m.party_n1,c1.citee_nm "Stockist Place",
    c.citee_nm "CONSIGNEE PLACE"
    from citee_m c,citee_m c1,ordr_h,ordr_d,party_m
    where
    ordr_h.orderno=ordr_d.orderno
    and c.citee_cd=ordr_h.destncd
    and c1.citee_cd=party_ct
    and ordr_h.partycd=party_m.party_cd
    and ordr_h.orderdt>='01-jan-09'
    order by 2,3

    One thing that comes to mind is that ODBC does not allow Oracle-specific syntax.

  • Calling ora:processXQuery from bpel with parameters

    I am trying to call ora:processXQuery from bpel with parameters. I am using SOA Suite 11.1.1.7
    ora:processXQuery('selectVersionNumber.xq',bpws:getVariableData('XML_FILE_VAR','/ns4:InputParameters'),"OBJ_ID_VAR","OBJ_ID_INNER_VAR", bpws:getVariableData('OBJ_ID_VAR'),bpws:getVariableData('OBJ_ID_INNER_VAR'))
    selectVersionNumber.xq :
    xquery version "1.0";
    declare namespace ns4="http://www.example.org";
    let $item := //ns4:P_RELATIONSHIP_TBL
    for $x in $item/P_RELATIONSHIP_TBL_ITEM
        for $y in $x/ns4:P_RELATIONSHIP_TBL_INNER/ns4:P_RELATIONSHIP_TBL_ITEM_INNER
        where $x/ns4:OBJECT_ID = $OBJ_ID_VAR and $y/ns4:OBJECT_ID=$OBJ_ID_INNER_VAR
            return <objectVersion>{ $y/ns4:OBJECT_VERSION_NUMBER }</objectVersion>
    but ora:processXQuery dosen't accept more than two arguments. Is there any work around?

    Create a specific xml schema for your xquery as a input and pass that. Extract the required values from xml in your xquery.

  • Any way to call function from impdp except remap_data?

    HI Friends,
    I have a requirement of load prd data into stage by masking some sensitive columns.Iam using impdp of datapump utility to load data.iam using remap_data option to call mask functions.But remap_data option is supporting upto 10 columns.
    we have more than 20 columns to mask.
    is there any other way to call oracle function from impdp?
    eg:-
    impdp pa_data_sub/******@qdssih30 NETWORK_LINK=qdspih30 schemas=RESP remap_data=col1.mask,col2.mask,col3.mask... CONTENT=all table_exists_action=replace
    Please suggest me different options.
    Thanks,
    Venkat Vadlamudi

    No,
    I didn't realize that there was a limit of 10 for remap data. As a work-around, can you remap 10 of the columns during export, and then 10 during import? Not sure if you want to give someone a dumpfile with sensitive data in it. If you could, you could at least double the limitation to 20 rows.
    Dean

  • How can I call ora:appendToList from java snippet?

    I want to assign a list of user from User Task A to User Task B, but I don't know how to call ora:appendToList from java snippet, and are there any better ways to solve this situation?

    Hi Rakesh,
    Thank you for your help.
    For issue 1, for example, user jcooper apply a vacation, and the request goes to his manager jstein,
    and jstein dispatch the task to mtwain and rsteven for parallel approval, (this is just for example, in
    some case, the manager can use the reassign function), so I use simple workflow pattern for manager approval,
    and parallel workflow pattern for parallel approval, but in my situation, the user for parallel approval is
    uncertain, need select by manager jstein, so I want to know how to assign the user from java code to bpel process.
    The following is how I solve the problem now, put the user list string in flexString1 of simple workflow task,
    then allocate the array for parallel assigneeUsers, then use setVariableData assign the value, it can do the job,
    but the code is awful, I want to know how to do it in some better way.
    <assign name="copyPayloadFromTask">
    <copy>
    <from expression="ora:countNodes( 'inputVariable','task','/task:task /task:assigneeUsers')"/>
    <to variable="currentLength"/>
    </copy>
    </assign>
    <sequence>
    <bpelx:exec name="Java_Embedding_2" language="Java" version="1.4"><![CDATA[
    Element ele=(Element)getVariableData("inputVariable","task","/task:task/task:flexString1");
    String users=ele.getNodeValue();
    String[] userArray=users.split(",");
    setVariableData("arrayLength",new Integer(userArray.length));
    ]]>
    </bpelx:exec>
    <while name="While_1" condition=" (bpws:getVariableData('currentLength')) &lt; (bpws:getVariableData('arrayLength')) ">
    <assign name="Assign_1">
    <copy>
    <from expression="ora:appendToList('inputVariable','task',' /task:task/task:assigneeUsers', string( 'test'))"/>
    <to variable="oraBPMTemporaryVariable"/>
    </copy>
    <copy>
    <from expression="ora:countNodes( 'inputVariable','task','/task:task /task:assigneeUsers')"/>
    <to variable="currentLength"/>
    </copy>
    </assign>
    </while>
    <bpelx:exec name="Java_Embedding_1" language="Java" version="1.4"><![CDATA[
    Element ele=(Element)getVariableData("inputVariable","task","/task:task/task:flexString1");
    String users=ele.getNodeValue();
    String[] userArray=users.split(",");
    for(int i=0;i<userArray.length;i++){
    setVariableData("inputVariable","task","/task:task/task:assigneeUsers["+(i+1)+"]",userArray);
    }]]>
    </bpelx:exec>
    Thanks,
    Ming

  • How to exclude some ORA error from OEM monitoring

    Hi,
    We have been getting ORA-3217 alerts and to avoid them we have specified like this in metric and policy settings..
    Warning ------ORA-0*(600?|7445|4[0-9] [0-9] [0-9])(?!3217)[^0-9]
    critical---ORA-[0-9]*[^0-9]*(?!3217)
    since then it stopped sending all ORA alerts, anything wrong in the above thresold.
    Regards
    Edited by: user602441 on Aug 13, 2009 8:42 AM

    I have the similar problem. I have ORA- in the Critical threshold and I just want to exclude ORA-00060 from critcial threshold. What will be the syntax for that? I do not want to filter it. I still want to recieve it as warning.
    Thanks
    Rinky
    Edited by: user11991081 on Oct 15, 2009 3:20 PM

  • Sqlldr error --- ora-39776

    Hi
    I hit the following error during the data load through sqlldr
    ORA-39776: fatal Direct Path API error loading table
    and i hit the following error and sqlldr job terminated
    and internal error code
    ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [],
    Then i take out the direct=true & load the data it works.
    If i use direct =true i hit this error some times
    some time it works fine
    rds

    899785 wrote:
    I am also facing the same issue. By the way my oracle database version is 11.2.0.3 and client is 10.2 is there any issue if we use lower version of client while SQL Loader upload. Please request you to clarify. ThanksYou are hijacking a thread that is over six years old. Best to start your own thread with your own specifics. Please be sure to include any ora- errors you are receiveng and what you've already discovered about them.

  • Urgent: ORA-04030 from PL/SQL code

    Hi, we are running a data conversion program for Oracle Applications which works in the following logic
    1. There is a loader program which uses SQLLoader to load 6.6L records from flat files to custom staging table
    2. There is a Validation program which validates (for business requirements) records available in the custom staging table. Based on the validation results the program updates the Status field (a column of the table) to ERROR or SUCCESS. This program uses pl/sql table types with bulk insert and bulk update. While we run the program for less number of records it works fine, but when the volume of data is high (6.6L) we get the following exception:
    ORA-04030 (out of process memory when trying to allocate ... bytes).
    As an work around we have used "dbms_session.free_unused_user_memory;" statement after every plsql table.DELETE call. But still we get the issue. Can anyone suggest us whats going wrong? If we use of Global Temp Table in place of pl/sql table will it help?
    Thanks /Santanu

    Duplicate Thread
    Urgent: ORA-04030 from Routing Conversion Validation Program

  • How can I avoid the display of ORA-31684 during impdp import?

    Hello,
    I'm working on a cross-platform tablespace migration (from SunOS to RedHat Enterprise Linux).
    During the import with DataPump, I have several ORA-31684 error messages ("Object type TYPE : "OWNER"."OBJ_NAME" already exists"). Some of my TYPE objects exist already in the Linux instance of the DB. The messages appear only for 4-5 TYPE objects, while overall I have around 180 TYPE objects owned by the schema owner.
    How can I avoid the display of these error messages? I don't want to drop the TYPE objects individually from the Linux instance, as the object list may vary in time.
    Thank you,
    Adrian

    Hi,
    There is no way to tell the impdp to ignore those errors. They will be printed to the error log and to the screen where the job is being run.
    Dean

  • Can we determine path of my INIT.ORA file from data dictionary views.

    Hello Guru’s
    I am new to oracle, My question is for the sake of my knowledge: I work on oracle 10G.
    Is there any data dictionary view from where I can get the path of my INIT.ORA file.
    Regards,

    NewDay wrote:
    Hello Guru’s
    I am new to oracle, My question is for the sake of my knowledge: I work on oracle 10G.
    Is there any data dictionary view from where I can get the path of my INIT.ORA file.
    AFAIK , its no. You can check the path from the show parameter command like following,
    SQL> show parameter spfile
    NAME                                 TYPE
    VALUE
    spfile                               string
    /u01/app/oracle/product/10.2.0
    /db_1/dbs/spfileorcl.ora
    SQL>HTH
    Aman....

  • ORA-3106: from Pro* C executable

    Hi Guys,
    We're developing an utility in PRO *C.
    In it,we've connected to database using some syntax like-
    EXEC SQL connect :g_uid identified by :g_pass
    Now this function works all right in the initial part of execution.
    Then we restart the instance. Now this hell- blazer ORA-3106: fatal two-task communication protocol error comes up.
    We've got throgh some links in metalink et. all where it says that memory leak can be a cause for it, which may happen in our case due to a no. of connections/disconnections.
    Our DB version- 8.1.7.0 and platform Windows 2003 server R2.
    We also came to know that "TWO_TASK" is a Unix environment variable that can be set to a default TNS
    connect string. So we set it as the corresponding alias in TNSNAMES.ora.
    But that didn't solve.
    Moreover- a no. of times we saw from Windows Task Manager that two oracle.exe are being generated.
    Regards,
    Hulk

    Your basic problem is you run an unsupported configuration. This can result in unpredictable behaviour. ORA-03106 is often seen, when components are incompatible. The first supported database for Windows 2003 is 9i Release 2.
    Werner

  • ORA-39083 - During Impdp

    Hi all,
    My db is in 10.1.0.5
    I took export of an table in my prod db and tried to import the table in preprod db.
    But It threw the following error.
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'LFOPRODSELECT' does not exist
    Failing sql is:
    GRANT SELECT ON "LFO_UAT"."QUESTION" TO "LFOPRODSELECT"
    Because of this error few of the constraints are not getting created.
    Please help....
    Thanks in advance

    Hello,
    Here is a test case using expdp/impdp option you posted here. So my recommendation create a role without any grants in UAT schema before importing your table, hope this helps
    create role LFOPRODSELECT;
    EXPORT*
    1. created a table in "prd" schema: my_objects
    2. bitmap index on my_objects.owner (just for test purpose)
    3. A role "myrole" with grant select on my_objects
    grant select on prd.my_objects to myrole;
    C:\expdp prd/prd directory=TEST_DIR dumpfile=myobjects.dmp logfile=myobjects.log tables=prd.my_objects
    Export: Release 10.2.0.1.0 - Production on Friday, 26 December, 2008 22:19:10
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Starting "PRD"."SYS_EXPORT_TABLE_01": prd/******** directory=TEST_DIR dumpfile=myobjects.dmp logfile=myobjects.log tables=prd.my_objects
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 184 MB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "PRD"."MY_OBJECTS" 141.6 MB 1516176 rows
    Master table "PRD"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
    Dump file set for KLONDIKE.SYS_EXPORT_TABLE_01 is:
    E:\U01\ORADATA\DSS\LOG\MYOBJECTS.DMP
    Job "KLONDIKE"."SYS_EXPORT_TABLE_01" successfully completed at 22:19:34
    Import test case 1: Without ROLE to recreate error at import_
    C:&gt;impdp uat/uat directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=prd:uat remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Import: Release 10.2.0.1.0 - Production on Friday, 26 December, 2008 23:09:30
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Master table "UAT"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "UAT"."SYS_IMPORT_FULL_01": uat/******** directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=prd:uat remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "UAT"."MY_OBJECTS" 141.6 MB 1516176 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'MYROLE' does not exist
    Failing sql is:
    GRANT SELECT ON "UAT"."MY_OBJECTS" TO "MYROLE"
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Job "UAT"."SYS_IMPORT_FULL_01" completed with 1 error(s) at 23:10:16
    Test Case 2: With role_
    SQL&gt; create role myrole;
    C:\&gt;impdp uat/uat directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=klondike:testme remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Import: Release 10.2.0.1.0 - Production on Friday, 26 December, 2008 23:12:55
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Master table "UAT"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "UAT"."SYS_IMPORT_FULL_01": uat/******** directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=prd:uat remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "UAT"."MY_OBJECTS" 141.6 MB 1516176 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Job "UAT"."SYS_IMPORT_FULL_01" successfully completed at 23:13:43Regards
    Edited by: OrionNet on Dec 26, 2008 11:32 PM
    Edited by: OrionNet on Dec 26, 2008 11:33 PM
    Edited by: OrionNet on Dec 26, 2008 11:33 PM

  • Ora Upgrade from 8i to 10G

    Hi,
    I am migrating application from ora 8i to 10g. so i recompiled all my codes. but in 10G one of the files i got error DWORD not found. but in 8i it compiled fine.so i changed dword to sword then i compiled it.does SWORD create any probelm in 10G?. basically i am not aware of dword and sword. could some one please help.
    srinath

    Let's start with the basics.
    - What language is your application written in? What API are you using? I'm guessing some variant of a C/ C++/ C# application possibly using OCI?
    DWORD and SWORD probably represent different data types. A DWORD would normally be an unsigned integer, a SWORD would normally be a signed integer. Whether that causes any problems for your particular application will depend on the possible values this variable can have in your application. If you expect to store values in the upper half of the unsigned range, you'll probably have issues.
    Of course, I assume that you will be doing thorough regression testing as part of the upgrade.
    Justin

Maybe you are looking for

  • Graphs in Abap Webdynpro

    Hi All I have one requirement that i have to plott two curves in one GRAPH in ABAP WEBDYNPRO. One curve shows standard baby growth in months on X-axis and height on Y-axis.On the same graph i have to show particular baby growth on the same X-axis and

  • Automatically transfer planning cost centre to profit center without 1KE0

    Dear Guru When  create planning for cost element, and cost center through KO06 therefore the planning only can be read in cost center report , and we cannot see the planning in profit center report. We only can see the planning in profit center repor

  • Help in ordering BE6000 and licences

    Hi I need some help in ordering BE6000 solution for my organization. We are a small company growing rapidly. Currently have UC560 with about 50 users. The main reason for upgrading our voice system is that we'll be having over 200 employees by the en

  • Unexpected Applicatio​n Error Occurred [16389]: (null)

    Good day all,   I recently started to get an error when trying to sync my phone with Outlook 2007. It was working fine until a week ago. When I hook up my phone to the USB or even Blue Tooth it starts to sync and then stops and a window titled Intell

  • Can I use DDR2 800 with Normal Athlon 64 (no X2) on K9NU NEO m/b ?

    In manual saying that " Memory Support**DDR II 400 / 533 / 667 / 800 (DDRII 800 is only for Athlon 64 X2)" Currently;, I have DDRII 800 with  Alhlon 3000+ 64 (1 core) The doubt is. If I'd like to use DDRII 800 with this normal Athlon  3000+64(not x 2