Errors while trying to compile rdf file on LINUX

hi all,
We are trying to compile rdf file on linux using this command line:
$ORACLE_HOME/bin/rwconverter.sh userid=scott/tiger@dbname batch=no source=test.rdf stype=rdffile dtype=repfile overwrite=yes.
The following errors occured:
REP-0004: Warning: Unable to open user preference file.
REP-3000: Internal error starting Oracle Toolkit.
What's the problem!
plz help.

Hi,
These Metalink (http://metalink.oracle.com) notes might help you:
210795.1 : Troubleshooting Guide for REP-4 error
200474.1 : Comprehensive REP-3000 Troubleshooting and Overview Guide
Navneet.

Similar Messages

  • Compilation Error while trying to compile using ModelSim

    I recieve the following two compilation errors when compiling rtl files using ModelSim on windows2000
    1) Error: E:/Master/MYPROJECT/design/sys/iop/ctu/rtl/ctu_clsp_clkctrl.v(1396):
    (vlog-2163) Macro `CTU_PATH is undefined.
         Files: ctu : ctu_clsp_clkgn_fstlog.v
              ctu_clsp_clkgn_nstep_cnt.v
    2)Error: E:/Master/MYPROJECT/design/sys/iop/ctu/rtl/ctu_clsp_clkgn_1div.v(228):
    Calling task $error outside of action_block is illegal.
         Files: analog -> bw_pll
         scdata -> scdata.v
         sctag -> 2 files
         ctu -> ctu.v
    can any one help?

    Modelsim doesn't like $error PLI name since it is a systemverilog construct. RTL code already has `ifdef MODELSIM that takes care of this issue. Use this flag for modelsim compilation.
    May be error 1) you list is due to error 2) since CTU_PATH is defined in ctu_clsp_clkgn_1div.v

  • Error while trying to import .dmp file in oracle

    Hi,
    I am trying to import a .dmp file using impdp command. Whenever I try that I get following error logs:
    Import: Release 10.2.0.1.0 - Production on Wednesday, 27 July, 2011 19:22:18
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** DUMPFILE=HIST_IR_APR_2011.dmp
    Processing object type TABLE_EXPORT/TABLE/TABLE
    ORA-39083: Object type TABLE failed to create with error:
    ORA-00439: feature not enabled: Partitioning
    Failing sql is:
    CREATE TABLE "DBO"."HIST_IR" ("IR_ID" NUMBER(9,0), "ELS_ID1" NUMBER(9,0), "ELS_ID2" NUMBER(9,0), "ZONE_ID" NUMBER(2,0) NOT NULL ENABLE, "TYPE" NUMBER(2,0) NOT NULL ENABLE, "START_TIME" DATE NOT NULL ENABLE, "END_TIME" DATE NOT NULL ENABLE, "ROAD_NAME" VARCHAR2(50) NOT NULL ENABLE, "UP_POINT" NUMBER(4,2), "DN_POINT" NUMBER(4,2), "UP_LINK_ID" NUMBER(9,0) NOT NULL ENABLE, "DN_LINK_ID" NUMBER
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39112: Dependent object type OBJECT_GRANT:"DBO" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"DBO" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"DBO" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_LOC_TYPE" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_ROAD_NAME" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_ELS_ID1" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."PK_HIST_IR" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    ORA-39112: Dependent object type INDEX:"DBO"."INDX_HIST_IR_START_TIME" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    ORA-39112: Dependent object type CONSTRAINT:"DBO"."PK_HIST_IR" skipped, base object type TABLE:"DBO"."HIST_IR" creation failed
    Job "SYSTEM"."SYS_IMPORT_FULL_01" completed with 10 error(s) at 19:22:21
    Any idea how to get rid of the errors ?
    BR///
    Tayyab

    I also tried to open the .dmp file using Oracle 11g Enterprise Edition but kept getting following errors:
    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** dumpfile=HIST_IR_APR_2011.dmp
    Processing object type TABLE_EXPORT/TABLE/TABLE
    ORA-39083: Object type TABLE failed to create with error:
    ORA-01918: user 'DBO' does not exist

  • Not in GZIP format error while trying to unzip the file

    I'm using GZIPInputStream in order to read data from zipped file.
    It worked perfectly from command line. I have to execute the same code from crontab and it gave me the exception:
    java.io.IOException: Not in GZIP format
    It tries to check the GZIP_MAGIC number and for some reason failed.
    The stack trace I'm getting points to GZIPInputStream constructor.
    GZIPInputStream input = new GZIPInputStream( new FileInputStream( fileName));
    Any help will be highly appreciated.
    Thanks,
    Arnold

    This may be a little late for you, but I am having the same problem. I am using an encryption package as well. I created input and output streams to wrap my encryption package. (javax.?? has something similar)
    Anyway, my algorithm goes: data -> gzip -> encrypt --------- ->decrypt -> gzip ->data
    If I used encryption without the gzip everything works fine, and if I use gzip without the encryption it works fine as well. But if I use them in conjuction, bad thing happen.
    I copied versions of the GZIPInput and output stream classes from java.util.zip and made my own so I could put in debug code. Then I saw what was happening. GZIP writes a header of 8b1f. It does this by writing a first to 1f as a byte (this is 31 in decimal) and then the 8b (this is 139 unsigned byte or -117 signed byte).
    My debug code shows that it writes 31,-117 to the stream, but reads 31,139 when I don't use encryption and 31,-117 when I do. Another strange thing about this, though, is that everywhere I have debug code, this is the only byte that prints out unsigned in my debug messages... When encryption is turned on this same debug message prints -117.
    I have no idea why this is happening. To test things some more, I changed my copy of the gzipinputstream to compare this header value with the GZIP_MAGIC number (35615) and with -29921. Now everything works perfectly. There has to be a better solution for this, but I don't know what it is yet.
    GZIP_MAGIC is 8b1f sent as two bytes 1f and then 8b, and then shifting the 8b.
    -117, using the Integer.toString(-117,16), gives a hex of -75. Using the same methodology as above, we can get -751f which is -29921.
    The header check is essentially:
    if ((int)readUByte(in) << 8) | (int)readUByte(in) != GZIP_MAGIC)
    your screwed
    So change this store the value in a variable and compare it to GZIP_MAGIC and -29921 and your problem will disappear.
    I am not sure what they were thinking. readUByte is a simple read. There is nothing unsigned about it. There is probably some casting somewhere along here that is causing the error, but nothing I am doing seem incorrect.
    Hope this helps. Actually, I hope you have solved your problem by now, but if not,... If you have any insights, I would appreciate hearing them.

  • Error while trying to move a file from a folder to another

    Hi,
    I have created an application that processes files. When a file is processed, the application moves it to another subfolder.
    I am working on Netweaver Developer Studio 7.2. The application is a standard DC Web Dynpro.
    The code used to move the file is the following:
    File destFolder = new File(destinationFolder);
    if (!destFolder.exists())
         repCible.mkdirs();
    if (destFolder.exists()) {
         File fileToMove = new File(parentFolder + "\" + fileName);
         boolean isFileMoved = fileToMove.renameTo(new File(
                   destinationFolder + "\" + fileName));
         disp("Etat du déplacement du fichier: " + isFileMoved);
    The code is surrounded with a try catch to catch any SecurityException or NullPointerException. None of these exception is caught, and the isFileMoved boolean always return false.
    When the destination folder does not exist, it is created but the file isn't moved. Since the files and folders are situated in a network folder, I have tried to implement the exact same code in a stand alone Java application (not WDPJ). The code works fine. What is wrong with my Web Dynpro DC ? Any thoughts ?
    Thanks in advance for your help,
    Thibault

    Problem solved: I used the Scanner to extract data from the files and forgot to close the scanner.
    As a result, the file was still processed by thread and could not be deleted or moved !!

  • Error while trying to compile in Adobe AIR with Dreamweaver CS4

    hello guys,
    I am running under a imac i7, with snow leopard, i have installed the extension for dreamweaver cs4 to compile a project in adoebe air.
    but when a try to compile the prject i receive a java error reporting i have to installa Java 1.4 or higher.
    here it is what i have installed:
    total 64
    drwxr-xr-x  13 root  wheel  442 29 Dic 15:40 .
    drwxr-xr-x  12 root  wheel  408 29 Dic 15:40 ..
    lrwxr-xr-x   1 root  wheel    5 29 Dic 15:39 1.3 -> 1.3.1
    drwxr-xr-x   3 root  wheel  102 29 Mag  2009 1.3.1
    lrwxr-xr-x   1 root  wheel   10 29 Dic 15:39 1.4 -> CurrentJDK
    lrwxr-xr-x   1 root  wheel   10 29 Dic 15:39 1.4.2 -> CurrentJDK
    lrwxr-xr-x   1 root  wheel   10 29 Dic 15:39 1.5 -> CurrentJDK
    lrwxr-xr-x   1 root  wheel   10 29 Dic 15:39 1.5.0 -> CurrentJDK
    lrwxr-xr-x   1 root  wheel    5 29 Dic 15:39 1.6 -> 1.6.0
    drwxr-xr-x   7 root  wheel  238 20 Nov 05:48 1.6.0
    drwxr-xr-x   8 root  wheel  272 29 Dic 15:40 A
    lrwxr-xr-x   1 root  wheel    1 29 Dic 15:39 Current -> A
    lrwxr-xr-x   1 root  wheel    3 29 Dic 15:39 CurrentJDK -> 1.6
    what should i do?
    thank you.

    Hello hypericon_0090001,
    Have you found any fix for this, as I am having the same problem.

  • Error while trying to send a file through XI to SAP R/3 based OLTP system

    Hi all,
    I encountered with an error in the runtime workbench for the below mentioned scenario
    ERROR message
    <b>Unknown error: javax.ejb.CreateException: Neither messager server nor application server are defined for system IXI</b>
    SCENARIO
    The manufacturing system triggers an equipment failure. The failure message is sent through SAP Exchange Infrastructure (SAP XI) to the SAP R/3 based OLTP system,
    changing the equipment status to a failure state. This is achieved by triggering the execution of Remote Function Call (RFC) present in the OLTP system from the SAP XI integration server.
    Thanks and regards
    Jishi

    Hi Jishi,
    Please check the Receiver RFC communication channel in your integration directory.
    Check the logon parameters provided. From the error message, I guess there is no application server or message server provided, which is mandatory for XI to logon to the target backend R/3 system.

  • Error while trying to install jwsdp1.4 on linux

    I was trying to install java web service on my account. But having some problem.
    i have download j2sdk-1_4_2_05-linux-i586.bin and installed in my user directory /scratch/huda/Java/j2sdk-1_4_2_05-linux-i586
    Also set the JAVA_HOME , PATH And CLASSPATH variable.
    Then i tried to install the Web Service installation pack using the following Command.
    /bin/sh jwsdp-1_4-unix.sh -is:javahome /scratch/huda/Java/j2sdk1.4.2_05 -is:tempdir /scratch/huda/WebService/tempo -console
    But it is giving me the following errors.
    Using /scratch/huda/WebService/tempo as temporary directory...
    Searching for Java(TM) 2 Platform, Standard Edition...
    Initializing InstallShield Wizard...
    Exception in thread "main" java.lang.NoClassDefFoundError: JWSDP
    Can u please tell me why i am getting this error.
    regards

    This is a shot out of left field but is it possible that one of your environment variables contains a " " (space) and then JWSDP?
    Also did you define JWSDP_HOME ?
    For example, I once had an environment variable that included something like this:
    C:\Documents and Settings\myUsername, ...
    And I would get:
    "Exception in thread "main" java.lang.NoClassDefFoundError: Documents"

  • Getting Incorrect data type error while trying to do a CAST in table

    Getting an error while trying to compile the following piece of code
    CREATE OR REPLACE PACKAGE BODY A_pkg AS
    FUNCTION A(O_error_message IN OUT varchar2)
    RETURN BOOLEAN IS
    --Declaring the local variables and CURSORs used in the program unit
    L_attrib_tbl CFA_SQL.TYP_attrib_tbl;
    cursor c1 is
    select list_first1.number_11
    from TABLE (CAST (L_attrib_tbl AS "CFA_SQL.TYP_attrib_tbl")) list_first1;
    BEGIN
    L_group_id = '22'
    IF L_merch_type_value = 'G' OR L_merch_type_value = 'I' THEN
    CFA_SQL.QUERY_ATTRIB(L_attrib_tbl,
    L_group_id) ;
    END IF;
    open C1;
    Fetch C1 into L_number;
    close C1;
    return true;
    END A;
    END;
    Also pasting the Spec for CFA_SQL which contains TYP_attrib_tbl
    TYPE TYP_attrib_rec IS RECORD
    group_id CFA_ATTRIB_GROUP.GROUP_ID%TYPE,
    varchar2_1 VARCHAR2,
    number_11 number(10,0));
    TYPE TYP_attrib_tbl is TABLE of TYP_attrib_rec INDEX BY BINARY_INTEGER;
    The error is coming in the line
    cursor c1 is
    select list_first1.number_11
    from TABLE (CAST (L_attrib_tbl AS "CFA_SQL.TYP_attrib_tbl")) list_first1;
    with the error as Invalid data type pointing to CFA_SQL.TYP_attrib_tbl as invalid, but I have initialized L_attrib_tbl as of that datatype only. Ahy help would be greatly appreciated.
    Regards,
    Joydeep

    Hi Kelly,
    There is no data that is entered in that period.The data will be entered for that period next month.
    POV is also not set to that period,but still the problem persists.
    Thanks

  • Error while trying access video file in KM Content

    Hi All,
    I are having an issue while trying to access video files located in KM.
    When we try to access the file we get and error : getting content of document failed: /usr/sap/pa8/SYS/global/config/cm/ep/content/73/47/6176162974773.CONTENT (no such file or directory)
    The file is a .wmv file and has a size of 49 MB. Whereas some other files of size 34 MB opens up with no issues.
    This is happening on production environment but the same works fine in pre prod environment.
    I am trying to access the file from Content Administration -> KM Content
    This issue is happening for multiple files of larger size in that environment. Please suggest how to rectify the issue.
    Regards,
    Somnath.

    Hi Somnath
    The issue you are facing is dealt in the below Note. Kindly check if you are at the specified SP and
    Patch level as per your Portal Version according to the note or not.
    1849886 - Content could be lost when using DBFS repository
    Regards
    Santarshi Samanta

  • IMP-00067 Error while trying to import demo mapviewer dump files

    Getting IMP-00067 Error while trying to import demo dump files
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>imp mvdemo/mvdemo file=C:\oracl
    exe\app\oracle\admin\XE\dpdump\usstates.dmp full=y ignore=y
    Import: Release 10.2.0.1.0 - Production on Sun Mar 21 19:25:44 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Productio
    n
    Export file created by EXPORT:V10.02.00 via conventional path
    Warning: the objects were exported by SCOTT, not by you
    import done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
    import server uses AL32UTF8 character set (possible charset conversion)
    export client uses US7ASCII character set (possible charset conversion)
    IMP-00067: Could not convert to server character set's handle
    IMP-00000: Import terminated unsuccessfully
    Regards
    Thomas

    Have you resolve this? I am running in to same error.

  • When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • TS3694 Hello, I have an error while trying to add move music into my itunes library. 'The itunes library file cannot be saved. You do not have enough previledges for this operaion? help - what does this mean?

    Hello, I have an error while trying to add move music into my itunes library. 'The itunes library file cannot be saved. You do not have enough previledges for this operaion? help - what does this mean?

    Hi luxmi01,
    Here is some information and troubleshooting on the permissions issues you are seeing:
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/ts1387
    Cheers!
    - Ari

  • HT201442 I am got error while trying to restore,, but i just only error file with 3194. I try many step by install lastest version and fix host file, but still fail. Anybody can give me any key point to solve this problem? Thank you

    I am got error while trying to restore,, but i just only error file with 3194. I try many step by install lastest version and fix host file, but still fail. Anybody can give me any key point to solve this problem? Thank you

    Error 3194:
    This device isn't eligible for the requested build
    It means that Apple has stopped signing the version of iOS that you have, try downloading the latest iOS version, then try Restore again.

  • Reports Builder 6i Crashes while compiling .rdf file

    Hi,
    Reports Builder 6i Crashes while compiling .rdf file which has output format as pdf. Does anyone knows how to fix this.
    Thanks,
    HC.

    Hi, you may look at your report builder version because a lot of them are bugged out and do need to be upgraded to a higher level...I saw a lots of crashing when opening reports and also compiling reports that ended being an old report builder version full of bugs.

Maybe you are looking for

  • Can't sync most of my songs

    Whenever I try and sync my iPod, it only syncs a few songs then says "*Attempting to copy to the disk "DEBBIES IP" failed. An unknown error has occurred (-69)*". What does that mean and how do I fix it???

  • FCE AVCHD and Importing

    Hello, I'm trying to import AVCHD files from a Sony HDR-SR11 to FCE 3.5 using Voltaic and the import time is excruciatingly slow (roughly 12x real time). I understand that FCE 4 works with AVCHD files but I'm also reading posts on this forum and else

  • Obsolete Connection Information

    Hi, When I am running address cleansing job, I am getting the following error: The Job to calculate usage dependencies cannot be executed because the Job Contains Obsolete Connection Information. Please notify Customer Support. How do you fix this? T

  • Menu Bar items read-only in 10.5.2

    After 10.5.2 upgrade, I'm unable to use a lot of drop-down menus for Menu Bar items such as Bluetooth, Airport, Date&Time, International etc. Spotlight and third-party menus (Little Snitch, MiniBatteryLogger) are OK, but system ones became all-gray (

  • Best Compressor Settings for Backup

    Hello all, At my place of business we capture live footage in DVCPRO HD format using Final Cut Pro. From that I edit the footage and compress it using Compressor. My question is concerning the unused footage that we capture. I'm trying to learn the b