10g OEM dissapointment

I don't know bout anyone else but I am disappointed with 10g OEM. With 9i OEM it was a Java application that gave a handy tree structure that made it easy to zip through to get to appropriate areas of control etc.
Now with a web interface to OEM I have to laboriously drill down and make multiple selections to get to the areas of control that I want or need.
For example I had to drop a table from my schema. That is simple enough. I then had to purge it from the recycle bin. I was logged in as the schema owner and when trying to list the recycle bin contents it defaults to the sys schema. I have to specifically select the schema name to list the recycle bin contents. Shouldn't it just give me the listing of the current schema objects for the user and not sys?
Also OEM seems to hang or crash a little too often. It takes quite a while for the pages to recompile after OEM is restarted.
I hope Oracle are considering creating a Java applet of similar look feel and functionality to 9i OEM that uses a highly workable tree structure.

I've only been using it a couple of weeks, but I have to say I can't complain at the moment.
Of course, this is just a small server I'm using it with, but mostly things haven't been a problem.
To this point, the only issues I've had/seen are:
1) I'm running standard edition and there doesn't appear to be a way to change the datapump so that it doesn't try to do parallel. (At least not that I can see anyway) That leaves me with the command-line option.
2) I decided to test the database restore so I dropped all of my tables and set up a job to restore back to 12 noon. I sat and waited for a few minutes and figured the page must be hung so I hit stop and then hit the submit button again. Oops! Must be the job is actually running at that point. Though, unlike in other areas (such as the backup itself), it tells you what it's doing or is going to do. Now this actually crashed the restore which really made me need media recovery. :) Again, I set up a job which worked successfully this time, only it applied the logs up to the point just before it crashed instead of restoring up until noon. I'm not convinced I didn't miss a checkbox or something here however.
Chad

