Importing table partition

Hello all.
I want to import only one partition of a table. The export that i have done is :
exp usernmae/pass tables=(table_name:partition_name) ....
And i want to import this partitino to another server with the same table_name.
What can i do, i have first to create the partition to the target table and use import utility Or i directly use import utility and import will create first the partition.
What the way to import it.
Because when i import it directly i had an error like this:
. . importing partition "TABLE_NAME":"PARTITION_NAME"
IMP-00058: ORACLE error 14400 encountered
ORA-14400: inserted partition key does not map to any partition
Import terminated successfully with warnings.
Thanks for your help.
raitsarevo

Hi,
ops$tkyte@ORA920PC> drop table t;
Table dropped.
ops$tkyte@ORA920PC> create table t
  2  ( usercode1 varchar2(5),
  3    data      varchar2(10)
  4  )
  5  PARTITION BY LIST (usercode1)
  6      (partition p_acga VALUES('ACGA') ,
  7           partition p_aclj VALUES('ACLJ')  )
  8  /
Table created.
ops$tkyte@ORA920PC> !imp userid=/ full=y ignore=y
Import: Release 9.2.0.4.0 - Production on Mon Feb 23 10:45:57 2004
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 file created by EXPORT:V08.01.07 via conventional path
import done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
export server uses WE8ISO8859P1 NCHAR character set (possible ncharset conversion)
. importing OPS$TKYTE's objects into OPS$TKYTE
. . importing table                            "T"
IMP-00058: ORACLE error 14400 encountered
ORA-14400: inserted partition key does not map to any partition
IMP-00028: partial import of previous table rolled back: 2 rows rolled back
Import terminated successfully with warnings.
that is your error, it is because:
ops$tkyte@ORA817DEV> select * from t;
USERC DATA
ACGA  hello
ACLJ  world
XXXX  ugh
the source table has usercodes we did not anticipate - and your data must also have the same issue.
to get this imported:
ops$tkyte@ORA920PC> drop table t;
Table dropped.
ops$tkyte@ORA920PC> create table t
  2  ( usercode1 varchar2(5),
  3    data      varchar2(10)
  4  )
  5  PARTITION BY LIST (usercode1)
  6      (partition p_acga VALUES('ACGA') ,
  7           partition p_aclj VALUES('ACLJ') ,
  8           partition the_rest values ( DEFAULT ) )
  9  /
Table created.
ops$tkyte@ORA920PC> !imp userid=/ full=y ignore=y
Import: Release 9.2.0.4.0 - Production on Mon Feb 23 10:45:58 2004
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 file created by EXPORT:V08.01.07 via conventional path
import done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
export server uses WE8ISO8859P1 NCHAR character set (possible ncharset conversion)
. importing OPS$TKYTE's objects into OPS$TKYTE
. . importing table                            "T"          3 rows imported
Import terminated successfully without warnings.
and there you go!  And then you can:
ops$tkyte@ORA920PC>
ops$tkyte@ORA920PC> select * from t partition(the_rest);
USERC DATA
XXXX  ugh
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1392403659992
regards
Taj

