Can't run import through enterprise manager

11gR2 in Windows XP32:
Trying to import a DMP file from another 11gR2 DB. I'm getting an error that the username/password for the host credentials are wrong. They are not, I know what the passwords and usernames are for the machine. Any ideas?

This error message is often misleading, ensure you have granted the 'Log on as batch job' privilege:
http://download.oracle.com/docs/cd/E11882_01/install.112/e10843/postcfg.htm#BABFAEIG
This privilege is required for many tasks in Database Control.
Werner

Similar Messages

  • How to run oracle 10g enterprise manager

    hi
    how can i run oracle 10g enterprise manager?
    thanks

    set oracle_sid
    then run the following
    EMCTL START DBCONSOLE
    emctl status dbconsole---This is to check status
    emctl stop dbconsole---This is to stop dbconsole
    If you are using windows system then you can start enterprise manager through dbconsole service in controlpanel-administrator tools-services

  • Running an Oracle Enterprise Manager job in Oracle SQL Developer

    Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
    Is it possible to run an Oracle Enterprise Manager job in Oracle SQL Developer? I have looked through the Oracle help documents for 9i and it does not seem to cover this topic.

    1007692 wrote:
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
    Is it possible to run an Oracle Enterprise Manager job in Oracle SQL Developer? I have looked through the Oracle help documents for 9i and it does not seem to cover this topic.DBA_JOBS resides in the database; not in any particular client.

  • How to connect 10g database through Enterprise manager???

    Hi All,
    I want to connect the database through Enterprise manager.
    My database is on 10g. Version is 10.1
    Please tell me the procedure to connect the database through E.M.
    Thanks and Regards,
    Prathamesh.

    Are you thinking of the Enterprise Manager supplied with Oracle9i? If yes - it doesn't work quite that way ... and the 9i java OEM is not compatible.
    Use the enterprise manager supplied with the 10g database, called the dbconsole (look for a service or start it using 'emctl start dbconsole') and access it using http://{localhost}:5500/em
    If that doesn't satisfy you, load the updated version of the OEM 9i java standalone from the 10g client disk.

  • How can i run word through windows on my mac

    how can i run word through windows on my mac

    It is difficult to understand your question. Do you want to run Word in Windows on your Mac, or do you want to run Word on your Mac?
    You can install Office for Mac.
    http://www.microsoft.com/mac/products
    Or you can install Windows and then install Office for Windows in your Windows installation.

  • Ho can run oracle and enterprise manager in multiple users in Solaris10

    Hi,
    I have successfully installed Oracle 10g Release2 on Oracle Solaris 10 through Oracle user. But now my requirement is to use oracle as well as enterprise manager through multiple users other than oracle. So please instruct me what i have to do for this?
    One thing more can i use enterprise manager in Solaris which installed on another windows, if then then How?
    Thanks in advance.
    Regards,
    Rizi

    Hi Rizi,
    I have successfully installed Oracle 10g Release2 on Oracle Solaris 10 through Oracle user. But now my requirement is to use oracle as well as enterprise manager through multiple users other than oracle. So please instruct me what i have to do for this? Yes, it possible just create another OS user and Install it in a seperate $ORACLE_HOME.
    One thing more can i use enterprise manager in Solaris which installed on another windows, if then then How?May i know which version of enterprise Manager you are using, I assume you are considering about Grid Control Software.
    thanks,
    X A H E E R

  • Can't do anything from Enterprise Manager

    I am trying to undeploy an application from Enterprise Manager Web Site, and I get the following error:
    An error occured while undeploying the application. The configuration files for this Oracle9iAS instance are inconsistent with the configuration stored in the repository. In order to protect the repository, no further configuration or deployment operations are allowed until the problem with the configuration on the filesystem is resolved. This condition arises when a prior operation was unsuccessful. Please check the logs located at ORACLE_HOME/dcm/logs to determine why DCM was unsuccessful in updating the configuration files on disk. Some possible causes are: * permissions on files * file contention issues on Windows NT * EMD and dcmctl running concurrently * internal Oracle error After resolving the problem that prevented DCM from updating the configuration files, you may use the dcmctl resyncInstance command to resolve the problem. Alternatively, you can stop and then restart the active dcmctl or EMD process and resyncInstance will automatically be performed.
    It won't let me do anything. I tried dcm, too. It happens too often to me that I cannot deploy or undeploy apps from EM, or even to alter simple properties. Is there a way to recover from this situation?
    I have checked the errors at $ORACLE_HOME/dcm/logs but I can't get any ideas from there.
    Help me

    check out the Application Server - General forum. this has been discussed quite many times. Specifically,
    9iAS instance out  of sync with Repository
    -Prasad

  • Can not stop cleanly Oracle Enterprise Manager 10g

    Hi,
    i can not stop cleanly the OEM (Oracle 10.2.0.1.0) on my Debian 3.1.
    saturn:~# su - oracle -c "/u01/app/oracle/product/10.2.0/db_1/bin/emctl stop dbconsole"
    TZ set to Europe/Berlin
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://saturn:1158/em/console/aboutApplication
    Stopping Oracle Enterprise Manager 10g Database Control ...
    --- Failed to shutdown DBConsole Gracefully ---
    failed.
    When i look into the processlist i see the running agent :-(
    oracle 25434 0.0 0.3 70188 14296 ? S Nov29 0:31 /u01/app/oracle/product/10.2.0/db_1/bin/emagent
    Any ideas to stop the OEM-Agent Console cleanly, without hard kill the process?
    Thanks!
    Blue

    I have read there is a bug in EM-Konsole, i help me with the kill commands:
    killall emagent
    killall perl
    killall java
    Sorry, thats not a fine solution, but it works.
    Blue

  • Cannot send email using PL/SQL through Enterprise Manager 10g

    Hi
    I need to schedule a job that sends email periodically. I am using the scheduler in Oracle Enterprise Manager 10g for this. For sending the email, I am creating a PL/SQL job. The code is as follows:
    PROCEDURE send_test_message
    IS
    mailhost := 'iwblrcormsg001.sci.local';
    sender := '[email protected]';
    recipient := '[email protected]';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, 'This is a test message.' || chr(13));
    utl_smtp.write_data(mail_conn, 'This is line 2.' || chr(13));
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    END;
    I have setup the smtp server and received a test email from the EM notifying me of successful configuration. When the above job is run, the scheduler shows status as successful. If I go to the command step, it displays the following output:
    Output Log
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Feb 19 19:04:29 2009
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> SQL> SQL> SQL> Connected.
    SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 Disconnected from Personal Oracle Database 10g Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Now, the only issue is that I do not receive any email at the address specified! I would be very grateful if someone could point out the error here.

    I would use APEX4.0 for this.
    Create an interactive report based on your data. Add a chart to that report and use the NOTIFY feature to send you the email.

  • Can I run the admin and managed servers as different users?

    in unix, is it possible to run my admin and manged servers as different users with
    7.1?

    As long as users are in admin group, there could be different users starting different
    servers.
    "Frank" <[email protected]> wrote:
    >
    "Erik Johnson" <[email protected]> wrote:
    Hi, Frank.
    Could you be a little more specific about what it is you want to do?
    Thanks.
    erikUh, I'm on unix, I have Weblogic 7.0 service pack4. I have 1 managed
    server and
    I have one admin server...Can I run the admin server as user 'hithere'
    and run
    the managed server as user, 'byethere'......
    "Frank" <[email protected]> wrote:
    in unix, is it possible to run my admin and manged servers as different
    users with
    7.1?

  • Why I can't connect to Oracle Enterprise Manager via browser after install?

    I've installed Oracle9iAS Release2(9.0.2) with Windows 2000 server (servicepack3) and Oracle9i database on the same host.After installation, I can use Oracle enterprise manager(via browser) by connect as "ias_admin" and "12345" for password (It's a password that I input at installing). But 2 days later, I cannot connect it!, what's happen to my 9iAS. I try to change my password in command line by "emctl set password <old_pwd> <new_pwd>, But I've got a message that is incorrect password. By the way, I use command line to start OC4J and HTTP Server instead. Please help me for this problem. Thank you very much.
    Ps. I've got this problem for 2 time, but the first time I delete all of oracle products and install it again .

    If you have installed the Oracle AS 10.1.3 using an Apache in front the default port is 7777 as far as I know.
    You wrote that the main page is accessible, that's why I would suspect that you might have a problem with your hostname. Are you accessing the mainpage via the full qualified hostname or via ip?
    Please ensure that you can reach the server using the full qualified hostname!
    If you are not sure about it, add an entry to your local hosts-file.
    Please tell us if this was your problem!
    Regards,
    Eric

  • Removing an XML Schema through Enterprise Manager

    Hi all,
    I have created an XML schema using the Enterprise Manager. But the problem is that I can't remove it. When I use the menu option to remove the XML Schema, I get the following error:
    VBO-8051: XML Schema cannot be dropped.
    ORA-31000:Resource [User].[SchemaName] is not an XDB document
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 0
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 80
    ORA-06512: at line 1
    If anyone has any thoughts they would be greatly appreciated.
    Thank you,
    Mike

    What was the URL used to register the schema. Is this the same URL that was passed to delete schema. You can check the list of registered schemas with the following query
    SQL> desc user_xml_schemas
    Name Null? Type
    SCHEMA_URL VARCHAR2(700)
    LOCAL VARCHAR2(3)
    SCHEMA SYS.XMLTYPE(XMLSchema "http:
    //xmlns.oracle.com/xdb/XDBSc
    hema.xsd" Element "schema")
    INT_OBJNAME VARCHAR2(4000)
    QUAL_SCHEMA_URL VARCHAR2(2839)
    SQL> select schema_url from user_xml_schemas
    2 /
    SCHEMA_URL
    http://localhost:8080/home/SCOTT/xsd/purchaseOrder.xsd

  • I can't access to my Enterprise Manager

    I'd already installed 10g(10.2.0.1.0) for Microsoft Windows and when I finish my first installation I login into the Enterprise manager, I did some things and after I logout y close the app. A couple of hours later I'd try to enter with the http address and I can't because the IE can't locate the address, I'm trying to load the EM in the same machine that has the Oracle server. I try to install again and the EM still no working for me. I have the 10g Express already installed but I really need the 10g Release 2 for Windows. Is there a problem if I have the two versions installed on my PC????

    As previously stated by Hans, most probably it has to do with problems with dynamic IP assignment. This issue has been addressed several times in this forum, I suggest you to configure the loopback adapter and once done, reconfigure your Enterprise Manager
    Loopback Adapter
    http://download-west.oracle.com/docs/cd/B19306_01/install.102/b14316/reqs.htm#BABGCEAI
    http://download-east.oracle.com/docs/cd/B19306_01/install.102/b14316/reqs.htm#BABGHEFB
    Installing on DHCP environments
    http://download-east.oracle.com/docs/cd/B19306_01/install.102/b14316/reqs.htm#BABBDGBI
    Reconfigure Enterprise Manager
    set oracle_sid=YourInstanceName
    emctl stop dbconsole
    emca -deconfig dbcontrol db
    emca -repos recreate
    emca -config dbcontrol db
    ~ Madrid

  • Apply CPU /PSU patches through Enterprise Manager Grid Control.

    How to apply PSU patches from 10.2.0.5 GRID Grid Control to my test/development/qa environment.
    Are there any step by step documents availible. Did any one applied these patches using Oracle Enterprise Manager Grid control.

    Please read
    Oracle® Enterprise Manager Administrator's Guide for Software and Server Provisioning and Patching
    10g Release 5 (10.2.0.5.0)
    3 Infrastructure Requirements
    http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e14500/infrastructure_setup.htm#BABEIFBC
    For the correct setup to do you patching.
    Regards
    Rob
    http://oemgc.wordpress.com

  • PDF - Importing through Data Manager  -

    I am performing following steps. In the data manager, I am trying to import the PDF file. Then link it to the Main Table.
    While importing I am using "Link to Orginal File Only"
    PDF file is present in the share folder and the path of share folder does not have spaces. I get the following error message
    "There was an error opening this document. This file cannot be found".
    Actually file is available as well as path is correct and also acees to the sahre folder.
    I tried same thing through local drive from my desktop. I encounter the same message.
    When, I go and see PDFs table in the repository, I can see a record inserted with the correct path. I am not able top open up the PDF using Object --> View PDF.
    I am using MDM 7.1 SP 05.
    Please share your experience.

    Please let me know what version of MDM you are using... Can you give a try by uploading pdf from your local system.. This will make sure that there has nothing to do with the shared drive..
    Please revert with the results.
    Best Regards,
    Shiv
    Please also check this document, just to make sure you are not missing any step.
    [How to Import Pdf Document in MDM|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c01f54a2-99f1-2a10-5aa5-dcc50870e7f6]
    Best Regards,
    Shiv

Maybe you are looking for

  • Payment Terms not getting updated for local Purch Org Vendor Combination

    Hi I have updated the vendor master with new payment term in EBP. The same got updated for Back End Pucrh Org. But it is not getting updated for local Purch Org. I am using extended classic scenario and have BE and local Purch Org. I anybody can tell

  • ADF UIX cancel/rollback button?

    Hi We're having a fair amount of trouble implementing a "cancel" button in our ADF UIX application (JDev 10.1.2). Apologies to those who read this same post on the ODTUG mailing list..... I'm hunting for even a hint of an answer before I approach Ora

  • Duplicate Post, Sorry!

    Dupe, admin please delete.

  • 10.4.6 update actually CAUSES my MBP to have the airport issue!

    My MBP didn't have any issues with automatically connecting to preferred networks... After doing the 10.4.6 update, it now won't automatically join airport networks! Anyone else have this backwards behavior?

  • Execute mapping on condition (suggestions plz)

    Hi, I'am loading huge flat files in a warehouse and I need to make sure no file is loaded twice. I guess there are a few possibilities, but feedback is always pleasant. Is it possible to use a pre-mapping operator here? ( ie. user a procedure to chec