Help on 10g IMP.EXE needed

Hello,
I'm running Oracle Database 10g Enterprise Edition 10.2.0.1.0 and Oracle Developer Suite 10g Release 2, both on the same machine, running Windows XP SP3, for learning propose.
The system was a clean install, only Windows, oracle database and oracle developer suite are installed.
When I use those computers in my school's computer lab, the IMP.EXE disappear instantly right after the import is finished.
However, on my own computer, the IMP.EXE just stopped after the import, and never disappear until I close the command prompt myself.
This doesn't cause much problem when installing the repository, as I can close it and the installation (seems to) goes on without problem.
But when I try to import a dmp file, it seems that if I close the command prompt, the Repository Object Navigator tell me "CDI-22582 Error occurred running the export utility. Check log file errlog.err". The errlog.err file produced was 0 byte in size.
My assignment will due after a few weeks, I need to have it setup as soon as possible. May anyone please help? Thank you very much.

Try setting your imp/exp tools to the database impexp tools as stated in the install manual.
Step 5b - (Oracle 9i or 10.2 DB) Install Oracle 9i or 10.2 Import and Export Utilities
Before installing Designer Repository on an Oracle 9i or 10.2 database, you need to set up the installation workstation to use the Oracle 9i or 10.2 import and export utilities. To do so, perform the following steps at the workstation from which you will be running the repository installation:
From the Oracle 9i or 10.2 installation media, install the Oracle 9i or 10.2 import and export utilities in a dedicated Oracle home.
In the Windows Registry, locate the key named:
HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_HomeName\REPOS61
where HOMEn is the home number of the home installed into for a multiple Oracle home environment, but is not present where the default Oracle home is being used.
Change the value of the EXECUTE_IMPORT and EXECUTE_EXPORT variables to point to the new Oracle home. Thus, if the new Oracle home is d:\des_9i, the settings would be:
d:\des_9i\bin\exp.exe
d:\des_9i\bin\imp.exe
D:\Designer_Home\IDS10_1_2\BIN\exp.exe
D:\app\mwickham\product\11.1.0\db_1\BIN\exp.exe