Similar Messages

  • Getting error while importing a table partition

    Hi,
    I am trying to import a table partition from OEM and occurred with following error:
    Job IMPORT000042 has been reopened at Friday, 13 June, 2008 14:44
    Restarting "SYSMAN"."IMPORT000042":
    Processing object type TABLE_EXPORT/TABLE/TBL_TABLE_DATA/TABLE/TABLE_DATA
    ORA-31693: Table data object "SCOTT"."CONTAINER":"PARTITION_5" failed to load/unload and is being skipped due to error:
    ORA-06502: PL/SQL: numeric or value error
    LPX-00210: expected '<' instead of 'n'
    Job "SYSMAN"."IMPORT000042" completed with 1 error(s) at 14:44
    Job state: COMPLETED
    Thanks

    What's the source and target database Oracle version?
    What's the character set of both databases?

  • Table partitioning (intervel partitioning) on existing tables in oracle 11g

    Hi i'm newbie to table partitioning. I'm using 11g. I have table of size 32 gb (which has 22 million records) and i want to apply interval partition on that table. I created a empty table with a partition having columns same as source table and take dump of the source table and import into the new partition table. can you please suggest how to import table dump into new table? also is there any other better idea to do the same.

    Hi,
    imp user/password file=exp.dmp ignore=y
    The ignore=y causes the import to skip the table creation and continues to load all rows.
    On the other hand, you can insert data into the partitioned table with a subquery from the non-partitioned table such as follows;
    insert into patitioned_table
    select * from original_table;
    Hope it helps,

  • ***Unable to import table which consists of nested tables

    Dear all;
    I have a problem on migrating my Oracle 8.1.7 database from windows nt environment into the ibm aix 4.3.3 environment. I have been using the import export utility. Exporting the data from the database does not produce any error but importing the export file produces the error as below;
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    Export file created by EXPORT:V08.01.07 via conventional path
    import done in WE8ISO8859P1 character set and WE8ISO8859P1 NCHAR character set
    . importing IIMS's objects into IIMS
    IMP-00017: following statement failed with ORACLE error 2331:
    "CREATE TABLE "CMGC_CURRENCY" ("CODE" VARCHAR2(10) NOT NULL ENABLE, "DESCP" "
    "VARCHAR2(60) NOT NULL ENABLE, "X_RATE" NUMBER(10, 6) NOT NULL ENABLE, "X_DA"
    "TE" VARCHAR2(10), "REMARK" VARCHAR2(255), "YEAR" NUMBER(4, 0) NOT NULL ENAB"
    "LE, "BANK_AC" VARCHAR2(20) NOT NULL ENABLE, "NSTBL_LEDG" "NSTBL_LEDGLIST" N"
    "OT NULL ENABLE, "NSTBL_XRATE" "NSTBL_XRATELIST" NOT NULL ENABLE) PCTFREE 1"
    "0 PCTUSED 40 INITRANS 1 MAXTRANS 255 LOGGING STORAGE(INITIAL 65536) TABLESP"
    "ACE "IIMS" NESTED TABLE "NSTBL_LEDG" STORE AS "NSTBL_LEDGLIST_LIST" RETURN "
    "AS VALUE NESTED TABLE "NSTBL_XRATE" STORE AS "NSTBL_XRATELIST_LIST" RETURN"
    " AS VALUE "
    IMP-00003: ORACLE error 2331 encountered
    ORA-02331: cannot create constraint on column of datatype Named Table Type
    Import terminated successfully with warnings.
    It seems that the error only occur when importing tables which consists on nested tables. I have done exporting and importing from windows NT into windows NT and from windows NT into AIX but the problem still arises. Please help.
    NSTBL_LEDG and NSTBL_XRATE are the nested tables with NSTBL_LEDGLIST and NSTBL_XRATELIST as the datatype accordingly.
    Thanks in advance;
    andrew

    Hi Sayak,
    This means we need to installed Oracle client to resolve this problem. Can you please share if you have some knowledge regarding the same.
    Thanks,
    Mohit

  • When import tables independent with queue,but show queue already exsists

    I try to import tables into my database, these tables are independent with queue, but errors show that ORA-24006: cannot create QUEUE, EMAUSER.EMA_CFG_QUEUE already exists, any idea why impdp is trying to create queue???
    command:
    impdp user/password TABLE_EXISTS_ACTION=REPLACE dumpfile=Cfg.dump directory=expcfgdir
    TABLES=tab_sogaccessview_cfg,tab_sysfunc_cfg
    logs:
    Import: Release 11.2.0.3.0 - Production on Tue Sep 18 08:07:03 2012
    Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
    Password:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "EMAUSER"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "EMAUSER"."SYS_IMPORT_FULL_01": emauser/******** TABLE_EXISTS_ACTION=REPLACE dumpfile=Cfg.dump directory=expcfgdir
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "EMAUSER"."TAB_NE_CFG" 12 KB 8 rows
    . . imported "EMAUSER"."TAB_AUTHFUNCTIONGROUP_CFG" 5.789 KB 9 rows
    . . imported "EMAUSER"."TAB_AUTHGROUPFUNCTIONGROUP_CFG" 5.773 KB 11 rows
    . . imported "EMAUSER"."TAB_AUTHGROUP_CFG" 5.718 KB 7 rows
    . . imported "EMAUSER"."TAB_AUTHMO_CFG" 9.656 KB 100 rows
    . . imported "EMAUSER"."TAB_AUTHUSERGROUP_CFG" 5.554 KB 6 rows
    . . imported "EMAUSER"."TAB_AUTHUSER_CFG" 9.070 KB 6 rows
    . . imported "EMAUSER"."TAB_CONSISTENCYLIST_CFG" 5.601 KB 6 rows
    . . imported "EMAUSER"."TAB_LOOKUPTABLE_CFG" 7.890 KB 13 rows
    . . imported "EMAUSER"."TAB_NECMDPKG_CFG" 7.242 KB 10 rows
    . . imported "EMAUSER"."TAB_NELINK_CFG" 8.195 KB 6 rows
    . . imported "EMAUSER"."TAB_ROUTINGLIST_CFG" 10.11 KB 119 rows
    . . imported "EMAUSER"."TAB_SYSFUNCMAPPING_CFG" 9.804 KB 57 rows
    . . imported "EMAUSER"."TAB_SYSFUNCSUBSCRIBER_CFG" 5.867 KB 1 rows
    . . imported "EMAUSER"."TAB_SYSFUNC_CFG" 14.05 KB 19 rows
    . . imported "EMAUSER"."TAB_BOUNDLINK_CFG" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_CLUSTEREDNE_CFG" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_GUI_CFG" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_NECLUSTER_CFG" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_NELEH_CFG" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_NERETRYFILTER_CFG" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_NUMERATED_ROUTING" 0 KB 0 rows
    . . imported "EMAUSER"."TAB_SOGACCESSVIEW_CFG" 0 KB 0 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/POST_INSTANCE/PROCACT_INSTANCE
    Processing object type TABLE_EXPORT/TABLE/POST_INSTANCE/PROCDEPOBJ
    ORA-39083: Object type PROCDEPOBJ failed to create with error:
    ORA-24006: cannot create QUEUE, EMAUSER.EMA_CFG_QUEUE already exists
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_QUEUE(HEXTORAW('C96000AE3F6A2D17E0435B03A8C0F4C5'),'TAB_EMA_CFG_MESSAGE','EMA_CFG_QUEUE',0,5,0,512,0,'');COMMIT; END;
    ORA-39083: Object type PROCDEPOBJ failed to create with error:
    ORA-24006: cannot create QUEUE, EMAUSER.AQ$_TAB_EMA_CFG_MESSAGE_E already exists
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_QUEUE(HEXTORAW('C96000AE3F692D17E0435B03A8C0F4C5'),'TAB_EMA_CFG_MESSAGE','AQ$_TAB_EMA_CFG_MESSAGE_E',1,0,0,0,0,'exception queue');COMMIT; END;
    ORA-39083: Object type PROCDEPOBJ failed to create with error:
    ORA-24006: cannot create QUEUE, EMAUSER.CONFIG_QUEUE already exists
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_QUEUE(HEXTORAW('C96000AE3F682D17E0435B03A8C0F4C5'),'TAB_CONFIG_MESSAGE','CONFIG_QUEUE',0,5,0,512,0,'');COMMIT; END;
    ORA-39083: Object type PROCDEPOBJ failed to create with error:
    ORA-24006: cannot create QUEUE, EMAUSER.AQ$_TAB_CONFIG_MESSAGE_E already exists
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_QUEUE(HEXTORAW('C96000AE3F672D17E0435B03A8C0F4C5'),'TAB_CONFIG_MESSAGE','AQ$_TAB_CONFIG_MESSAGE_E',1,0,0,0,0,'exception queue');COMMIT; END;
    ORA-39083: Object type PROCDEPOBJ failed to create with error:
    ORA-24006: cannot create QUEUE, EMAUSER.TASK_QUEUE already exists
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_QUEUE(HEXTORAW('C96000AE3F662D17E0435B03A8C0F4C5'),'TAB_TASK_MESSAGE','TASK_QUEUE',0,5,0,0,0,'');COMMIT; END;
    ORA-39083: Object type PROCDEPOBJ failed to create with error:
    ORA-24006: cannot create QUEUE, EMAUSER.AQ$_TAB_TASK_MESSAGE_E already exists
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_QUEUE(HEXTORAW('C96000AE3F652D17E0435B03A8C0F4C5'),'TAB_TASK_MESSAGE','AQ$_TAB_TASK_MESSAGE_E',1,0,0,0,0,'exception queue');COMMIT; END;
    Job "EMAUSER"."SYS_IMPORT_FULL_01" completed with 6 error(s) at 08:07:15

    http://ora-24006.ora-code.com/

  • Import a partition?

    Hello every one,
    I have one partition table say TABLE_A with partitions from jan_2008 to dec_2008.Now i have exported one partition say feb_2008 using the following syntax
    exp test/pwd file=part.dmp tables=table_a:feb_2008
    now i drop the partition feb_2008 using
    SQL>alter table table_a drop partition feb_2008.
    Now i want to import that partition from the export dump file.How can i do this?I am getting the following error when i try to imoprt using the following syntax.
    imp test/pwd tables=test_range:part3 file=part.dmp ignore=y
    . importing TEST's objects into TEST
    . . importing partition "TABLE_A":"FEB_2008"
    IMP-00058: ORACLE error 14400 encountered
    ORA-14400: inserted partition key does not map to any partition
    Import terminated successfully with warnings.
    Can any one help me by providing the exact syntax for importiong a partition.
    Thank you All...

    I will give you a clear scenario.
    Suppose you are having a Table A with partition from Jan-2008 to Dec-2008.
    You want to export the partition of Feb-2008 from Table A and import it to your Test Database.
    The syntax for export is as follows..........
    exp userid=xyz/<password> file=/tmp/<File_name>.dmp log=/tmp/<File_name>.log buffer=50000000 feedback=10000 tables=A:Feb-2008.
    The Dump file will be created in the /tmp directory and you need to import the data into your test database using the following dump file generated in your /tmp directory.
    The Syntax for Import is as follows...
    imp userid=xyz/<password>@Test file=/tmp/<File_name>.dmp log=/tmp/<File_name_imp>.log buffer=5000000 feedback=10000 commit=y ignore=y fromuser=<Username> touser=<Username> statistics=none
    Regards,
    Prosenjit.

  • Oracle Tables Partitioning

    I am planning for table partitioning of existing tables...
    database is production 10gR1 i need it to upgrade to 11gR2 and also implement table partitioning. what should be the best way to do so with minimum downtime and zero data loss. Please advice. size of the tables are 20 to 40GB.. source database is in solaris and planning to migrate on linux.

    my question is for partitioning with minimum downtime with zero data loss.
    the scenario is like
    I took a export of source table and create a new partitioned table with different name, then import the data into new table, drop the source table and rename the new partitioned table with the source tables's name. Its all fine because there will be very minimum downtime but here we will loss some data. It is because the transactions which are done in the mean time will not be in the exported file. Is there any way another..? I hope you got my question.

  • Create index partition in the table partition tablespace

    Hello,
    I am running a custom job that
    * Creates a tablespace daily
    * Creates the daily table partition in the tablespace created
    * Drops the tablepartition X days old
    * Drops the tablespace for that partition on X+1 day.
    The above job runs perfectly, but 'm having issues with managing the indexes for these partitioned tables. In the old database (10g - Single Node), all the partitions/indexes existed in one BIG tablespace and when I imported the table creation script into the new database, I modified all the table partitions & indexes to go into their respective tablespace.
    Eg:
    Table_name........Partition_name.....................Index_Part_name..........................Tablespace_name
    ============...================............====================...........=================
    TABL1...................TABL1_2012_07_16............TABL1_IDX_2012_07_16............TBS_2012_07_16
    TABL1...................TABL1_2012_07_15............TABL1_IDX_2012_07_15............TBS_2012_07_15
    But now when the job runs, it creates the index into the default tablespace TBS_DATA.
    Table_name........Partition_name.....................Index_Part_name..........................Tablespace_name
    ============...================.............====================...........=================
    TABL1...................TABL1_2012_08_16............TABL1_IDX_2012_08_16............TBS_DATA
    TABL1...................TABL1_2012_08_15............TABL1_IDX_2012_08_15............TBS_DATA
    I can issue alter index rebuild to move the indexes to its default tablespace, but how can I ensure that the index gets created in its designated tablespace?
    NOTE - the partition/tablespace management job that I run only creates the table partition and not the index.
    The new env is a 2-Node 11gR2 RAC cluster on Linux x86_64.
    Thanks in advance,
    aBBy.

    Excerpt from the job -
    This creates the partition into the new tablespace.
    v_sql_new_part := 'alter table '||tab_owner||'.'||tab_name||' add partition '||v_new_part_nm||'
    values less than (to_date('''||v_new_part_dt_formatted||''',''DD-MON-YYYY'')) tablespace '||part_tbs;
    execute immediate v_sql_new_part;New tablespace for new partition - because this is a 10T database and having multiple tablespaces helps with backup/recovery.
    Thanks,
    aBBy.

  • ASM and table partitioning

    hi gurus,
    i was told by a colleague table level partitioning is not required if ASM is in place, ASM can manage load balancing etc.
    your expert opinion please..
    thanks in advance,
    charles

    Hi Charles,
    Table partition and ASM are two different things.
    ASM can perform load balance and manage the disks, table partitions split table to several smaller segments.
    Table partitions allow partition pruning and the ability to manage data in smaller portions (such as drop or truncate an entire partition etc.). This has nothing to do with ASM and is very important advantages, regardless your disk and storage management
    HTH
    Liron Amitzi
    Senior DBA consultant
    [www.dbsnaps.com]
    [www.orbiumsoftware.com]

  • JDBC Lookup - Import table data from a different schema in same DB

    Hi XI Experts,
    We are facing an issue while importing a Database table into the external definition in PI 7.1.
    The details are as below:
    I have configured user 'A' in PI communication channel to access the database. But the table that I want to access is present in schema "B". Due to this, I am unable to view the table that I have to import in the list available.
    In other words, I am trying to access a table present in a different schema in the same database. Please note that my user has been given all the required permissions to access different schema. Even then, I am unable to access the table in different schema.
    Kindly provide your valuable suggestions as to how I can import table which is present in another schema but in the same Database.
    Regards,
    Subbu

    If you are using PI 7.1, then you can do JDBC Lookup to import JDBC meta data (table structures from DB). Configure a jdbc receiver communication channel where you specify username and password which has permission to access schema A and Schema B of database. Specify database name in the connection string. Then you might have access to import both schema.
    Please refer these links
    SAP PI 7.1 Mapping Enhancements Series: Graphical Support for JDBC and RFC Lookups
    How to use JDBC Lookup in PI 7.1 ?

  • Index Vs table partition

    I have table whose growth is 1 million per month and may increase in future. I currently place an index on column which is frequently uses in where clause. there is another column which contains months so it may possible that I make 12 partitions of that. I want to know what is suitable. is there any connection between index and table partition?
    Message was edited by:
    user459835

    I think the question is more of what type of queries are answered by this table?
    is it that most of the times the results returned span across several months?
    is there any relation to the column you use in where clause with the data belonging to a particular month (or range there-of)?

  • 11gR2 Data Pump. Import table in one schema into a different schema

    I stady oracle. I export shema HR into file hrexport.dmp. When I import tables from this file I had trouble. I used Enterprise Manager:
    1. connected by user SYSTEM as NORMAL
    2. selected file, chosen import type - tables
    3. data from file was imported
    4. chosen tables which tables to import
    5. in the next step I try insert row in table Re-Map Shemas and edit cell Destination Shema, but in the list is only one name of shema - HR! Why?
    Edited by: alvahtin on 10.03.2013 6:11

    Paul M. wrote:
    Did you try using impdp command at OS prompt ?I don't know what this command use. I try:
    impdp system/oracle remap_schema=hr:inventory tables=employees, departments, locations directory=ORACLES_HOME dumpfile=hrexport.dmp logfile=hrimport.log
    But it finished with error:
    ORA-39166: Object SYSTEM.EMPLOYEES was not found.
    ORA-39166: Object SYSTEM.DEPARTMENTS was not found.
    ORA-39166: Object SYSTEM.LOCATIONS was not found.
    Job "SYSTEM"."SYS_IMPORT_TABLE_01" successfully completed at 18:43:19
    Job "SYSTEM"."SYS_IMPORT_TABLE_01" successfully completed at 18:43:19
    Why SYSTEM? I want import to INVENTORY from HR - replaced in the file hrexport.dmp

  • How can i import tables from a different schema into the existing relational model... to add these tables in the existing model? plss help

    how can i import tables from a different schema into the existing relational model... to add these tables in the existing relational/logical model? plss help
    note; I already have the relational/logical model ready from one schema... and I need to add few more tables to this relational/logical model
    can I import the same way as I did previously??
    but even if I do the same how can I add it in the model?? as the logical model has already been engineered..
    please help ...
    thanks

    Hi,
    Before you start, you should probably take a backup copy of your design (the .dmd file and associated folder), in case the update does not work out as you had hoped.
    You need to use Import > Data Dictionary again, to start the Data Dictionary Import Wizard.
    In step 1 use a suitable database connection that can access the relevant table definitions.
    In step 2 select the schema (or schemas) to import.  The "Import to" field in the lower left part of the main panel allows you to select which existing Relational Model to import into (or to specify that a new Relational Model is to be created).
    In step 3 select the tables to import.  (Note that if there are an Foreign Key constraints between the new tables and any tables you had previously imported, you should also include the previous tables, otherwise the Foreign Key constraints will not be imported.)
    After the import itself has completed, the "Compare Models" dialog is displayed.  This shows the differences between the model being imported and the previous state of the model, and allows you to select which changes are to be applied.
    Just selecting the Merge button should apply all the additions and changes in the new import.
    Having updated your Relational Model, you can then update your Logical Model.  To do this you repeat the "Engineer to Logical Model".  This displays the "Engineer to Logical Model" dialog, which shows the changes which will be applied to the Logical Model, and allows you to select which changes are to be applied.
    Just selecting the Engineer button should apply all the additions and changes.
    I hope this helps you achieve what you want.
    David

  • Error while importing tables from oracle database

    Hi
    I am getting the following error when i am trying to import table from oracle database.
    my operating system is windows and my database is oracle.
    [nQSError: 16001]ODBC error state: IM004 code:0 message:
    [Microsoft][ODBC Driver Manager] Driver`s SQLAllocHandle on SQL_HANDLE_ENV failed.
    please help me in resolving this issue.
    Thanks and Regards,
    Raj

    Hi Madan,
    I have done migration Discoverer Admin EUL Layer into OBIEE repository using below methodology.
    Navigate to the <installdrive>\OracleBI\server\Bin directory. There are two important files in this directory: the migration assistant executable file named MigrateEUL.exe and a properties configuration file named MigrationConfig.properties.
    Could you please help me how to migrate discoverer plus workbooks and worksheets into OBIEE Answers?
    go through below link, It will show navigation steps for migrating of EUL from Discoverer to OBIEE.But i need migration of workbooks and worksheets from Discoverer into OBIEE Answers.
    http://www.oracle.com/technology/obe/obe_bi/discoverer/discoverer_1012/discomigration/migrate_disco_biee.htm
    This is very great full help to me …
    Advance thanks for your suggestions.
    Regards
    Duraga Prasad.

  • OBIEE Error while importing table from database

    Hi
    I am getting the following error when i am trying to import table from database.
    [nQSError: 16001]ODBC error state: IM004 code:0 message:
    [Microsoft][ODBC Driver Manager] Driver`s SQLAllocHandle on SQL_HANDLE_ENV failed.
    Any idea y such error.
    Thanks and Regards,
    Andy

    Looks like an error in the ODBC driver, not OBIEE as such.
    Have you tried googling it?
    Can you post details about your OS and DB.

Maybe you are looking for

  • HT1926 I just tried to update to the latestItunes and now it wont open.

    After updating to the lastest version of Itunes now my computer will not open it. It says it is missing MSVCR80.dll and to reinstall. Then when I click ok it pulls up a box that says Error 7 (windows error 126) I tried reinstalling. I don't want to r

  • When Tcode and Object added to the particular role

    Dear Gurus, My question is that, how we can able to know that who (user ID) / when this tcode or object (with particular activities) has added to this particular roles/profiles. Regards, Sanjay

  • Can't send mail to myself

    Hope someone can help me. I am running an OSX 10.4.8 Xserve My clients can't send mail to themselves. No matter what email client they use, mail sent to themselves shows up in the sent items but not in the inbox! Using webmail is similar in that afte

  • Failover with idempotent methods

    All, I have a stateless session bean in a clustered environment whose methods are idempotent. Assuming that a failure occurs when I invoke one of its methods, will WebLogic automatically try to get another reference to the bean and re-invoke the same

  • Quicktime won't open after installing windows media player

    i just added media player, and quick time will not play anything. anybody else have this problem, and any suggestions out there? thank you.