Can't Backup using Enterprise Manager 10g

Help -
I am trying to use the backup option of Enterprise Manger 10g from the maintenance tab.
I select Schedule Customized Backup but keep getting a connection error:
Connection to host as user dbi/system failed: ERROR: Wrong password for user
I am using the same login (system) and password as when I login to Enterprise Manager.
What login do I need to use ? Or what could I be doing wrong?
Thanks - jcsjcs

I had the same problem.
The user you supply under "Host Credentials" must be a windows user(domain\username) which must be a member of the local group ora_dba and must have the Right "Logon as a batch job". Go to Administrative Tools, Local security settings" and add this right. It is the best to give it also local administrator rights.
Regards,
Ivan

Similar Messages

  • How to View Queries run by Users in Enterprise Manager 10g?

    I want to view all the queries as an Administrator, being run by all the Users on Oracle Database, where can I view in Enterprise Manager 10g ?
    In Microsoft Sql Server 2000, there is a utility called "Sql Profiler" which does this purpose, any idea please ?
    Best Regards,
    Luqman

    The "Performance" tab is part of the Tuning Pack, list price USD3000 per CPU or something to that effect. So I use good ole SQLPLUS and this sql(below). This sql includes global views for RAC which can just be changed to v$ for sinlge instance:
    column osuser format a10;
    set linesize 500;
    set pagesize 0;
    select sid, serial#, to_char(logon_time, ' YYYYMMDD, HH24:MI:SS'),
    osuser, sql_text
    from gv$session, gv$sqltext
    where gv$session.sql_address=gv$sqltext.address
    order by sid, piece;

  • Enterprise Manager 10g & trigger problem

    Hi.
    Trying to create a trigger using Enterprise manager 10g WEB Console and trigger creating "wizard" without success.
    Example: I've added a simple trigger using SQL+ (this works ockey):
    CREATE OR REPLACE TRIGGER "SRECKO".TESTNA_TRIG BEFORE
    INSERT ON "SRECKO"."TESTNA" REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW begin
    select testna_seq.nextval into :new.kljuc from dual;
    end;
    If I use Enterprise's Manager feature and I construct this trigger with (General/Event/Advanced) tabs it just doesn't work. I allways get the same SQL Error (missing IN or OUT parameters -> PreparedStatement bug ???).
    Has anybody had any similar experiences ?
    matev¾

    I am having the same problem. Unfortunately, it looks like no one else is or no one else has an answer. I will check back again later. Right now I am going to try and google and answer. Hope someone responds here.

  • Schedule Backup on Oracle Enterprise Manager 10g

    Hello All,
    I am using Oracle enterprise manager 10g for schedule backup, i enter the user and password of operating system (windows XP) in Host Credentials part, but it return this error:
    Connection to host as user khazaei failed: IOException in sending Request :: Connection refused: connect
    khazaei is my windows username ,
    any one can help me?
    thanks in advance,
    Hamzeh Khazaei

    You need to add khazaei to the Local Security Policy "Logon as Batch Job". if you have already done so and you have logged on to a Domain, then add the domain to the username. e.g domain_name\khazaei.
    BTW - you can get faster response to this issue in the EM forum
    Enterprise Manager

  • Using Weblogic as web server for Enterprise Manager 10g R3?

    hello,
    can i have your help on this?
    i want to use Weblogic as web server instead of apache in the structure of Enterprise Manager 10g R3?
    have any of you try this? can someone please provide me some link related to how to configure Weblogic as web server for Enterprise Manager.
    Many thanks in advance
    Cheers,
    Cosmin

    Im dont think its possible to do this with enterpise manager (Dbcosole), It might be possible with GRID .. have a look here
    http://www.oracle.com/technology/products/wag/index.html

  • Installing Enterprise Manager 10g Grid Control Using an Existing Database

    I want to install Enterprise Manager 10g Grid Control 10.2.0.3 using an existing database. This database is RAC 10.2.0.2. and I use it as Infrastructure Metadata Repository.
    I is said in Oracle documentation that SYSMAN schema has to be dropped, thus Database console repository has to be dropped. As far as I understand after Grid Control installation I will not be able to use Database console for my RAC 10.2.0.2 Infrastructure Metadata Repository database. I will be able to use only Grid Control for this database.
    Am I right? Could you give me any advice about Installing Enterprise Manager 10g Grid Control Using an Existing Database?
    Thank you.

    I am trying to install the OEM rel 2.0 on AIX 5L from the downloaded software zip files which are as below,
    AIX_Grid_Control_full_10201_disk1.zip (656,766,406 bytes) (cksum - 2157028496)
    AIX_Grid_Control_full_10201_disk2.zip (655,758,726 bytes) (cksum - 2350778444)
    AIX_Grid_Control_full_10201_disk3.zip (641,760,716 bytes) (cksum - 2053607771)
    AIX_Grid_Control_full_10201_disk4.zip (606,903,411 bytes) (cksum - 4162514797)
    AIX_Grid_Control_full_10201_disk5.zip (576,555,758 bytes) (cksum - 3304661461)
    AIX_Grid_Control_full_10201_disk6.zip (459,658,650 bytes) (cksum - 3120478203)
    AIX_Grid_Control_full_10201_disk7.zip (311,903,435 bytes) (cksum - 2438252536)
    AIX_Grid_Control_full_10201_disk8.zip (224,594,251 bytes) (cksum - 2618845234)
    I am unable to locate the runInstaller in any of the disks 1- 8 ,can somebody help me on this. Thanks

  • 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.

  • Error while creating data source using Oracle Enterprise Manager 10g

    Hi,
    I have deployed my web application developed on OC4J 9.0.4 stand alone (Win2K) to an integrated OC4J version(Solaris) using Oracle Enterprise Manager 10g.
    However, I get an error when I try to create a data source.
    The data source I want to create would have the following parameters (as seen in data-sources.xml on the stand alone version):
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/TestDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@hostName:1521:test"
              username="user"
              password="password"
              min-connections="5"
              max-connections="20"          
              inactivity-timeout="30"
         />
    When I entered the above data on the Enterprise Manager Data Sources page, I got the following error:
    quote:
    Error saving Data Source Properties. - Entity et="system";ei="0",et="application";ei="48",et="data-sources";ei="167":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: Please check the code base.
    unquote:
    Could somebody tell me what I'm doing wrong ?
    I tried to manually edit the data-sources.xml file but the data source didn't show up on the Enterprise Manager.
    I'm using a new OC4J instance (on the Solaris machine) for my applications. Is the data source error related to this?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

    Thanks for your reply , Steve.
    I noticed that there is a default datasouce on the EM with the following parameters:
    <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="->pwForScott"
              url="jdbc:oracle:thin:@localhost:1521:oracle"
              inactivity-timeout="30"
         />
    The location and xa-location attributes that I use for my "test" data source are the same as the default one. So, could this be the issue?
    What should be the values for location and xa-location attributes from my "test" data source?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

  • I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid

    I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid of this.

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • 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

  • Enterprise Manager 10g Java Console

    Hi ,
    I want to use EM 10g in order to set up the replication environment.
    In the Administration tab of the EM 10g there is a TIP at the bottom of the tab page ....
    TIP Use the Enterprise Manager 10g Java Console to manage Advanced Replication and Workspace.
    Which is the Enterprise Manager 10g Java Console and how can i call it.....??????
    NOTE: The database 10g v.2 is installed in Windows XP os.
    Thanks ,a lot
    Simon

    The EM 10g Java Console can be installed from the Oracle 10g Client CD and it is used the same way the 9i OEM. The difference is that EM 10g Java Console is only used in Stand-alone and does not include connection to a Management Server.
    It has limited functionality. There are a lot of features not available in it and is only available as a backup to some functionalities not yet in Grid Control and DB Control. (e.g, There is no Replication in 10.1 Grid Control, but it is in 10.1 Java Console). It will be phased out in future Releases (no idea which release yet).

  • Scheduled backups with Enterprise Manager

    Hi all,
    I have shceduled a full backup with Entreprise Manager 10g. Previusly I went to Backup settings and I have specified the path. The test executed sucssesfully.
    Then, once the backup was executed, it fails, but I can see any log from the Enterprise Manager on Backup Reports. Does somene know where I can find the backup logs?
    Thanks in advance!
    Víctor.

    When u r using oracle EM to schedule the backup it is actually using RMAN at the backend so you should provide the location of the backup log file aswell, only then it will generate the log file.
    The following are the command line RMAN parameters in which log is one of them,
    target
    catalog
    nocatalog
    cmdfile
    LOG
    trace
    append
    debug
    msgno
    send
    pipe
    timeout
    checksyntax

  • Reg:Enterprise Manager 10g

    hi all,
    when i login to Oracle Enterprise Manager 10g. using http://server name:port no/em.
    I got Home, Performance, Administration, Maintenance      these four options.
    In the Administration i am getting tip like this      TIP      Use the Enterprise Manager 10g Java Console to manage Streams, Advanced Replication, Advanced Queues, XML Database, Spatial and Workspace.. I want to do Oracle replication. is there any thing i need to install. where i can fount the setup. Please help.
    Thanks in advs

    Enterprise Manager 10g Java Console can be installed from the Oracle Client CD or Download. It is the (almost) equivalent of the 9i OEM in Stand-alone if you have used it before.

  • Import database using enterprise manager

    Hello,
    I am trying to import a database using enterprise manager. I've finished the installation of 10g and i need to import a database that is in a different server.
    The Oracle Enterprise Manager window, has a tab 'maintenance' that allows me to import from another database.
    The problem is that at some point the wizard ask's me for the user credentials (user and password), and i don't no who is the user, is it refering to the others server's credentials or is it referring to the database credentials?
    Can You help me, please?
    Is there some tutorial for this?
    Thank you,
    Sara.

    I don't know of a tutorial, sorry. This forum is about Globalization Support (e.g. national language support features) so it is really the wrong place for EM Grid/Database Control questions. I suggest your try here instead:
    Enterprise Manager

  • Problem using Enterprise Manager 11g Database Control in Firefox 3.6.6

    Hello all,
    I just intalled Oracle 11g and trying to familiarize myself with Enterprise Manager 11g Dataabse Control using Firefox 3.6.6 in Windows XP.
    I'm able to login to Enterprise manager successfully.
    However, when I click on on "Performance Tab", the "SYSTEM_MOVING_WINDOW" is empty, and there's a prompt "Click Here to Download Plugin."
    When I do click on it, I get message:
    No suitable plugins were found.
    Unknown plugin (application/octet-stream) [Manual Install].
    I'm not sure what plugin I need so I can use Enterprise Manager properly.
    Please help!
    Thanks
    Giovanni

    I use the Opera browser so I can split the screen to monitor multiple instances at the same time on my 2nd monitor. I am not having issues with the 10g OEM but having the same problem listed in this thread with the 11g OEM ( we have both running during our migration to 11g). The posts here didn't help me with the 11g OEM as there must be some difference from 10g OEM. I will hate it if I can't do the split screen to monitor multiple instances at the same time. And if you are connecting via solaris or lunix browser then IE is not an option ( W3C standards please ).

Maybe you are looking for