Import command for one table core dumps

Hi,
The following import command is causing a core dump;
$ imp system/***** file=/upload/dbdumps/06-09-19_11.00.01-db.dmp fromuser=ioeadmin tables=(utils) 2>&1 |tee imp.log
But this one does not:
$ cat imp.params
FULL=y
FILE=/upload/dbdumps/06-09-19_11.00.01-db.dmp
GRANTS=y
INDEXES=y
$ imp system/*****@odinprd parfile=imp.params 2>&1 |tee imp.log
More info:
SunOS 5.8 / Oracle 8.1.5
Thank you for any help on this

I don't have access to Metalink. What would it say -- "imp tables=" doesn't work in 8i?
So I have tried the following:
1. drop the table I want to restore.
2. run this command to restore all tables and let it fail on those tables that already exist and recreate the one i dropped.
imp system/code4202@odinprd full=y show=y file=/upload/dbdumps/06-09-27_00.00.00-db.dmp 2>&1 |tee imp.log
But it doesn't. It says this about the table in question:
"ALTER SCHEMA = "IOEADMIN""
"CREATE TABLE "PARTNER" ("PARTNER_ID" VARCHAR2(16) NOT NULL ENABLE, "PARTNER"
"_TYPE" VARCHAR2(16), "ADDRESS_ID" NUMBER(10, 0), "PAYMENT_ID" NUMBER(10, 0)"
", "PRICE_LIST_ID" NUMBER(10, 0), "DEFAULT_CARRIER" VARCHAR2(32), "DEFAULT_M"
"ETHOD" VARCHAR2(32), "CARRIER_ACCOUNT_NUMBER" VARCHAR2(32), "BILLTYPE" VARC"
"HAR2(10), "TMB_TYPE" NUMBER) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255"
" LOGGING STORAGE(INITIAL 10240) TABLESPACE "APP_DATA""
. . skipping table "PARTNER"
why is it skip this guy? It does not exist:
SQL> desc partner;
ERROR:
ORA-04043: object partner does not exist
SQL> desc ioeadmin.partner;
ERROR:
ORA-04043: object ioeadmin.partner does not exist

Similar Messages

  • Multiple header rows for one table?

    Using html it's possible to set up multiple table header rows for one table but with APEX Reports I don't see how to implement this. Any ideas?
    I want to use the second header row to provide links to data for the column only (not a row). But I still want sortable columns so I want to maintain the default column header behavior too.
    Thanks,
    Linda

    Mike,
    I tried that and found that indeed the substitution string is working and shows in both debug regions I set up on each page I tested.
    I have tried this on two kinds of pages. It works correctly on standard pages with PPR report regions.
    It is not working correctly on a page based on Carl's tabbed regions with PPR reports. One click and the header disappears. This is the version I really want to get working.
    I'd like to post something but have asked twice for a space on apex.oracle.com and have yet to receive even an email acknowledging my request.
    Perhaps you can help me get a space?
    My new problem on the tabbed page where my multiple headers are working is that when I click on a link in the header, it loads that page below the tab. But if I now click on the tab again, rather than return to the original tab page, I get error "ERR-1777: Page 4042 provided no page to branch to. Please report this error to your application administrator. " This happens on both the tabbed regions pages and on the standard tabbed pages. I guess I need to provide a differently formatted url? It is currently like this -
    -----------------------"<th id="opt-details1" [a href="f?p=&APP_ID.:3001:&APP_SESSION.:::::"] View Details</a></th>" --------------[not really square brackets but I didn't know how to make this show in the forum with proper <> brackets ----------------------
    Thanks again,
    Linda 
    ---sorry for the lack of white space. It seems to happen when I post on forums on Sunday nights - all white space is removed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How many primary key fields  allowed for one table?

    hi,
    when i creating a table , how many primary key fields are allowed for one table.
    please any one give ans
    thanks

    Just checked it,  Its 255, not 155.  You can have as many key fields as you want, but you can not go over the 255 byte length for the total of all key fields.  You will get a warning for over 120, as it says that there is limited functionality with a key over 120 in length.
    Again, this is a total length of all key fields.
    Regards,
    Rich Heilman

  • XMLType table Core Dump using CLOB

    I've created an object based XMLType table based on a valid XML Schema. The Schema has an element which has been declared as a CLOB.
    <xs:element name="complete_entry" xdb:SQLType="CLOB" xdb:SQLName="complete_entry"/>
    This registers ok with Oracle and the object that this element is in shows the element as a CLOB as expected.
    However when performing a insert into this table, SQLPlus gives and end-of-communication error and the server core dumps.
    A PL/SQL function retreives an XML file from the file system for insert, here is the code for the function:
    create or replace function getClobDocument(
    filename in varchar2,
    charset in varchar2 default NULL)
    return CLOB deterministic
    is
    file bfile := bfilename('DIR',filename);
    charContent CLOB := ' ';
    targetFile bfile;
    lang_ctx number := DBMS_LOB.default_lang_ctx;
    charset_id number := 0;
    src_offset number := 1 ;
    dst_offset number := 1 ;
    warning number;
    begin
    if charset is not null then
    charset_id := NLS_CHARSET_ID(charset);
    end if;
    targetFile := file;
    DBMS_LOB.fileopen(targetFile, DBMS_LOB.file_readonly);
    DBMS_LOB.LOADCLOBFROMFILE(charContent, targetFile,
    DBMS_LOB.getLength(targetFile), src_offset, dst_offset,
    charset_id, lang_ctx,warning);
    DBMS_LOB.fileclose(targetFile);
    return charContent;
    end;
    The function is called like so:
    INSERT INTO boss_contracts
    VALUES(XMLTYPE(getCLOBDocument('contract_82.xml','UTF8')));
    This works perfectly when the element is declared as a string and Oracle converts it to a varchar2(4000), but core dumps when it is a CLOB.
    I need this element to be able to handle more than 4k of data.
    please help,
    Paul Linney
    [email protected]

    void print_affect(struct oci_connection* conn, OCIStmt* sh) {
    sb2 rowCount;
    ub4 sizep = sizeof(sb2);
    OCIAttrGet(sh, OCI_HTYPE_STMT,&rowCount,
    &sizep,OCI_ATTR_ROW_COUNT, conn->err);OCI_ATTR_ROW_COUNT is a ub4 attribute, not a sb2 one.
    ub4 rowCount = 0;
    ub4 size = sizeof(rowCount);
    --DD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Importing data from one table to another in the same schema

    I know this possibly very simple, but I can't seem to figure it out. I have
    two tables; one with live user data and another, identical except name, with
    archive data. I want to export data that has been flagged from table 1 and
    archive it by importing that data into table 2. I am able to modify the
    where clause of the export and get the proper data set, but cannot see a way
    (via OEM for Oracle 9.2.0.2) to change the name of the table to receive the
    import. I just end up shoving the same records back into table1. Is there
    an easy way to do this or am I just destined to polish up my script writing
    skills? Thanx!

    Yeah, you're right... however, I haven't had to write scripts since my old SQL/DS days on VM! I guess I've been lucky all these years.
    I guess the thing would go:
    1. Select from table1
    2. Insert into table2
    3. Delete from table1 after successful #2.
    I guess I'll get on it. Thanx!
    L

  • Import Command for importing XML files to server

    Hi All,
    Please help me in importing the files to MDS repository.
    i am trying to import a xml file from my C:\JDeveloper903\jdevhome\jdev\myprojects\oracle\apps\ar\irec\webui to the server. i have a confusion like from where(location) i should run the command ?? is that is from $JAVA_TOP or $APPL_TOP/mds??? or local drive?
    and also i have moved my XML files from local Jdeveloper to server using FileZilla to the location /oraweb/u09/appldev2/oadev2comn/java/oracle/apps/ar/irec/webui in ASCII mode. and then i was using following command to import , from $JAVA_TOP,it says import completed , but when i check from TOAD by jdr_utils.printDocument('/oracle/apps/ar/irec/webui/DownloadPG'); it throws an error - Could not find document /oracle/apps/ar/irec/webui/DownloadPG.
    java oracle.jrad.tools.xml.importer.XMLImporter /oraweb/u09/appldev2/oadev2comn/java/oracle/apps/ar/irec/webui/DownloadPG.xml -username "apps" -password apps -dbconnection "(description=(address_list=(address=(community=tcp.world)(protocol=tcp)(host=utx001dod008.uson.usoncology.int)(port=1540)))(connect_data=(sid=OADEV2)))" -rootdir  /oraweb/u09/appldev2/oadev2comn/java/oracle/apps/ar/irec/webui
    Please suggest me the correct way of doing it..
    Your help in this regard is greatly appreciated.
    Thanks
    Praveen Reddy

    Hi,
    I believe all your questions are answered in [Oracle Application Framework Personalization Guide|http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/115fwkpg.pdf], Chapter 9.
    To use the import tool, copy the XML file to the server. It is recommended you copy it to $APPL_TOP/<directory> (for example, $APPL_TOP/personalizations), and run the import command from this directory. For the path, you need to give the full path of the XML file you want to import (for example, if you have copied the file to $APPL_TOP/personalizations, then the path according to your first post should be $APPL_TOP/personalizations/oracle/apps/ar/irec/webui/DownloadPG.xml).
    BTW, you can import from your local PC using import.bat file.
    I would also suggest you review the following thread for similar topic.
    Deploy a custom buid OA page
    Deploy a custom buid OA page
    Regards,
    Hussein

  • Two table maintenance generator for one table

    Can we created two table maintenance generator for one ztable. if yes then what will be the steps.

    Hi Prem,
    Why you need two table maintenance generator for a single table?
    We can generate only single table maintenance  generator for a single table.
    you can add modification event in  inside table maintenance if you need anything to change or validate in insde your table maintenance generator.
    Regards,
    Prasenjit

  • Help  need to generate table table maintainance for one table

    Dear SAP Gurus,
       Am not a ABAP consultant, currently we have some requirement to maintain some values for custmized table "ZXXXtable", when i checked in SM30 this table is not supporting to maintain.
      Now We are trying to gerenate for table maintaince using  in SE11 --> Utilties --> Table maintainace Generatore and
    but in this screen it is asking function group and packge.
    What is this function group and packge,
    How to maintain this gunction group and package (or) how can I check for this table function group and package is maintained.
    (or) shall we use other function group  and package which is already existing in the system.
    Please help me to solve this isse.
    Thanks & Regards,
    MK

    Hi PXG,
      this is production system we cannot able to create, shall we use the existing one which is already available under same package, I have checked 4 function groups are available in the same packing , but that function groups belongs to some other table or i don't know some other purpose.
    Please help to how can i maintain the table with out creating new function group.
    First could please explaing what is the use of function group?
    Thanks & Regards,
    MK

  • Is it possible for two owners for one table in oracle?

    SQL> select owner,table_name
    2 from dba_tables
    3 where table_name = 'DEPT';
    OWNER TABLE_NAME
    MANO DEPT
    SCOTT DEPT
    SQL>
    SQL>
    SQL> show user;
    USER is "MANO"

    Hi,
    It is not two owners for 2 tables but twotables and two owners.
    Login as Mano
    do a
    insert into dept values (blahh..blahh..);
    commit;Now login as scott
    select * from dept;You will see the difference.
    What you need to understand is there are physically two tables owned by two different users with the same name.
    Hope it clears your confusion.
    Cheers!!!
    Bhushan

  • Combining 2 PowerShell Commands for One Output

    Folks, novice here and I am trying to combine the following commands into one output (if possible)...any guidance? Thanks!
    Get-ADUser -Filter 'teletexterminalidentifier -like "*"'|Select-Object name,teletexterminalidentifier|Export-Csv c:\profile_set1.csv
    Get-ADUser | select SamAccountName,Enabled | Out-File C:\AcctStatus.csv
    In other words, is there a way to pipe these into one command and one set of results (one file)?
    Thanks!

    Get-ADUser -LDAPFilter '(teletexterminalidentifier=*)'|
    Select-Object Name,SamAccountName,TeletexTerminalIdentifier,Enabled |
    Export-Csv c:\profile_set1.csv
    The LDAPFilter is concise and will be a much faster.
    ¯\_(ツ)_/¯

  • Run optimizer statistics for one table

    dear all,
    i noticed an error in DB16 , that is  <b>Missing Statistics for a table </b> SAPGRP.MC03BF0SETUP.
    How to run/ generate the stats. for this table

    Dear Somckit
    here is the error msg.  from DB16.
                                                                                    Description         Table: SAPGRP.MC03BF0SETUP # Table or index has no optimizer
    Correction Type     D                                                           
    Corrective Action   Collect optimizer statistics                                
    Check Log           /oracle/GRP/sapcheck/cdwqhqnz.chk                           
    Single Messages                                                                      
    No.   Description                                                                    
    1     Table: SAPGRP.MC03BF0SETUP # Table or index has no optimizer statistics        
    2     Table: SAPGRP.MC03BX0SETUP # Table or index has no optimizer statistics        
    3     Table: SAPGRP.MC03UM0SETUP # Table or index has no optimizer statistics        
    4     Index: SAPGRP.MC03BF0SETUP~0 # Table or index has no optimizer statistics      
    5     Index: SAPGRP.MC03BX0SETUP~0 # Table or index has no optimizer statistics      
    6     Index: SAPGRP.MC03UM0SETUP~0 # Table or index has no optimizer statistics                                                                               
    Thank u.

  • How to import DDL for multiple tables referencing each other?

    Hello people,
    I'm having a non-trivial problem. I need to copy a few tables from one machine to another, both 10g. Just DDL, data copying is not necessary. When I export the DDL to an SQL file using Oracle SQL Developer, the resulting file is refused at the import (again, SQL Developer). The problem is that every table references some other table(s), so every single "create table" command is refused, because the needed table is has not been created yet. What's the best solution to be applied here?
    Maybe I can draw a parallel to adding packages in Debian. When you have two packages, A and B, and they depend on each other, you cannot install them using "dpkg -i A && dpkg -i B" nor the other way around. Both calls to the dpkg will fail, due to the missing respective package. However, installing them in one command ("dpkg -i A B") is the right way. This is EXACTLY what I'd love to do with Oracle. Tell it to wait a bit, to make sure that ALL of the necessary tables are specified, and then create them virtually at once. Can it be achieved with transaction management?
    Thanks a lot for any help.

    Use exp/imp or expdb / impdp
    They will only enable constraints after all tables are imported.

  • Create key mapping using import manager for lookup table FROM EXCEL file

    hello,
    i would like create key mapping while importing the values via excel file.
    the source file containing the key, but how do i map it to the lookup table?
    the properties of the table has enable the creation of mapping key. but during the mapping in import manager, i cant find any way to map the key mapping..
    eg
    lookup table contains:
    Material Group
    Code
    excel file contain
    MatGroup1  Code   System
    Thanks!
    Shanti

    Hi Shanti,
    Assuming you have already defined below listed points
    1)  Key Mapping "Yes" to your lookup table in MDM Console
    2) Created a New Remote System in MDM console
    3) proper rights for your account for updating the remote key values in to data manager through import manager.
    Your sample file can have Material Group and Code alone which can be exported from Data Manager by File-> Export To -> Excel, if you have  data already in Data Manager.
    Open your sample file through Import Manager by selecting  the remote system for which you want to import the Key mapping.
    (Do Not select MDM as Remote System, which do not allows you to maintain key mapping values) and also the file type as Excel
    Now select your Soruce and Destination tables, under the destination fields you will be seeing a new field called [Remote Key]
    Map you source and destination fields correspondingly and Clone your source field code by right clicking on code in the source hierarchy and map it to Remote Key if you want the code to be in the remote key values.
    And in the matching criteria select destination field code as a Matching field and change the default import action to Update NULL fields or UPDATED MAPPED FIELDS as required,
    After sucessfull import you can check the Remote Key values in Data Manager.
    Hope this helps
    Thanks
    Sowseel

  • Multiple FDM Import Formats for One Location

    I want to import trial balance data directly from the Oracle Financials database. I'm creating an import integration script to pull the ledgers directly via a SQL statement. My issue is that I also want to be able to write scripts to modify each individual field on the import, similar to a delimited import script where I can have a script for each dimension. Do you know if it's possible to combine import integration and delimited scripts in a single location? I'm guessing it may be a combination of the Import Format and Integration Options settings on the location, but I'm not sure which one should go where. Any help would be greatly appreciated.

    This is not possible. Any adjustments to the data would need to be done within the integration script.

  • Getting slowness issue with Oracle DB (10g) - specifically for one table

    We have a Oracle Database. When we are trying to access it through our Java application, it is working fine except for 2 menu option in the application.
    These 2 menu option are trying to fetch from the same table. It is taking 30-40 min to fetch some 500 records. It was not the case few days ago.
    I have checked at application end however didn't find any issues.
    Could you please suggest, what could be the possible reason and solution for this.

    There are many possible reasons and solutions for this. That is why you need to look at what the instrumentation is telling you is wrong.
    First: determine if there is something grotesquely wrong. Oracle has an alert log, see if there are any complaints in there. There are a number of ways of observing the database, dbconsole has a nice screen with performance, though you might need some special licensing. There are also scripts you can run and third party tools. You may also want to use statspack or AWR to tell you generally what is going on, sometimes the top sql just makes it obvious, but you have to know your own system to make that kind of judgment.
    Next, see if there is something obviously wrong, check for missing or otherwise unavailable indices. Tell us what your exact version is (10g is not a version: 10.2.0.4 is a version), as well as platform and your statistics gathering strategy.
    If it still isn't obvious, follow the [url https://forums.oracle.com/forums/thread.jspa?threadID=863295]Thread: HOW TO: Post a SQL statement tuning request thread. You should post a proper explain plan for times when it works good and times when it works bad. Most performance problems are bad sql, but you can have odd effects from things like bind peeking.
    And if all else fails, blame java.

Maybe you are looking for

  • Exchange Server 2007 SP3 Meeting "Add Rooms" Resources

    Exchange 2007 SP3 on Server 2003 - We have a number of meeting rooms setup and recently an issue has come up.  Users are being asked to authenticate or the error "The address list cannot be displayed.  The connection to Microsoft Exchange is unavaila

  • Problem with save file window

    Every time I save an Image or a File in general the window to save is out of screen resolution. I have a MacBook Pro Retina 13.3 Running Yosemite. here is an image of the issue Buttons for save or cancel are gone and I can't resize the dialogue. I us

  • How to adjust bounding box?

    Hello, I already googelt a lot, but could not find a solution to my problem. Well, the thing is I have created some .eps images in various other programs. Now I want to 'place' them into a InDesign document, in order to combine them into a multi-pane

  • Can you use multiple Apple TVs in a single location?

    I have a client who wishes to put 4 monitors in a meeting room environment. They would like the ability to play the same image on all four monitors, as well as the option to play different things on separate monitors at the same time. Will Apple TV w

  • My photo want sync and my you tube doesn't work after update and my battery drains fast.

    this new update doesn't work like i should work my photo doesn't upload my you tube doesn't work & my battery drain faster than ever now