Error in import table data using oracle datapump

i am trying to import table data using oracle datapump
CREATE TABLE emp_xt (
ID NUMBER,
NAME VARCHAR2(30)
ORGANIZATION EXTERNAL (
TYPE ORACLE_DATAPUMP
DEFAULT DIRECTORY backup
LOCATION ('a.dmp')
it return the following error
ORA-29913: error in executing ODCIEXTTABLEOPEN callout
ORA-29400: data cartridge error
KUP-04084: The ORACLE_DATAPUMP access driver does not support the ROWID column.
ORA-06512: at "SYS.ORACLE_DATAPUMP", line 19
please help me

.dmp file generated from exp command file not from oracle_datapump

Similar Messages

  • Getting error while importing the data using loadercli

    Hello,
    I want to copy the data using export/ import  via (loadercli).
    scenario:
    1) I have 2 server and i want to export data from old server and import in to new MAXDB server using loadercli.
    I have done this once and it went fine , but now I want to do the export import again so i will have te latest data on the new server.
    when i tried to do that it gives error that the table already exist . Can i use loadercli to import hte data again ?
    can any one help me in this ?
    Regards,
    Bhavesh

    > Do you want to add and/or update the data in the already existing tables or do you want to replace the content completely?
    >
    > so in that way :
    > bot the options are fine what ever take less time.
    Sorry mate, but YOU have to know what you want here.
    I gave you an easy to follow set of steps.
    As you don't seam to mind the outcome, just might just use them...
    > I wanted to know weathe i can use the  loadercli for thie export import or not? if yes then is there any new steps to do before i do the export import?
    We had this discussion before...
    >
    > For that the easiest option would be just to drop the tables of SAPR3 and run the import again.
    >
    > For ease of use you could also just do:
    > - logon as superdba
    > - drop user SAPR3
    > - create user SAPR3 password SOMEPW not exclusive dba
    >
    > After these steps you can easily pump the data into the database again.
    >
    > So here in th above given steps , i am creating a new SAPR3 user and why it is not exclusive dba ?
    >  i already have that user SAPR3 can i use the same.
    Yes, you do have the SAPR3 user.
    But you don't seem to like to read documentation or learn about how the tools work or anything like that.
    Therefore I gave you s simple way to reach your goal.
    Of course it's possible to reuse the user.
    But then you would have to deal with already existing tables, already existing data etc.
    You don't seem to be able to do that. So, the easy steps might be better suited for your needs.
    regards,
    Lars

  • How to load Matrix report data into basic table data using ODI

    Hi,
    How to load Matrix report data into basic table data using oracle Data Integrator ?
    Requirement Description:
    Following is the matrix report data:
    JOB                       DEPT10                DEPT20 
    ANALYST                                           6000
    CLERK                   1300                     1900 Need to convert it into below format:
    JOB                             Dept                        Salary
    ANALYST                  DEPT10     
    ANALYST                  DEPT20                     6000
    CLERK                       DEPT10                    1300
    CLERK                       DEPT20                    1900
        Thanks for your help in advance. Let me know if any further explanation is required.

    Your list seems to be a little restrictive, you can do a lot more with ODI procedures.
    If you create new procedure, and add a step. In the 'command on source' tab set you technology and schema as per your source database. Use the unpivot functionality as described in the link, please, rather than using 'SELECT *' use the appropriate column names and alias them for eg:
    SELECT job as job,
    deptsal as deptsal,
    saldesc as saledesc
    FROM pivoted_data
    UNPIVOT (
    deptsal --<-- unpivot_clause
    FOR saldesc --<-- unpivot_for_clause
    IN (d10_sal, d20_sal, d30_sal, d40_sal) --<-- unpivot_in_clause
    Then in your 'command on target' tab set the technology and schema to your target db, then put your INSERT statement for eg:
    INSERT INTO job_sales
    (job,
    deptsal,
    saledesc
    VALUES
    :job,
    :deptsal,
    :saledesc
    Therefore you are using bind variables from source to load data into target.
    Obviously if the source and target table are in the same database, then you can have it all in one statement in the 'command on target' as
    INSERT INTO job_sales
    (job,
    deptsal,
    saledesc
    SELECT job as job,
    deptsal as deptsal,
    saldesc as saledesc
    FROM pivoted_data
    UNPIVOT (
    deptsal --<-- unpivot_clause
    FOR saldesc --<-- unpivot_for_clause
    IN (d10_sal, d20_sal, d30_sal, d40_sal) --<-- unpivot_in_clause
    also set the log counter as 'Insert' on the tab where your INSERT statement is, so you know how many rows you insert into the table.
    Hope this helps.
    BUT remember that this feature only came out in Oracle 11g.

  • Importing excel data into oracle tables

    Hello gurus,
    Importing excel data into oracle tables..
    I know this is the most common question on the thread ...First, i searched the forum, i found bunch of threads with loading data using sqlloader, converting excel into .Txt, tab delimited file, .csv file etc....
    Finally i was totally confused in terms how to get this done....
    Here is wat i have
       - Excel file on local computer.
       - i have laod data into dev environment tables(So no risk involved, but want to try something simple)
       - Oracle version 11.1.0.7
       - Sqlplus and toad (editors)
    Here is wat i like to do ....i dont know if its possible
        - Without going to unix server can i do everthing on local system by making use of oracle db and sqlplus or toad
       SQLLOADER might be one option...but i dont want to go the unix server for placing files and logs and stuff.
    Wat will be best and simplest option to do?? and wat format will best to convert from excel into csv, or txt or tab delimited etc.....
    If you suggest sqlloader, any code example will be greatly appriciated.
    Thank you so much!!!

    Hi,
    user642297 wrote:
    Imran,
    This is increadible option in toad!!! It works absolutely sweet!! I have toad 9.7 version. IT works great. Thank you so much!!You are welcome :)
    Well i have further discussion on this ....this option is great if you doing in staging or development area. What if your doing in prod?? If you automating the sqlloader then how do u do it?? I think we still need to stick with traditional approach of laoding data by making use of SQLLoader right ?? If m wrong please correct me.well, in our case, we do have access to a custom schema in prod where we create the staging table and load the data from datafiles.
    try this:
    load data
    infile 'C:\dest.csv'
    into table dest_table
    fields terminated by "~" optionally enclosed by '"'
    TRAILING NULLCOLS
    (name,
    owner_nm,
    description_column,
    UPDT_DT DATE 'MM/DD/YYYY')
    {code}
    you can get more info about sql loader and your error here:
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96652/ch05.htm
    http://www.allinterview.com/showanswers/53766.html
    And one more quick question ...i found an example of control file , in that i see .dat format file. Is it a data file ?? can i try that option ?? But in excel i didnt see to convert the .dat format file.
    Any thoughts ???
    It is same as a delimiter text file.
    steps to create a .dat file (from a excel file):
    1. Insert a column between two columns and populate it with the delimiter (in our case, it is ~)
    2. Save the file as unicode text.
    3. Open the file in text editor and remove all the tabs (find an replace with blank)
    4. Save the file as "DEST.dat". Select encoding as UTF-8 while saving.
    5. Your .dat file is ready.
    Regards
    Imran
    Edited by: Imran Soudagar on Apr 22, 2010 10:22 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to import csv data into Oracle using c#

    Hello,
    How to import csv data into Oracle using c #. Where data to be imported 3GB in size and number of rows 7512263. I've managed to import csv data into Oracle, but the time it takes about 1 hour. How to speed up the time it takes to import csv data into oracle. Thank you.
    This is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Diagnostics;
    using System.Threading;
    using System.Text.RegularExpressions;
    using System.IO;
    using FileHelpers;
    using System.Data.OracleClient;
    namespace sqlloader
    class Program
    static void Main(string[] args)
    int jum;
    int i;
    bool isFirstLine = false;
    FileHelperEngine engine = new FileHelperEngine(typeof(XL_XDR));
    //Connect To Database
    string constr = "Data Source=(DESCRIPTION=(ADDRESS_LIST="
    + "(ADDRESS=(PROTOCOL=TCP)(HOST= pt-9a84825594af )(PORT=1521 )))"
    + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=o11g)));"
    + "User Id=xl;Password=rahasia;";
    OracleConnection con = new OracleConnection(constr);
    con.Open();
    // To Read Use:
    XL_XDR[] res = engine.ReadFile("DataOut.csv") as XL_XDR[];
    jum = CountLinesInFile("DataOut.csv");
    FileInfo f2 = new FileInfo("DataOut.csv");
    long s2 = f2.Length;
    int jmlRecord = jum - 1;
    for (i = 0; i < jum; i++)
    ShowPercentProgress("Processing...", i, jum);
    Thread.Sleep(100);
    if (isFirstLine == false)
    isFirstLine = true;
    else
    string sql = "INSERT INTO XL_XDR (XDR_ID, XDR_TYPE, SESSION_START_TIME, SESSION_END_TIME, SESSION_LAST_UPDATE_TIME, " +
    "SESSION_FLAG, VERSION, CONNECTION_ROW_COUNT, ERROR_CODE, METHOD, HOST_LEN, HOST, URL_LEN, URL, CONNECTION_START_TIME, " +
    "CONNECTION_LAST_UPDATE_TIME, CONNECTION_FLAG, CONNECTION_ID, TOTAL_EVENT_COUNT, TUNNEL_PAIR_ID, RESPONSIVENESS_TYPE, " +
    "CLIENT_PORT, PAYLOAD_TYPE, VIRTUAL_TYPE, VID_CLIENT, VID_SERVER, CLIENT_ADDR, SERVER_ADDR, CLIENT_TUNNEL_ADDR, " +
    "SERVER_TUNNEL_ADDR, ERROR_CODE_2, IPID, C2S_PKTS, C2S_OCTETS, S2C_PKTS, S2C_OCTETS, NUM_SUCC_TRANS, CONNECT_TIME, " +
    "TOTAL_RESP, TIMEOUTS, RETRIES, RAI, TCP_SYNS, TCP_SYN_ACKS, TCP_SYN_RESETS, TCP_SYN_FINS, EVENT_TYPE, FLAGS, TIME_STAMP, " +
    "EVENT_ID, EVENT_CODE) VALUES (" +
    "'" + res.XDR_ID + "', '" + res[i].XDR_TYPE + "', '" + res[i].SESSION_START_TIME + "', '" + res[i].SESSION_END_TIME + "', " +
    "'" + res[i].SESSION_LAST_UPDATE_TIME + "', '" + res[i].SESSION_FLAG + "', '" + res[i].VERSION + "', '" + res[i].CONNECTION_ROW_COUNT + "', " +
    "'" + res[i].ERROR_CODE + "', '" + res[i].METHOD + "', '" + res[i].HOST_LEN + "', '" + res[i].HOST + "', " +
    "'" + res[i].URL_LEN + "', '" + res[i].URL + "', '" + res[i].CONNECTION_START_TIME + "', '" + res[i].CONNECTION_LAST_UPDATE_TIME + "', " +
    "'" + res[i].CONNECTION_FLAG + "', '" + res[i].CONNECTION_ID + "', '" + res[i].TOTAL_EVENT_COUNT + "', '" + res[i].TUNNEL_PAIR_ID + "', " +
    "'" + res[i].RESPONSIVENESS_TYPE + "', '" + res[i].CLIENT_PORT + "', '" + res[i].PAYLOAD_TYPE + "', '" + res[i].VIRTUAL_TYPE + "', " +
    "'" + res[i].VID_CLIENT + "', '" + res[i].VID_SERVER + "', '" + res[i].CLIENT_ADDR + "', '" + res[i].SERVER_ADDR + "', " +
    "'" + res[i].CLIENT_TUNNEL_ADDR + "', '" + res[i].SERVER_TUNNEL_ADDR + "', '" + res[i].ERROR_CODE_2 + "', '" + res[i].IPID + "', " +
    "'" + res[i].C2S_PKTS + "', '" + res[i].C2S_OCTETS + "', '" + res[i].S2C_PKTS + "', '" + res[i].S2C_OCTETS + "', " +
    "'" + res[i].NUM_SUCC_TRANS + "', '" + res[i].CONNECT_TIME + "', '" + res[i].TOTAL_RESP + "', '" + res[i].TIMEOUTS + "', " +
    "'" + res[i].RETRIES + "', '" + res[i].RAI + "', '" + res[i].TCP_SYNS + "', '" + res[i].TCP_SYN_ACKS + "', " +
    "'" + res[i].TCP_SYN_RESETS + "', '" + res[i].TCP_SYN_FINS + "', '" + res[i].EVENT_TYPE + "', '" + res[i].FLAGS + "', " +
    "'" + res[i].TIME_STAMP + "', '" + res[i].EVENT_ID + "', '" + res[i].EVENT_CODE + "')";
    OracleCommand command = new OracleCommand(sql, con);
    command.ExecuteNonQuery();
    Console.WriteLine("Successfully Inserted");
    Console.WriteLine();
    Console.WriteLine("Number of Row Data: " + jmlRecord.ToString());
    Console.WriteLine();
    Console.WriteLine("The size of {0} is {1} bytes.", f2.Name, f2.Length);
    con.Close();
    static void ShowPercentProgress(string message, int currElementIndex, int totalElementCount)
    if (currElementIndex < 0 || currElementIndex >= totalElementCount)
    throw new InvalidOperationException("currElement out of range");
    int percent = (100 * (currElementIndex + 1)) / totalElementCount;
    Console.Write("\r{0}{1}% complete", message, percent);
    if (currElementIndex == totalElementCount - 1)
    Console.WriteLine(Environment.NewLine);
    static int CountLinesInFile(string f)
    int count = 0;
    using (StreamReader r = new StreamReader(f))
    string line;
    while ((line = r.ReadLine()) != null)
    count++;
    return count;
    [DelimitedRecord(",")]
    public class XL_XDR
    public string XDR_ID;
    public string XDR_TYPE;
    public string SESSION_START_TIME;
    public string SESSION_END_TIME;
    public string SESSION_LAST_UPDATE_TIME;
    public string SESSION_FLAG;
    public string VERSION;
    public string CONNECTION_ROW_COUNT;
    public string ERROR_CODE;
    public string METHOD;
    public string HOST_LEN;
    public string HOST;
    public string URL_LEN;
    public string URL;
    public string CONNECTION_START_TIME;
    public string CONNECTION_LAST_UPDATE_TIME;
    public string CONNECTION_FLAG;
    public string CONNECTION_ID;
    public string TOTAL_EVENT_COUNT;
    public string TUNNEL_PAIR_ID;
    public string RESPONSIVENESS_TYPE;
    public string CLIENT_PORT;
    public string PAYLOAD_TYPE;
    public string VIRTUAL_TYPE;
    public string VID_CLIENT;
    public string VID_SERVER;
    public string CLIENT_ADDR;
    public string SERVER_ADDR;
    public string CLIENT_TUNNEL_ADDR;
    public string SERVER_TUNNEL_ADDR;
    public string ERROR_CODE_2;
    public string IPID;
    public string C2S_PKTS;
    public string C2S_OCTETS;
    public string S2C_PKTS;
    public string S2C_OCTETS;
    public string NUM_SUCC_TRANS;
    public string CONNECT_TIME;
    public string TOTAL_RESP;
    public string TIMEOUTS;
    public string RETRIES;
    public string RAI;
    public string TCP_SYNS;
    public string TCP_SYN_ACKS;
    public string TCP_SYN_RESETS;
    public string TCP_SYN_FINS;
    public string EVENT_TYPE;
    public string FLAGS;
    public string TIME_STAMP;
    public string EVENT_ID;
    public string EVENT_CODE;
    I hope someone can give me a solution. Thanks

    The fastest way is to use external tables or sql loader (sqlldr). (If you use external tables or sql loader, you don't use C# at all).

  • What is the easiest way to export all tables data from Oracle to MS SQL Server?

    Hello MS,
    I would like to export all tables from Oracle 11.2 to MS SQL Server 2012 R1.
    Using the tool "Microsoft SQL Server Migration Assistant v6.0 for Oracle" did not work for me because there are too many warnings and errors regarding the schema creation (MS cannot know it because they are not the schema designer). My idea is
    to leave/skip the schema creation to the application designer/supplier and instead concentrate on the Oracle data export and MS SQL data import.
    What is the easiest way to export all tables data from Oracle to MS SQL Server quickly?
    Is it:
    - the „MS SQL Import and Export Data“ Tool
    - the “MS SQL Integration Services” Tool
    - not Oracle dump *.dmp format because it is a propritery binary format
    - flat file *.csv (delimited format)
    Thanks!

    Hi lingodingo,
    If you want to directly export all tables from Oracle database to SQL Server, I suggest you use SQL Server Import and Export Wizard. Because you just need to follow the wizard with GUI, this is the easiest way.
    If you want to make some modification for the tables‘ data before loading to SQL Server, I suggest you use SQL Server Integration Services package. For more details, please refer to the following similar thread:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38b2bed2-9d4e-48d4-a33f-1d9eed1c062d/flat-file-to-sql-server?forum=sqldatamining
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Import table data in right order to avoid violating foreign key constraints

    Gentlemen
    I am trying to import table data into an existing 10g schema using datapump import in table mode.
    However, in order to avoid violating foreign key constraints, the tables must be loaded in a specified order. I tried specifying the order in the TABLES parameter:
    TABLES=table1,table2,table3 etc.
    However, datapump seems to chose its own order leading to errors like the following:
    ORA-31693: Table data object "SCHEMAX"."TABLE3" failed to load/unload and is being skipped due to error:
    ORA-02291: integrity constraint (SCHEMAX.TABLE3_TABLE1#FK) violated - parent key not found
    I want to try to avoid having to disable all foreign keys because there are hundreds of them.
    Any advice?
    Yours
    Claus Jacobsen, Denmark

    Thanks Anantha.
    Since I am only loadding data (the constraints are already defined in the target database), I am not sure whether this approach would work. Meanwhile I have solved the problem of moving data from one system to another using another, tedious and far from elegant approach that I would prefer to not eloborate on:-)
    However, I have also discovered another probable reason why the foreign key constraints were violated, other than wrong order of table data loading. It turns out almost every single table in the schema contains a trigger supposed to generate a unique row ID from a sequence on insert such as:
    CREATE OR REPLACE TRIGGER "SCHEMAX"."TABLEX#B_I_R"
    BEFORE INSERT
    ON TABLEX
    FOR EACH ROW
    DECLARE
    BEGIN
    SELECT tablex_seq.nextval INTO :NEW.ID FROM dual;
    END;
    If the import mechanism fires this trigger, and the sequences in the source and the target systems are not synchronized, then I guess that referred records a more than likely to end up with wrong ID's compared to the row ID's in the referring rows?
    Spooky. Anybody can confirm this theory?
    Yours
    Claus
    Message was edited by:
    user586249

  • Getting Error while accessing the data using odata service

    Hi All,
    Iam new to SAP FIORI. 
    Iam getting the below error while accessing the data using odata service.
    "Failed to load resource: the server responded with a status of 404 (Not found)"
    "No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin "
    i have tried all the solutions like changing the url pattern "proxy/htttp".
    and disabled - security in chrome (Chrome is Updated version).
    i tried with IE still got the same problem.
    And installed all the required software in eclipse
    While installing GWPA plugin i got the following error.
    let me know if any one have idea.
    Thanks in advance.

    > Do you want to add and/or update the data in the already existing tables or do you want to replace the content completely?
    >
    > so in that way :
    > bot the options are fine what ever take less time.
    Sorry mate, but YOU have to know what you want here.
    I gave you an easy to follow set of steps.
    As you don't seam to mind the outcome, just might just use them...
    > I wanted to know weathe i can use the  loadercli for thie export import or not? if yes then is there any new steps to do before i do the export import?
    We had this discussion before...
    >
    > For that the easiest option would be just to drop the tables of SAPR3 and run the import again.
    >
    > For ease of use you could also just do:
    > - logon as superdba
    > - drop user SAPR3
    > - create user SAPR3 password SOMEPW not exclusive dba
    >
    > After these steps you can easily pump the data into the database again.
    >
    > So here in th above given steps , i am creating a new SAPR3 user and why it is not exclusive dba ?
    >  i already have that user SAPR3 can i use the same.
    Yes, you do have the SAPR3 user.
    But you don't seem to like to read documentation or learn about how the tools work or anything like that.
    Therefore I gave you s simple way to reach your goal.
    Of course it's possible to reuse the user.
    But then you would have to deal with already existing tables, already existing data etc.
    You don't seem to be able to do that. So, the easy steps might be better suited for your needs.
    regards,
    Lars

  • Character problem in toad import table data from excel

    Hi everybody,
    I want to import data from an excel file to an Oracle table, so I'm using Toad's "Import Table Data" tool for this purpose.
    The problem is Oracle doesn't import non-english characters properly.
    My database is XE and character set is 'AL32UTF8'.
    I searched web, but didn't find the solution.
    Please help...

    Hi again,
    Thank you for your reply Srini, but it is not about Toad.
    Character encoding of Excel causes the problem.
    I exported an unicode encoded csv file from excel and tried to load data from that file. It worked.
    Thanks.

  • Getting the below error  when importing base data

    Hi.. I am trying to import base data using the command ant importBaseData command.
    The following is the content in my dasEnv.Bat:
    set ATGJRE=D:\Program Files\Java\jdk1.6.0_18\bin\java
    set WL_HOME=C:\Oracle\Middleware\wlserver_10.3
    set WL_VERSION=10.3
    Please help me out
    Following is the error i am getting:
    _publishingFileRepository:
    [exec] Application Server: weblogic
    [exec] The following installed ATG components are being used to launch:
    [exec] ATGPlatform version 9.2 installed at C:\ATG\ATG9.2
    [exec]
    [exec] Created ".\servers\baseDataImport\startDynamo.jar" in 8,046ms.
    [exec] -------------------
    [exec] JAVA_ARGS: -Djava.security.policy=lib/java.policy -Datg.dynamo.home="." -Datg.dynamo.root=".\.." -Datg.dynamo.display= -Djava.protocol.handler.pkgs=atg.net.www.protocol -Djava.naming.factory.url.pkgs=atg.
    .dynamo.layers= -Dsun.rmi.dgc.server.gcInterval=3600000
    [exec] -------------------
    [exec] DYNAMO_MODULES: @@atg/env/Startup.modules@@
    [exec] -------------------
    [exec] CONFIGPATH: @@atg/env/Startup.configPath@@;..\DAS\config\dtmconfig.jar;localconfig;servers\baseDataImport\localconfig;..\DAF\config\dafconfig.jar
    [exec] -------------------
    [exec] CLASSPATH: .\locallib;D:\Program Files\Java\jdk1.6.0_18\lib;C:\ATG\ATG9.2\eGarage\core\conf;C:\Python-2.5-wince-dev\lib;C:\ATG\ATG9.2\RL\lib;C:\ATG\ATG9.2\PublishingAgent\base\lib;C:\ATG\ATG9.2\home\serve
    [exec] -------------------
    [exec] PATH: D:\Program Files\Java\jdk1.6.0_18\bin;C:\Oracle\Middleware\wlserver_10.3\common\bin;C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\W
    ;C:\Program Files\CA\SharedComponents\SubscriptionLicense\;C:\Program Files\CA\eTrustITM;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Microsoft Application Virt
    in32\ice
    [exec] **** info Mon Sep 26 15:15:52 CEST 2011 1317042952556 /DPSLicense atg.service.ServiceResources->dynamoPrintExpirationDate : This license will expire on Sat Nov 24 05:59:59 CET 2210
    [exec] **** info Mon Sep 26 15:15:52 CEST 2011 1317042952564 /DPSLicense DPS is licensed to License User - Production
    [exec] **** info Mon Sep 26 15:15:52 CEST 2011 1317042952564 /DPSLicense atg.service.ServiceResources->unlimitedLicenseMsg : This product is licensed for an unlimited number of CPUs.
    [exec] **** info Mon Sep 26 15:15:53 CEST 2011 1317042953770 /atg/epub/version/VersionManagerRepository SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:53 CEST 2011 1317042953927 /atg/dynamo/server/SQLRepositoryEventServer Service /atg/dynamo/server/SQLRepositoryEventServer listening at http://HYDHTC76776L:49716/
    [exec] **** info Mon Sep 26 15:15:53 CEST 2011 1317042953992 /atg/epub/process/ProcessData-ver SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:53 CEST 2011 1317042953993 /atg/epub/process/ProcessDataRepository SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:54 CEST 2011 1317042954086 /atg/epub/file/PublishingFiles-ver SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:54 CEST 2011 1317042954096 /atg/epub/file/PublishingFileRepository SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:54 CEST 2011 1317042954413 /atg/userprofiling/InternalProfileRepository SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:54 CEST 2011 1317042954644 /atg/dynamo/security/AdminSqlRepository SQL Repository startup complete
    [exec] **** info Mon Sep 26 15:15:54 CEST 2011 1317042954645 /atg/dynamo/security/AdminAccountInitializer Initializing account database /atg/dynamo/security/AdminAccountManager from /atg/dynamo/security/
    [exec]
    [exec] Nucleus running
    [exec]
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955379 / Unable to create class atg.deployment.server.DeploymentServer for configuration /atg/epub/DeploymentServer java.lang.NoClassDefFoundError
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / Unable to resolve component /atg/epub/Configuration java.lang.NoClassDefFoundError: javax/ejb/FinderException
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.lang.Class.forName0(Native Method)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.lang.Class.forName(Class.java:247)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.PropertyEditors.getPropertyEditor(PropertyEditors.java:254)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.BeanConfigurator.getProperty(BeanConfigurator.java:731)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.BeanConfigurator.configureStateProperty(BeanConfigurator.java:683)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.BeanConfigurator.configureStateProperty(BeanConfigurator.java:594)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.BeanConfigurator.configureState(BeanConfigurator.java:418)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.PropertyConfiguration.configureState(PropertyConfiguration.java:809)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:748)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:62)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1319)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1119)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1051)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.ConfigurationRef.getValue(ConfigurationRef.java:81)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.ConfigurationRefProperty.getValue(ConfigurationRefProperty.java:82)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:357)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:218)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:241)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:275)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:752)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:62)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1319)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1119)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1051)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.ConfigurationRefArray.getValue(ConfigurationRefArray.java:146)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:357)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:218)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:241)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:275)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:752)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:62)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1319)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1119)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:787)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:569)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:550)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:394)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.Nucleus.resolveName(Nucleus.java:2648)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.GenericService.resolveName(GenericService.java:315)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.nucleus.GenericService.resolveName(GenericService.java:367)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5498)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5072)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / Caused by :java.lang.ClassNotFoundException: javax.ejb.FinderException
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.security.AccessController.doPrivileged(Native Method)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.lang.Class.forName0(Native Method)
    [exec] **** Error Mon Sep 26 15:15:55 CEST 2011 1317042955407 / at java.lang.Class.forName(Class.java:247)

    It is not able to find the class javax/ejb/FinderException
    Please include one of the jars from below location and run the script again.
    http://www.findjar.com/class/javax/ejb/FinderException.html
    If any class is missing after then, please include that jar as well.
    Peace
    Shaik

  • Error, while pushing the data from Oracle to MSSQL.

    Hi,
    I am facing the below error, while pushing the data from Oracle to MSSQL.
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Transparent gateway for MSSQL][Microsoft][ODBC SQL Server Driver][SQL Server]Update or insert of view or function 'View_Name' failed because it contains a derived or constant field.[Microsoft][ODBC SQL Server Driver][SQL Server]Statement(s) could not be prepared. (SQL State: 00000; SQL Code: 8180)
    Please suggest me, how to overcome from this.
    Thanks.

    [email protected] wrote:
    Hi,
    I am facing the below error, while pushing the data from Oracle to MSSQL.
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Transparent gateway for MSSQL][Microsoft][ODBC SQL Server Driver][SQL Server]Update or insert of view or function 'View_Name' failed because it contains a derived or constant field.[Microsoft][ODBC SQL Server Driver][SQL Server]Statement(s) could not be prepared. (SQL State: 00000; SQL Code: 8180)
    Please suggest me, how to overcome from this.
    Thanks.This is an error from SQL Server being passed back to Oracle so you can see the problem.
    What it is saying is that you are trying to insert (or update) data to a database view and that view contains a column that is either a constant (literal) value or is derived (a calculation, formula or string concatenation etc.).
    As such, you can't insert or update data on that column because it has nowhere to go on the database table(s) that underly the view.

  • Loading FA data using ORACLE WEB ADI brings application down.

    Hi,
    Can anyone suggest on the below issue.
    Loading FA data using ORACLE WEB ADI brings application down.
    Regards
    Ketan.

    Application Release 12.0.6
    Database version 10.2.0.2
    The following error has occurred
    Exception Name: java.lang.NullPointerException
    Stack Trace: java.lang.NullPointerException at oracle.apps.fnd.common.WebAppsContext.doValidateSession(WebAppsContext.java:1425) at oracle.apps.fnd.common.WebAppsContext.validateSession(WebAppsContext.java:1775) at oracle.apps.bne.framework.BneOracleWebAppsContext.isValidateIcxSessionTicket(BneOracleWebAppsContext.java:2258) at oracle.apps.bne.framework.BneOracleWebAppsContext.setupContext(BneOracleWebAppsContext.java:1511) at oracle.apps.bne.framework.BneAbstractWebAppsContext.getContext(BneAbstractWebAppsContext.java:207) at oracle.apps.bne.framework.BneBaseBajaContext.getBneWebAppsContext(BneBaseBajaContext.java:191) at oracle.apps.bne.framework.BneBajaServlet.doRequest(BneBajaServlet.java:151) at oracle.apps.bne.framework.BneBaseServlet.doPost(BneBaseServlet.java:95) at javax.servlet.http.HttpServlet.service(HttpServlet.java:763) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64) at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26) at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15) at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299) at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:595)
    Sometimes we are getting
    Fatal error FND_MESSAGE : max no of open file descriptors.
    In alert log file it is showing
    WARNING:Oracle instance running on a system with low open file descriptor
    limit. Tune your system to increase this limit to avoid
    severe performance degradation.
    Not able to understand exactly where the issue is.
    Regards

  • Uploading an excel sheet data using Oracle APEX 3.2

    Hi All,
    Please help me out to upload excel sheet data using oracle APEX 3.2.
    Am following the steps mentioned in the below link, but even after that am getting an error saying no data found
    http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/
    Please help me to proceed further.
    Regards,
    Sakthi

    Hi Andy,
    Thank you very much for looking into my thread.
    Actually i followed everything that is been mentioned in "http://avdeo.com/2008/05/21/uploading-excel-sheet- using-oracle-application-express-apex/" and i got a successful result.
    But, with the above process I can only upload a .csv format excel and not a .xls format excel file.
    Thats where i got stucked and unable to find any clue on how to move further to achieve in uploading .xls file.
    It would be very great if you guide me through in this process.
    Shiva

  • Error while uploading the data using FM"upload"

    Hi,
    I encountering an error while uploading the data using text file with FM " UPLOAD"
    The error is "File does not exist or cannot be opened "
    But there is a file with name and extenstion right.
    Regards
    Vishnu

    You have to create RC29P-IDNRK(var) using concatenate statement. Try this.
    DATA: new_mark TYPE bdcdata-fnam.
    CONCATENATE 'RC29P-IDNRK(' var ')' INTO new_mark.
    PERFORM bdc_field USING new_mark W_BOM-QTY

  • Export and import table data with Java

    I need a library for simple exporting and importing table data.
    The data should be exported to a SQL file with insert statements.
    I just want to tell the library the table name, the connection and where to store the file. The usage should be very simple.
    Are there any small libraries for this? Finished calsses and methods which I can just call?

    I need a library for simple exporting and importing
    table data.
    The data should be exported to a SQL file with insert
    statements.Every database has utilities to export/import data from tables. Take a look at your database manual.