Similar Messages

  • How to Access Table Space Map in Oracle 10g OEM

    How and from where to Access Table Space Map in Oracle 10g OEM ??
    Thanks

    Hi,
    first of all, the online help system of grid control is outstanding. Just click on Help in the upper right corner and enter "Tablespace Extent Map" in the search form.
    Result:
    Show Tablespace Contents Page
    Each Oracle database is divided into one or more logical units called tablespaces. You can use Oracle Enterprise Manager to manage these tablespaces and create or modify the parameters for the tablespaces. Use the Tablespace property sheet to set general and storage information for the specified tablespace.
    Use the Show Tablespace Contents page to display the list of tablespace segments that comprise the existing tablespace. You can display Tablespace Extents by choosing Show Tablespace Extent Map at the bottom of the page. An extent is a logical unit of database storage space allocation made up of a number of contiguous data blocks. One or more extents in turn make up a segment. When the existing space in a segment is completely used, Oracle allocates a new extent for the segment.
    You can view segment extents by clicking on the link in the Extents column to display the Extents in Segments page.
    You can display the Show Tablespace Contents page by choosing Show Tablespace Contents from the command drop down list on the Tablespace property page, the Tablespace View page, or the Tablespace search results page.
    Note: Developers could only display the tablespace map to a maximum hard coded number of 30,000 extents. Tablespaces are often larger than that. If a tablespace is larger than 30,000 extents, the portion over that is displayed as Unmapped. To avoid exceeding the memory capacity of the tablespace map and to display the map without unmapped extents, use a search criteria displaying results of less than 30K extents.
    For an overview of tablespaces, see the "Overview of Tablespaces " chapter of the Oracle Database Concepts Guide.
    For more information about managing tablespaces, see the " Managing Tablespaces" chapter of the Oracle Database Administrators Guide.
    For more information about managing datafiles, see the " Managing Datafiles and Tempfiles" chapter of the Oracle Database Administrator's Guide.

  • How to access Data Guard option in Oracle 10g OEM

    Hi All,
    I have Oracle 10g ENTERPRISE EDITION on Unix envoirement. I want to setup logical standby Database through Data Guard technology. But when I brows through OEM I do not find Link for DATA GUARD????
    1) How to access Data Guard option from oracle 10g OEM.
    2) Does It come with Enterprise Edition OR I have to install it separately.
    Regards,
    Darshan

    I am managing almost everything through EM Grid Control. It is easy to setup and configure.
    Anyways, if you have read the documentation on
    Oracle® Data Guard Concepts and Administration and setup your environment accordingly then you should not have any problems. Atleast I can assure you that your production database will not be affected by it.
    Just make sure that you follow each step and read thoroughly. If you have spare machines then you can test and record your configuration before performing it on your production db. This link will provide you with the information on DataGuard.
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/concepts.htm
    If you think that way then you will never be able to do any new stuff since you will always fear that something might go wrong. Go ahead pal, try it on test machines and you will know that it is not that difficult.
    There are real experts who help people like us in this forum and I know that they are doing a pretty good job.
    All the best.
    Rgds
    Adnan

  • Wb_rt_api_exec problem  in 10G OEM

    I'm trying to schedule a process in 10G OEM built in OWB. All validation, generation, deployment is fine. I can't find the docs to guide me in this process. The docs deal with the oem_exec_template.sql - which says to use wb_rt_api_exec.run_task for 10G OEM. Any idea what to do for scheduling in 10G OEM??
    Based on examples in Metalink forum this is what I'm putting into the SQL script job in OEM. Errors included as well.
    declare
    ret number;
    begin
    ret:=runtime_owner.wb_rt_api_exec.run_task('RUNTIME', 'EASYDW', 'PROCESS', 'F4211LOAD','','',1);
    end;
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> SQL> SQL> SQL> Connected.
    SQL> SQL> 2 3 4 5 6 ret:=runtime_owner.wb_rt_api_exec.run_task('RUNTIME', 'EASYDW', 'PROCESS', 'F4211LOAD','','',1);
    ERROR at line 4:
    ORA-06550: line 4, column 6:
    PLS-00306: wrong number or types of arguments in call to 'RUN_TASK'
    ORA-06550: line 4, column 1:
    PL/SQL: Statement ignored
    declare
    ret number;
    begin
    ret:=runtime_owner.wb_rt_api_exec.run_task('RUNTIME', 'EASYDW', 'PROCESS', 'F4211LOAD','','');
    end;
    ERROR at line 1:
    ORA-20001: Task not found - Please check the Task Type, Name and Location are
    correct.
    ORA-06512: at "RUNTIME_OWNER.WB_RT_API_EXEC", line 620
    ORA-06512: at line 4

    Thanks guys. You were both right - wrong process name and too many parameters. And I realized I used the database locations value - not the Process flows locations.
    This worked =
    runtime_owner.wb_rt_api_exec.run_task('process flows locations', 'PROCESS', 'process name','','',1);
    declare
    ret number;
    begin
    ret:=runtime_owner.wb_rt_api_exec.run_task('DWDEST', 'PROCESS', 'PROC','','',1);
    end;
    /

  • Connecting 9i database from 10g OEM

    Does anyone know how you would connect to a 9i database from 10g OEM?

    If you want to manage a 9i environment just as if this was a 10g environment, it is not possible with the regular EM DB Control console. First of all this console is setup on a per oracle instance basis, so in the event you had a 10g Console configured this is exclusively to mange the database it is attached to.
    On the other hand, you can setup db 10g Grid control, this way, by properly installing and configuring a grid agent in the target node, you can monitor and manage the 10g database. You should keep in mind that even if the 9i database is visible from the 10g grid control console, it doesn't mean the 10g features will be availabe, such as ADDM or some other advisors. If you want to monitor performance you must configure the regular Statspack available in 9i.
    EM Grid Control can manage databases starting from 8.1.7.4.0
    ~ Madrid
    http://hrivera99.blogspot.com

  • What exactly to install? 10g OEM

    I want to install 10g OEM on a fresh Linux install. But I am not sure exactly what I need. I downloaded:
    Linux_Grid_Control_full_10_1_0_3_Disk1.cpio.gz
    Linux_Grid_Control_full_10_1_0_3_Disk2.cpio.gz
    Linux_Grid_Control_full_10_1_0_3_Disk3.cpio.gz
    and
    ship.db.lnx32.cpio.gz
    ship.ccd.lnx32.cpio.gz
    from otn. Do I need to install the Database and then the GridControl? Or will the Grid Control install a database as part of the install? Confused on what exactly is needed.
    Bob

    please ignore my previous mail
    i made a typo in my previous reply intead of 9205 it is 9015.
    yes bob Grid Control install a 9.0.1.5 database and it
    is a part of intallation choose option EM with new Database if you don't want 9015 db then you have to install Databse(eg 10103) and choose option EM with existing DB
    Regards
    Nazim

  • 10g OEM Alerts

    Hi,
    How Can i Find out the alerts which are already set in 10g OEM.
    Also please help me on how to add new alerts through OEM.
    Thanks,
    Chandra

    Hi again;
    Please also see:
    http://www.dba-oracle.com/oracle10g_tuning/t_oem_alerts.htm
    How to setup DISK SPACE alert on OEM 10g Grid Control...
    http://www.oracle.com/technetwork/oem/grid-control/bestpractices-notifications-130521.pdf
    http://www.informit.com/articles/article.aspx?p=409470
    Regard
    Helios

  • 9i, 10g oem

    hi,
    just one question: if i have 10g and 9i db, can i use 10g oem to manage the 9i db? (don't have 9i installed at the moment to try it)

    just one question: if i have 10g and 9i db, can i use 10g oem to manage the 9i db? (don't have 9i installed at the moment to try it)You can do it in couple of ways.
    1. Installed 10g grid control for database and a agent control on 9i database server.
    2. In Oracle 10g Rel.2, there is an OEM which is suitable for 10g and 9i.
    Jaffar

  • 10g OEM for 8i database

    Hi,
    I would like to monitor 8i database via 10g OEM, so can I monitor via 10g OEM.
    Thanks,Kannan.K

    Hi,
    You can refer to below metalink doc for the complete steps for configuring the EM DBcontrol for your standalone DB instance
    How To Drop, Create And Recreate the Database Control (DB Control) Release 10g and 11g (Doc ID 278100.1)
    Regards,
    Rahul

  • 10G OEM - Revoke privileges from PUBLIC

    How do I revoke execute on a procedure from PUBLIC using 10G OEM?
    I have spent quite a bit time wandering around the tool and can not figure out how to do it using the tool.
    Thanks in advance.
    Janet

    Hi
    Is he viewing the table all_objects/all_tables etc. If he views user_tables/user_objects he will see only the objects created by him.
    I doubt whether this will solve your problem.
    Thanks
    Malar

  • How to monitor various databases using 10g OEM

    I have Oracle 9i and Oracle 10g Databases. How can I configure Oracle 10g OEM to monitor all these databases. In Oracle 9i OEM it was easy. But I didn't find the method to add it in 10g OEM? Can we access the 10g OEM only through browser?
    Regards

    If you are installing Database and you choose to use Database Control, it is a different thing from Grid Control. Database Control comes with its one agent which is different from Grid Control's management agent.
    If you install a database on different host and you do not have Grid control, you can use the database control for that database for that host. If you have grid control, then you can install the Management Agent separately on that new host to manage the new database as a Grid Control target.

  • Download 10g OEM For Windows

    I need to test the 10g OEM with our existing 8i & 9i servers. Where do I download this? It isn't part of the enterprise installation disk. Is it on the client disk?

    http://otn.oracle.com/software/products/database/oracle10g/index.html

  • Can I ever use 10g oem-grid to deploy application?

    Hi mates,
    I have 10g OEM-GRID installed but no 10g-as installed...Is it possible to use the
    part appliaction server feature in oem (dcmctl et.c) to deploy an application?
    Is it something that can be done with 10g oem-grid?
    Regardsssssss
    shebby 9

    Hi Jarred,
    A way to create a "need recovery" situation.
    1. Take the tablespace offline.
    2. Copy the datafile (or one of the df's) to *.old.
    3. Put the TS online again. And for the fun create a table and insert some rows in it.
    4. Take the TS offline.
    5. Copy the *.old datafile to what it was
    6. Put the TS online again and bingo.
    I think the existing alert log check will raise an alert.
    Eric

  • I downloaded the 10g OEM for Solaris

    I downloaded the 10g OEM for Solaris and put the gz file on the server. When I did a gunzip to the file I got a cpio extension. What are the instructions to load the file onto the server?

    cpio -idmv < filename.cpio

  • Cloning 9i ORACLE HOME using 10g oem.

    Gang,
    Has anyone tried to copy 9i ORACLE_HOME using 10G OEM. Does it automatically make changes to the oraInventory for new ORACLE_HOME. Any help will be greatly appriciated.
    Thanks
    Parvesh

    Hi Per,
    I am facing the same problem. I've created a TAR in which I've asked for the source of ohsel.exe or a way to add an
    e.g. '-y'. We also saw that probably the Windows PATH environment is the only issue to solve.
    Did you already find a solution?
    Fred

Maybe you are looking for

  • Billing status in delivery not updated for free-of-charge flow

    Hi, I have a free-of-charge flow: sales order-delivery-invoice. The invoice has the net value 0 and do not goes in accounting. The problem is that the billing status in delivery is still "not invoiced" and because of this i can make more invoices for

  • Hyperlinks in pages for Ipad

    Does anyone out there know how to remove hyperlinks in pages for the ipad? I cant fins any kind of setting fo that.

  • I am so mad

    I am thoroughly frustrated.  I have been nothing but a good customer to Verizon and they are holding and cancelling all my orders.  I call the fraud department and they have no answers for me.  This is an awful way to do business verizon and I am mak

  • Unable to download any app's from store

     I recently bought the new nokia lumia 530 set. I downloded some apps from the store. All app's were working well for 2 days. But after 2 days the app tile was blank and i was unable open the app's . So i uninstalled all the apps.Among the downloded

  • Flash Player 12 install problems - Opera 12 & FF26

    Latest Flash Player (12.0.0.43), Win 8.1 x64 Pro - With Opera 12.16, the McAfee box wouldn't say unchecked. - With FF26, the install hung at second step. - With Opera webkit version (19 Next), the install process falsely says Google Chrome installed