Similar Messages

  • Import database using 10g imp utility - need your advice.

    I created export.dmp file on the database server that contains all schema objects (tables, indexes, views, etc.) and successfully moved it from the server to my laptop using telnet and ftp.
    Now I want to use this file to import ALL objects into my local database on the laptop where some objects that belong to the same schema already exist. I need to drops and recreate all objects in schema in my local database (tables, indexes, views, etc.) if they already exist before loading and add new objects to the schema if they do not exist in my local database.
    How will IMP statement that does all this look like?
    Thanks.

    Thanks!
    But could you be more specific about expdp and impdp statements that
    will give me what I need? And I need to drops and recreate all objects in schema in my local database (tables, indexes, views, etc.) if they already exist before loading and add new objects to the schema if they do not exist in my local database.

  • 10g Host command imp.exe not working

    Hi,
    Just created a relatively simple form that uses host command.
    I create a sql script using text_io to create a new user.
    I then use host to run that script on the app server.
    All this works fine.
    Then i use host command to try and import into the db. This is when it does nothing.
    I have cut it down to bear bones and a button with the command:
    host('D:\oracle\database\BIN\imp.exe LOG=D:\test.log');This doesnt even create the log "test.log"
    If i copy and paste this into the run box on the app server the log is created?
    Any ideas?
    Thanks

    hi
    first try to import by using dos go to start,run and cmd something like this.
    c:\Imp user/pass@orcl file=c:\file.dmp log=c:\log_name.log full=y
    What is import/export and why does one need it?
    Oracle's export (exp) and import (imp) utilities are used to perform logical database backup and recovery. When exporting, database objects are dumped to a binary file which can then be imported into another Oracle database.
    These utilities can be used to move data between different machines, databases or schema. However, as they use a proprietary binary file format, they can only be used between Oracle databases. One cannot export data and expect to import it into a non-Oracle database.
    Various parameters are available to control what objects are exported or imported. To get a list of available parameters, run the exp or imp utilities with the help=yes parameter.
    The export/import utilities are commonly used to perform the following tasks:
    Backup and recovery (small databases only, say < +50GB, if bigger, use RMAN instead)
    Move data between Oracle databases on different platforms (for example from Solaris to Windows)
    Reorganization of data/ eliminate database fragmentation (export, drop and re-import tables)
    Upgrade databases from extremely old versions of Oracle (when in-place upgrades are not supported by the Database Upgrade Assistant any more)
    Detect database corruption. Ensure that all the data can be read
    Transporting tablespaces between databases
    Etc.
    From Oracle 10g, users can choose between using the old imp/exp utilities, or the newly introduced Datapump utilities, called expdp and impdp. These new utilities introduce much needed performance improvements, network based exports and imports, etc.
    NOTE: It is generally advised not to use exports as the only means of backing-up a database. Physical backup methods (for example, when you use RMAN) are normally much quicker and supports point in time based recovery (apply archivelogs after recovering a database). Also, exp/imp is not practical for large database environments.
    [edit] How does one use the import/export utilities?
    Look for the "imp" and "exp" executables in your $ORACLE_HOME/bin directory. One can run them interactively, using command line parameters, or using parameter files. Look at the imp/exp parameters before starting. These parameters can be listed by executing the following commands: "exp help=yes" or "imp help=yes".
    The following examples demonstrate how the imp/exp utilities can be used:
    exp scott/tiger file=emp.dmp log=emp.log tables=emp rows=yes indexes=no
    exp scott/tiger file=emp.dmp tables=(emp,dept)
    imp scott/tiger file=emp.dmp full=yes
    imp scott/tiger file=emp.dmp fromuser=scott touser=scott tables=dept
    Using a parameter file:
    exp userid=scott/tiger@orcl parfile=export.txt
    ... where export.txt contains:
    BUFFER=10000000
    FILE=account.dmp
    FULL=n
    OWNER=scott
    GRANTS=y
    COMPRESS=y
    NOTE: If you do not like command line utilities, you can import and export data with the "Schema Manager" GUI that ships with Oracle Enterprise Manager (OEM).
    [edit] Can one export a subset of a table?
    From Oracle 8i one can use the QUERY= export parameter to selectively unload a subset of the data from a table. You may need to escape special chars on the command line, for example: query=\"where deptno=10\". Look at these examples:
    exp scott/tiger tables=emp query="where deptno=10"
    exp scott/tiger file=abc.dmp tables=abc query=\"where sex=\'f\'\" rows=yes--------------------------
    You can also use DBMS_DATAPUMP.
    For example, you can start the export job from a PL/SQL package with the following PL/SQL code:
    declare
        handle  number;
    begin
        handle := dbms_datapump.open('EXPORT','SCHEMA');
        dbms_datapump.add_file(handle,'SCOTT3.DMP','DUMPDIR');
        dbms_datapump.metadata_filter(handle,'SCHEMA_EXPR','= ''SCOTT''');
        dbms_datapump.set_parallel(handle,4);
        dbms_datapump.start_job(handle);
        dbms_datapump.detach(handle);
    end;
    / sarah

  • IMP.EXE has encountered a problem and needs to close

    Dear all,
    I have a dmp file which need to import into the oracle9i database. The dmp file size which is 1.6GB. Im using the imp cmd to run the import. When importing half way, i encountered an error which is IMP.EXE has encountered a problem and needs to close . Pls advice
    Thanks

    Dear Dean,
    Herewith the log file and print screen that the IMP.EXE hang issue occured while doing the imp.
    http://yfrog.com/bfimpexehangoj
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Export file created by EXPORT:V08.01.07 via conventional path
    Warning: the objects were exported by SYSTEM, not by you
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    export client uses US7ASCII character set (possible charset conversion)
    export server uses US7ASCII NCHAR character set (possible ncharset conversion)
    IMP-00046: using FILESIZE value from export file of 2097152000
    IMP-00015: following statement failed because the object already exists:
    "CREATE SEQUENCE "CNTRSTATUSUPDATETOCUST_SEQ" MINVALUE 1 MAXVALUE 99999999 I"
    "NCREMENT BY 1 START WITH 159 CACHE 20 NOORDER CYCLE"
    IMP-00015: following statement failed because the object already exists:
    "CREATE SEQUENCE "GENMESSAGINGERRORID_SEQ" MINVALUE 1 MAXVALUE 99999999 INCR"
    "EMENT BY 1 START WITH 22 CACHE 20 NOORDER CYCLE"
    IMP-00015: following statement failed because the object already exists:
    "CREATE SEQUENCE "S_AUDITTRAIL" MINVALUE 1 MAXVALUE 99999999 INCREMENT BY 1 "
    "START WITH 5238868 CACHE 20 NOORDER CYCLE"
    IMP-00015: following statement failed because the object already exists:
    Thanks,
    Rgs,
    Oraclebb

  • IMP.EXE not working in 11gR2 as it did in previous versions

    I am trying to restore a database which was backed up using EXP.EXE on Oracle 10g to a new Oracle 11gR2 instance.
    I was having trouble with the tablespaces at first and finally gave the user unlimited quota on the data and index tablespaces. The scripted commands used to create the user used to accomplish this, but apparently this doesn't work in 11gR2 and I had to do it one at a time through the database management web page.
    Once I got past this, I still had trouble because of a reporting user granted access to the original database did not exist in my new instance. This was never a problem in earlier versions and it used to restore the database and just allow those grants to fail. I created the reporting user in my new instance and now IMP.EXE just fails after restoring the sequences and one table (of many) with no errors output to the console.
    What needs to be done to get IMP.EXE to behave like it did in previous versions? Why is it failing after restoring the first table?
    If it makes a difference, the OS is Win7 x64.
    Rod

    Here is the output from the console. As you can see, I am using the log parameter, but the log file is empty. IMP.EXE is crashing and not writing anything to the log file. I have included the information from the application log as well. I couldn't find anything helpful there. EXPORTBKP is a user we create specifically for the backup on restore of databases through a canned script we created. I have included the statemements used to create that user after the application log entry. This user is created logged in as SYS as SYSDBA.
    Typical command used to create the backup:
    EXP.EXE EXPORTBKP/MARTIAL FILE=database.dmp LOG=temp.log COMPRESS=Y OWNER=SRC_DB CONSISTENT=N DIRECT=Y STATISTICS=NONE
    Command used to restore the database:
    IMP.EXE EXPORTBKP/MARTIAL COMMIT=Y BUFFER=100000 FILE=database.dmp LOG=temp.log
    FROMUSER=SRC_DB TOUSER=DEST_DB
    Output from IMP.EXE:
    Import: Release 11.2.0.1.0 - Production on Fri Nov 30 08:39:07 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit
    Production
    Export file created by EXPORT:V10.02.01 via conventional path
    Warning: the objects were exported by SRC_DB, not by you
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing SRC_DB's objects into DEST_DB
    . . importing table "ABC_ASSIGN_TYPE_MSTR" 2 rows imported
    From the Windows Application log:
    Faulting application name: imp.exe, version: 0.0.0.0, time stamp: 0x4bb1dfb4
    Faulting module name: imp.exe, version: 0.0.0.0, time stamp: 0x4bb1dfb4
    Exception code: 0xc0000005
    Fault offset: 0x00000000000326c6
    Faulting process id: 0xdc4
    Faulting application start time: 0x01cbeed7761e96de
    Faulting application path: C:\Oracle\product\11.2.0\dbhome_1\bin\imp.exe
    Faulting module path: C:\Oracle\product\11.2.0\dbhome_1\bin\imp.exe
    Report Id: b5d0d26a-5aca-11e0-a941-0050568d65a0
    Statements used to create the EXPORTBKP user:
    CREATE USER EXPORTBKP IDENTIFIED BY MARTIAL
    DEFAULT TABLESPACE MY_DATA TEMPORARY TABLESPACE TEMP;
    GRANT CREATE SESSION, EXP_FULL_DATABASE, IMP_FULL_DATABASE, DBA TO EXPORTBKP;
    GRANT CONNECT, RESOURCE TO EXPORTBKP WITH ADMIN OPTION;
    GRANT ALTER SESSION TO EXPORTBKP WITH ADMIN OPTION;
    GRANT SELECT ON "PUBLIC"."V$SESSION" TO EXPORTBKP WITH GRANT OPTION;
    GRANT SELECT ON "PUBLIC"."V$PARAMETER" TO EXPORTBKP WITH GRANT OPTION;
    GRANT EXECUTE ON dbms_alert TO EXPORTBKP WITH GRANT OPTION;
    GRANT EXECUTE ON dbms_pipe TO EXPORTBKP WITH GRANT OPTION;
    GRANT EXECUTE ON dbms_job TO EXPORTBKP WITH GRANT OPTION;
    GRANT CREATE TRIGGER TO EXPORTBKP WITH ADMIN OPTION;
    GRANT CREATE TABLE TO EXPORTBKP WITH ADMIN OPTION;
    GRANT DROP ANY TABLE TO EXPORTBKP WITH ADMIN OPTION;
    GRANT CREATE ANY INDEX TO EXPORTBKP WITH ADMIN OPTION;
    GRANT DROP ANY INDEX TO EXPORTBKP WITH ADMIN OPTION;
    GRANT CREATE LIBRARY TO EXPORTBKP WITH ADMIN OPTION;
    GRANT DROP ANY LIBRARY TO EXPORTBKP WITH ADMIN OPTION;
    Hopefully someone can see something that I am not and we can resolve this.
    Rod
    Edited by: rsherer on Dec 9, 2011 9:01 AM

  • 'Crw32.exe needs to close' error. Faulting Module Mod:pscript5.dll

    We are using Crystal Reports 9 and have been for quite some time now.  A couple of weeks ago we had two users complaining of the same issue.  Sometimes when they want to print to PDF, Crystal will start to print, but it will not load past page 1.  The error "crw32.exe needs to close" comes up with the faulting module Mod:pscript5.dll. After the program closes, the portion of the document that made it to the printer pops up in Adobe Acrobat. It's usually just the first few lines of the first page. This happens sometimes. Sometimes the document will print the whole way through, other times it won't. It does it on multiple documents as well. We first noticed it when printing larger documents(50pages or so), but it will also do it on a 1 or 2 page document. I've uninstalled and reinstalled Crystal and Adobe Acrobat with no success. I downloaded the service pack for Crystal, changed printer drivers, added Crystal Reports to the DEP exceptions list, and tried printing to Adobe Reader, but none of it worked. I've also monitored the memory while Crystal is running and trying to print the report, but there weren't any significant jumps in memory usage. I know that pscript.dll is a post script printing file, but I kind of think that it isn't a printing issue and it's throwing up the wrong error. It errors with more than one printer. And it will work some of the time. It seems to be hit and miss. Has anyone run into this issue or have any other suggestions?

    Good info, now we know for sure.
    CR 9 used one set of routines to format the reports, back then we were PRE-WYSIWYG, meaning we did not use Adobes formatting technique's when viewing and printing. In CR 10 and above we moved to their model which is why newly created Reports render and work properly.
    Only thing I can suggest is if you must use that printer driver to update your reports, Open each one, Verify database, set up page size to the PDF printer and then save as to a new location. YOu can try checking off the no Printer option and Dissociate... to see if that helps.
    So yes in one sense it is a CR issue but at the same time CR 9 worked fine with the current Printers and PDF viewers at the time.
    CR 9 has been out of support for years now and we do recommend that you update your reports each version, the further apart the version numbers of the RPT's are the more chance that some functionality may have issues when opened in a new version.
    No new patches are available so nothing we can do, possibly Adobe can make their Print Driver more backward compatible....
    Thanks
    Don

  • Please help me to create .exe file for my VI.. thanks in million

    Dear all,
    The software I have is LV6.1 full version, so I cant make .exe file.
    Can someone help me to crate .exe file for the attach library thanks.
    I need it for my presentation and the skol PC dont have LV.
    if the file is big, pls send to [email protected]
    thanks in million.
    maymaythar
    When you feel sad, laugh
    Attachments:
    voltage regulator analysis.llb ‏687 KB

    As has been mentioned, you need LabVIEW professional or higher. (If you only have base or full, you need to buy the application builder extra).
    Building an application is as easy as selecting "tools...built application or shared library", and specify the desired source VIs, built settings and installer settings.
    All diagrams and unneeded front panels are removed. The process is thus irreversible and you cannot recreate the original VIs from the application.
    LabVIEW Champion . Do more with less code and in less time .

  • Please Help!!  frmweb.exe is killing us...

    Production app is not working well please help!!
    frmweb.exe is hogging resources.
    after about 15 frmweb.exe processes the CPU is taxed at 100% and then
    the other frmweb.exe processes are waiting for for CPU resource to run.
    This all translates into unacceptable performance problems for the end users.
    Sometimes one frmweb.exe can be using as much as 70% of CPU.
    10G application server version: 10.1.2.3.0
    Windows server 2003 latest service pack
    4 processor machine
    4 gig of ram
    Any papers or suggestions on how to go about troubleshooting this
    would be a big help.
    Thanks,
    Whitney

    Below is a snippett from the webcache event_log file. Two questions:
    1) What do the errors mean that mention "HTTP request-header parsing error - no header name"? and any suggestions on fixing them.
    2) Also, why does it keep saying "Browser terminates connection; the request to the origin server is terminated".
    [10/Dec/2008:09:52:30 -0600] [error 12419] [ecid: 760202318288,0] Dump of offending HTTP request-header line: GET /
    [10/Dec/2008:09:52:31 -0600] [req-info] [ecid: 4213356035582,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:52:31 -0600] [warning 14015] [ecid: 4213356035582,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:52:34 -0600] [req-info] [ecid: 2649987942682,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/jacob.dll]
    [10/Dec/2008:09:52:34 -0600] [warning 14015] [ecid: 2649987942682,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:52:34 -0600] [req-info] [ecid: 9590655093078,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:52:34 -0600] [warning 14015] [ecid: 9590655093078,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:52:38 -0600] [req-info] [ecid: 1430217235324,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/jacob.dll]
    [10/Dec/2008:09:52:38 -0600] [warning 14015] [ecid: 1430217235324,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:52:38 -0600] [req-info] [ecid: 9779633658809,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:52:38 -0600] [warning 14015] [ecid: 9779633658809,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:52:45 -0600] [req-info] [ecid: 4213356039542,0] [client: 111.11.111.2] [host: -] [url: -]
    [10/Dec/2008:09:52:45 -0600] [error 12417] [ecid: 4213356039542,0] HTTP request-header parsing error - no header name. Client IP: 111.11.111.2
    [10/Dec/2008:09:52:45 -0600] [error 12419] [ecid: 4213356039542,0] Dump of offending HTTP request-header line: GET /
    [10/Dec/2008:09:53:00 -0600] [req-info] [ecid: 3131024296111,0] [client: 111.11.111.2] [host: -] [url: -]
    [10/Dec/2008:09:53:00 -0600] [error 12417] [ecid: 3131024296111,0] HTTP request-header parsing error - no header name. Client IP: 111.11.111.2
    [10/Dec/2008:09:53:00 -0600] [error 12419] [ecid: 3131024296111,0] Dump of offending HTTP request-header line: GET /
    [10/Dec/2008:09:53:02 -0600] [req-info] [ecid: 3508981431013,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:53:02 -0600] [warning 14015] [ecid: 3508981431013,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:53:03 -0600] [req-info] [ecid: 9968612245449,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:53:03 -0600] [warning 14015] [ecid: 9968612245449,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:53:15 -0600] [req-info] [ecid: 9985792115781,0] [client: 111.11.111.2] [host: -] [url: -]
    [10/Dec/2008:09:53:15 -0600] [error 12417] [ecid: 9985792115781,0] HTTP request-header parsing error - no header name. Client IP: 111.11.111.2
    [10/Dec/2008:09:53:15 -0600] [error 12419] [ecid: 9985792115781,0] Dump of offending HTTP request-header line: GET /
    [10/Dec/2008:09:53:17 -0600] [req-info] [ecid: 2856146417274,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:53:17 -0600] [warning 14015] [ecid: 2856146417274,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:53:24 -0600] [req-info] [ecid: 2461009433348,0] [client: 111.11.111.1] [host: myapp1.abc.def.ghi] [url: /forms/java/webutil/d2kwut60.dll]
    [10/Dec/2008:09:53:24 -0600] [warning 14015] [ecid: 2461009433348,0] Browser terminates connection; the request to the origin server is terminated.
    [10/Dec/2008:09:53:30 -0600] [req-info] [ecid: 9401676578886,0] [client: 111.11.111.2] [host: -] [url: -]
    [10/Dec/2008:09:53:30 -0600] [error 12417] [ecid: 9401676578886,0] HTTP request-header parsing error - no header name. Client IP: 111.11.111.2
    [10/Dec/2008:09:53:30 -0600] [error 12419] [ecid: 9401676578886,0] Dump of offending HTTP request-header line: GET /
    Below is from the Apache Error_log. Any suggestions on these errors would be appreciated. Thanks,
    [Wed Dec 10 09:36:34 2008] [error] [client 333.333.33.33] [ecid: 9659373586775,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracforms
    [Wed Dec 10 09:36:44 2008] [error] [client 333.333.33.33] [ecid: 8920639222423,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oraclforms
    [Wed Dec 10 09:36:45 2008] [error] [client 333.333.33.33] [ecid: 8920639222423,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oraclforms
    [Wed Dec 10 09:36:50 2008] [error] [client 333.333.33.33] [ecid: 8920639223279,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oraclforms
    [Wed Dec 10 09:36:55 2008] [error] [client 333.333.33.33] [ecid: 8920639228321,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oraclforms
    [Wed Dec 10 09:36:56 2008] [error] [client 333.333.33.33] [ecid: 8920639233518,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracleforms
    [Wed Dec 10 09:37:00 2008] [error] [client 333.333.33.33] [ecid: 8920639234800,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracleforms
    [Wed Dec 10 09:37:06 2008] [error] [client 333.333.33.33] [ecid: 10569906686277,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracleforms
    [Wed Dec 10 09:37:07 2008] [error] [client 333.333.33.33] [ecid: 10569906686337,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracleforms
    [Wed Dec 10 09:37:08 2008] [error] [client 333.333.33.33] [ecid: 10569906687819,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracleforms
    [Wed Dec 10 09:37:08 2008] [error] [client 333.333.33.33] [ecid: 10569906688507,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracleforms
    [Wed Dec 10 09:37:13 2008] [error] [client 333.333.33.33] [ecid: 10569906688950,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracle
    [Wed Dec 10 09:37:17 2008] [error] [client 333.333.33.33] [ecid: 10569906693978,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracle
    [Wed Dec 10 09:37:20 2008] [error] [client 333.333.33.33] [ecid: 10569906698103,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracle
    [Wed Dec 10 09:37:25 2008] [error] [client 333.333.33.33] [ecid: 10569906701023,1] File does not exist: c:/oracle/frhome_2/apache/apache/htdocs/oracle
    Thanks,
    Whitney

  • Help deploying .bat then .exe. then .msi

    I'm struggling with System Center, about ready to manually do this if no one can help...
    I need to 1st run a .bat file (that uninstalls previous versions of the software), then run an .exe that install .NET framework version 4.5, then finally run an .msi that installs the latest version of the software (Bluebeam Revu 12).
    I've tried starting with just the .bat as a deployment - made an .exe of the file - was able to deploy it to the computers but the .exe never ran.
    I've tried to put these into a .bat file, but it's not silent and requires users for prompts.
    Can anyone help me here?
    Tanya Onori

    I'd do it like this:
    Create an application out of the 1st application and the application that 1st application is uninstalling
    Configure 1st application to supersede the old version application
    Create an application of .NET (2nd)
    Create an application out of .MSI (3rd)
    Configure the .MSI application to be dependant of .NET and 1st application
    Deploy the .MSI application to collection of computers / users....
    What should be happening:
    .bat (1st) will be installed and if old version is found, it will be uninstalled first
    .NET (2nd) will be installed
    .MSI (3rd) will be installed

  • HT4910 i save my photos to camera roll. then back up but can't see it on icloud. why? we just lost 300 photos on my other iphone because we do not get proper help. that's why i need to learn now.

    i save my photos to camera roll. then back up but can't see it on icloud. why? we just lost 300 photos on my other iphone because we do not get proper help. that's why i need to learn now.

    You can't view your back up files at icloud.com.
    You can't view your camera roll and you can't view your Photo Stream files at icloud.com.
    The icloud back up plan allows you to "restore" your iOS device from the files you backed up at icloud.com.

  • My iphone is no longer working I have black screen with a picture of the itunes logo and a USB cable.  When I try to connect my iphone to itunes the device is not detected, can anyone help me? I desperatley need my phone back

    My iphone is no longer working I have black screen with a picture of the itunes logo and a USB cable.  When I try to connect my iphone to itunes the device is not detected, can anyone help me? I desperatley need my phone back

    I have had a 3GS for 2+ years.  After upgrading to IOS 4 (now 4.3.5) I began having problems.  In the past week, my screen went to the itunes logo and USB cable twice -- unprovoked -- just found it sitting there like that!  I connected to itunes and it did restore from a backup but it is a major inconvenience.  I am also searching for answers, but better back-up regularly!

  • Help... I need help to install a server for my form to run on web

    Hi there,
    I installed a New server with Windows 2003.
    I have some oracle forms developed using 6i, I don't mind to convert them later.
    What other oracle 10g software I need to install to have my oracle forms and reports to run on web?
    I tried to install in this sequence but not working:-
    1- windows 2003
    2- IIS
    3- Oracle Developer Suite
    Then I removed IIS and installed the Oracle SOA Application server also still cannot.
    What did I do wrong or what should I install (I meant by sequence?)
    Please advise.
    Thank you

    Why installing IIS o_O?
    For Installing a developer Machine just install Oracle Developer suite; for testing your forms you use OC4J ("start OC4J instance" in start menu), and you can run your forms in web; no need for a aditional webserver (don't believe there's an OC4J connector for IIS available; and if so I wouldn't use it either ;-))
    For Installing a server for "productional" use install Oracle Application Server (available on otn) which comes with an Apache as webserver and all the other needful things for runnung forms on the web.
    For configuring both of them just take a look at the documentations on http://otn.oracle.com
    regards
    christian

  • I have copied many photo's from another laptop to my Mac.  The older photo's are in directories with names that help me select what I need to view. I would like to have all my imported new photo's also bee added to the directory structure I have in Finder

    I have copied many photo's from another laptop to my Mac.  The older photo's are in directories with names that help me select what I need to view. I would like to have all my imported new photo's also bee added to the directory structure I have in Finder but my new photo's are all in iPhoto.  I want to use directories for storing and iPhoto for viewing.  Is this possible or do I need to have all my photo's in iPhoto??
    Mitch

    iPhoto is not a Photo Viewer. It's a Photo Manager and designed for looking after the files while you organise the Photos. It really works much better if you let it manage those files. If you use iPhoto you never go near those files because iPhoto is your start point for anything you want to do with your Photos - the point of the pplication.
    You can run iPhoto in Referenced mode, where it does not copy the files to the Library, but I caution you that you are making life a lot more difficult for yourself by doing that.
    How to, and some comments on why you shouldn't, are in this thread
    https://discussions.apple.com/thread/3062728?tstart=0
    Regards
    TD

  • Kernel panics, message saying "You need to restart your computer.Hold down the Power..." I am in the middle of HSC very URGENT please help!! Mac keeps needing to restart!!

    Kernel panics, message saying "You need to restart your computer.Hold down the Power..." I am in the middle of HSC very URGENT please help!! Mac keeps needing to restart!!
    I looked in console and its saying that it may be because of Sophos Anti-Virus, i deleted and uninstalled all traces of Sophos but looked in console and this is some of the lines coming up:
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.intercheck[6460]) posix_spawn("/Library/Sophos Anti-Virus/InterCheck.app/Contents/MacOS/InterCheck", ...): No such file or directory
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.autoupdate[6461]) posix_spawn("/Library/Sophos Anti-Virus/SophosAutoUpdate.app/Contents/MacOS/SophosAutoUpdate", ...): No such file or directory
    26/09/13 10:11:17.945 PM com.apple.launchd: (com.sophos.notification[6462]) posix_spawn("/Library/Sophos Anti-Virus/SophosAntiVirus.app/Contents/MacOS/SophosAntiVirus", ...): No such file or directory
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.intercheck[6460]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.intercheck) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.autoupdate[6461]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.autoupdate) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.notification[6462]) Exited with code: 1
    26/09/13 10:11:17.946 PM com.apple.launchd: (com.sophos.notification) Throttling respawn: Will start in 10 seconds
    26/09/13 10:11:18.291 PM Safari: self <TabContentView: 0x7f8d5dd1aa50>
    26/09/13 10:11:22.617 PM Safari: self <TabContentView: 0x7f8d5db7bb00>
    26/09/13 10:11:27.866 PM Safari: self <TabContentView: 0x7f8d5c331a70>
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver[6487]) posix_spawn("/Library/Sophos Anti-Virus/SophosUIServer.app/Contents/MacOS/SophosUIServer", ...): No such file or directory
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver[6487]) Exited with code: 1
    26/09/13 10:12:19.939 PM com.apple.launchd.peruser.501: (com.sophos.uiserver) Throttling respawn: Will start in 10 seconds"
    Looked all over computer and cant find anything of Sophos please help very urgent!

    That was all that there was in the most recent one, how long do you think it could take to fix?
    Here is the second most recent:
    Wed Sep 25 15:39:39 2013
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f81757965, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff81acc397fe, CR3: 0x000000001e2b5025, CR4: 0x00000000000606e0
    RAX: 0x000000001d31a000, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff80b0dbb710, RBP: 0xffffff80b0dbb820, RSI: 0x0000000000000000, RDI: 0x0000000000000001
    R8:  0x000000000000000a, R9:  0x0000000000000378, R10: 0x0000000000000128, R11: 0x0000000000000378
    R12: 0xffffff800c626400, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0xffffff81acc39802
    RFL: 0x0000000000010246, RIP: 0xffffff7f81757965, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffff81acc397fe, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80b0dbb3c0 : 0xffffff8000220792
    0xffffff80b0dbb440 : 0xffffff80002c4794
    0xffffff80b0dbb5f0 : 0xffffff80002da55d
    0xffffff80b0dbb610 : 0xffffff7f81757965
    0xffffff80b0dbb820 : 0xffffff7f817667a0
    0xffffff80b0dbb840 : 0xffffff7f8173a58e
    0xffffff80b0dbb870 : 0xffffff7f8177fb6f
    0xffffff80b0dbb8a0 : 0xffffff7f81779632
    0xffffff80b0dbb8d0 : 0xffffff7f8177d7d5
    0xffffff80b0dbb900 : 0xffffff7f8177c6db
    0xffffff80b0dbb9e0 : 0xffffff7f817412b8
    0xffffff80b0dbba10 : 0xffffff7f81778684
    0xffffff80b0dbba30 : 0xffffff7f817449ce
    0xffffff80b0dbbb60 : 0xffffff7f81741a4c
    0xffffff80b0dbbbc0 : 0xffffff8000655f3e
    0xffffff80b0dbbbe0 : 0xffffff800065681a
    0xffffff80b0dbbc40 : 0xffffff8000656fbb
    0xffffff80b0dbbd80 : 0xffffff80002a3f08
    0xffffff80b0dbbe80 : 0xffffff8000223096
    0xffffff80b0dbbeb0 : 0xffffff80002148a9
    0xffffff80b0dbbf10 : 0xffffff800021bbd8
    0xffffff80b0dbbf70 : 0xffffff80002aef10
    0xffffff80b0dbbfb0 : 0xffffff80002daec3
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelHD3000Graphics(7.3.2)[A2328231-E577-32FF-B20F-D08BDC FE9C51]@0xffffff7f81738000->0xffffff7f8179bfff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f80d2e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80cf5000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11G63b
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 1866666823698
    last loaded kext at 480357661446: com.apple.filesystems.smbfs          1.7.2 (addr 0xffffff7f80795000, size 241664)
    last unloaded kext at 303348424187: com.apple.driver.AppleUSBUHCI          5.1.0 (addr 0xffffff7f80af7000, size 65536)
    loaded kexts:
    com.sophos.kext.sav          8.0.14
    org.virtualbox.kext.VBoxNetAdp          4.2.16
    org.virtualbox.kext.VBoxNetFlt          4.2.16
    org.virtualbox.kext.VBoxUSB          4.2.16
    org.virtualbox.kext.VBoxDrv          4.2.16
    com.logmein.driver.LogMeInSoundDriver          1.0.2
    com.Greatdy.driver.SystemAudioCapture          1.0.0
    com.apple.filesystems.smbfs          1.7.2
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleMikeyDriver          2.2.5a5
    com.apple.driver.AGPM          100.12.75
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleIntelHD3000Graphics          7.3.2
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUSBTCButtons          227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AirPort.Brcm4331          561.7.22
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.iokit.AppleBCM5701Ethernet          3.2.4b8
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleIntelSNBGraphicsFB          7.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBMultitouch          230.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4

  • My iphoto wont open since i updated my mac, please help? it says i need to install an iphoto library upgrader which I have installed but still cant see my photos.

    my iphoto wont open since i updated my mac, please help? it says i need to install an iphoto library upgrader which I have installed but still cant see my photos.

    What version of iPhoto are you using? 9.6 is the current version.
    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.iPhoto.plist. Move the .plist to your desktop.
    Restart, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.
    Thanks to leonie for some information contained in this.

Maybe you are looking for

  • After downloading the facebook app I cannot log in

    I am  a new iPhone user and I am having trouble logging in to Facebook.  I have downloaded it but when I try to log in the wheel spins for hours and does not log into the account.  What am I doing wrong?

  • Can't I use nvraid without APIC on my MSI k8n neo2?

    I have a Windows XP installation without ACPI (Why would I want that?, you may ask.) The reason is that  it's a music production oriented installation, and I found that my soundcard performs much better with ACPI off. Well, I got 2 sata drives and se

  • Control array of callback functions?

    Apologies for my basic question. I am experimenting with control arrays and so far am able to collect data in string controls that are inside control arrays.  Works well.  Naturally, none of these controls need callback functions. Now I have need of

  • Alt key stuck

    I bought a new iMac about four days ago. Brought it home, set it up and it's working lovely. However very recently I find that whenever I begin typing in a browser or text edit that it comes up with symbols instead of the usual letters, as it would i

  • New Macbook Pro user with battery questions.

    I just recently picked up a Macbook Pro and have been reading up on how to take care of the battery. I pretty much know everything I need to know to prolong it's life, but there's one question I can't find the answer to: Once I plug it in to charge r