Maybe you are looking for

  • MRKO Error : Express document "update was terminated" received from author

    Hi Gurus, When settling Consignment through MRKO we are getting error 'Express document "update was terminated" received from author xxxx' in ECD system. At workplace inbox, the error shows "Error Info...   XS 007: Address invalid". Please note that

  • Can't get OneStep iDVD going

    I am trying to quickly make DVD's from tapes on my Sony DCR-TRV520 NTSC camcorder. Time is short so OneStep iDVD sounded ideal altho basic. I can't get it going on my PowerBook G4 or my wife's iMac G5, both running 10.4.3 Most of the time the camera

  • Fixing  image file types with FW CS3

    Tryig to get my jpg files to open in FW by defualt. i have tried everything. Right click and choose FW and it is not listed. Choose other programs and it doesn't save it. Tried this http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_16833 and

  • Allocating Costs from Variables giving Entity to Variables receiving Entity

    Hi everybody, I'm creating a Planning application (Classic Application 11.1.2 with Calculation Manager) and i'm a bit in trouble with a business rule. The issue is that i need to allocate some costs from some entities to other ones, assuming that bot

  • VAR syntax in business rule

    <p>Hi,</p><p>I'm trying VAR command in busines rule.</p><p> </p><p>Type of local variables declared by VAR in business rule can benumeric only?</p><p>I shoud use string variables.</p>