Edit data using OEM grid

Hi Friends,
I want to edit tale data using the grid (view-edit contents) of tables of OEM 10g(cleant console) but the update/edit button is disabled. How do I enable it please.
You know its very handy for dba/apps dev to use this feature (like toad).
Unlike sqlplus command which is very hard to use in updating data on tables.
Thanks a lot

Toad of course supports 10g.
But I would contest DBAs should do 'data fixing' on the fly, especially if business rules weren't implemented in the database.
Such unprofessional way of working can easily ruin the database.
Would you like to set your job at stake because of 'data fixing'?
Sybrand Bakker
Senior Oracle DBA

Similar Messages

  • How to use OEM grid control to find any database not in archivelog mode?

    Hello,
    currently we have 130 databases, say, if I want to pick out any database currently NOT in archivelog mode, is there a quick way to find out ?
    by using OEM grid control
    or
    some trick similar,
    but really don't need to check each database manually.
    thank you very much!

    This query works in 12c - please run as SYSMAN.
    It is based on undocumented assumptions though +( AND key_value = 'NOARCHIVELOG')+.
      SELECT *
      FROM SYSMAN.MGMT$GROUP_DERIVED_MEMBERSHIPS O ,
        SYSMAN.MGMT$TARGET T ,
        sysman.MGMT$AVAILABILITY_CURRENT st
      WHERE
      o.member_target_type     IN ('oracle_database', 'rac_database')
      AND ( t.target_type           ='rac_database'
      OR (t.target_type             ='oracle_database'
      AND t.type_qualifier3        != 'RACINST'))
      AND o. member_target_guid     = t.target_guid
      AND t.target_guid             = st.target_guid
      AND st.availability_status    = 'Target Up'
      AND ( EXISTS
        (SELECT *
        FROM sysman.mgmt$metric_current i
        WHERE I.TARGET_GUID = O.MEMBER_TARGET_GUID
        AND metric_name     = 'archFull'
        AND Metric_Column   = 'archTotal'
        AND metric_label    = 'Archive Area'
        AND column_label    = 'Total Archive Area (KB)'
        AND key_value       = 'NOARCHIVELOG'
        ));Another way to achieve the goal is to push extended metrics (SELECT LOG_MODE FROM V$DATABASE) on each DB, and monitor the values they return to the repository. This is an example for a (slightly) different problem - http://iiotzov.wordpress.com/2012/08/08/how-to-use-the-new-oem-12c-metric-extensions-to-enforce-enterprise-wide-custom-policies .
    OEM Repository has many other great uses as well - http://iiotzov.files.wordpress.com/2012/05/oem-repository-a-second-look.doc , http://iiotzov.files.wordpress.com/2011/08/iotzov_oem_repository.pdf
    Iordan Iotzov
    http://iiotzov.wordpress.com/

  • What is the view to get the database type using oem grid

    Currently i have oem grid 11g , and i want to query a view where i can get the database type like (standalone, cluster database type).
    In OEM we have search option as database/cluster/clusterdatabase.....so for this type i want to check in database level in repository.Please provide me the view with in the grid repository.

    Some handy views can be found here:
    http://docs.oracle.com/cd/E11857_01/em.111/e12135/views.htm#BACCFCAB
    SQL> select target_type, count(*) from MGMT$TARGET group by target_type;
    TARGET_TYPE                      COUNT(*)
    osm_cluster                             3
    oracle_listener                        36
    oracle_exa_cisco_switch                 2
    oracle_exa_kvm                          2
    oracle_home                            68
    has                                    12
    rac_database                            3
    weblogic_j2eeserver                     2
    oracle_apache                           1
    oracle_ias_farm                         1
    oracle_exa_pdu                          2
    oracle_oms                              1
    cluster                                 3
    oracle_exadata_grid                     3
    oracle_exa_ilom                        12
    oracle_exadata_dbsys                    3
    oracle_oms_console                      1
    j2ee_application                        3
    metadata_repository                     2
    oracle_apm                              1
    oracle_exadata                         21
    oracle_ibswitch                         5
    oracle_dbmachine                        3
    oracle_ibnetwork                        2
    oracle_beacon                           1
    oracle_oms_pbs                          1
    oracle_em_service                       2
    oracle_dbsys                           18
    oracle_emd                             25
    osm_instance                           12
    oracle_database                        27
    host                                   25
    weblogic_domain                         1
    oracle_emrep                            1
    34 rows selected.Good luck.

  • Get edited data ou of grid back into internal tabel

    Hi dear all,
    after the help of so brilliant tutors i now can edit my ALV Grid, but I dont't know how i can get the content of the edited rows back into the internal table (it_outtab). I studied several methods, but for example the method SAVE_DATA is private, so I can't use it out of my program.
    Many  many thanks in advance for th friendly colleague who knows the answer.
    Dorothea.

    Hello Dorothea
    If you just want that your itab contents reflects the data on the editable ALV grid then the simplest solution is to call the appropriate method at PAI:
    " Your dynpro flow logic may look like this:
    PROCESS BEFORE OUTPUT.
      MODULE STATUS_0100.
    PROCESS AFTER INPUT.
      MODULE USER_COMMAND_0100.
    *& Module USER_COMMAND_0100 INPUT
    * text
    MODULE user_command_0100 INPUT.
      CALL METHOD go_grid->check_changed_data( ).  " retrieves changes from editable ALV grid
                                                                                " and updates itab, e.g. gt_outtab
    " NOTE: If you do not need to validate the changed data there is no need
    "            to define an event handler method.
    CASE gd_okcode.
    WHEN 'BACK' OR
    'END' OR
    'CANC'.
    SET SCREEN 0. LEAVE SCREEN.
    WHEN OTHERS.
    ENDCASE.
    CLEAR: gd_okcode.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    You may want to have a look at ALV GRID Problem with reading contents and my dicussion with David Halitsky in Where/how would you add the actual DB update to BCALV_EDIT_03?.
    Regards
      Uwe

  • How to edit data using a LOV list AND textfield for one Field

    I am trying to edit the templated edit from HTMLDB template when I create a new table. I implemented most of the fields with LOV list like yes/no, joe/bob/john etc. But some fields as many probably have seen have a LOV called "Other" where a person types a different value than the ones available. Can someone tell me how I can accomplish that? Do I need to insert "Other" into LOV and have it be set as the value in the textfield? I am not sure how i can create both LOV list and textfield per category/field i.e. Name.
    Thanks

    Again, I urge you to use HTML DB nomenclature to describe what you've done. For example: "I ran the Form on a Table wizard to create a form" Rather than using the word "template" for everything you describe. "Template" has a specific meaning in HTML DB and it is not what you are referring to.
    You really should invest the time required to accurately phrase your problem. Just like answering questions on this forum requires time, so does formulating your question. It is time well spent and it is effort on your part that the experts on this forum deserve. If you don't put in this effort and instead just post a stream of consciousness, that means the readers of this forum will gloss over your question and ignore it. As a result, you have to ask the question again...and again.
    Having said that, if I understand your question correctly, you should use a popup LOV item. This will allow the user to select from a list but will also allow typing of a non existent option into a text field.
    Sergio

  • Performance Report using OEM-11g

    Hi All,
    Is there any way to get the Monthly Database performance report using OEM Grid Control... I am able to grab only one week data in Historical option....
    Thanks In advance

    I have the same problem in OEM 11g, the calendar on the Performance tab - Historical selection - only shows "January 0" and can not be changed...a bug?
    Oracle 11.2.0.2.0 database on AIX.
    Using OEM Cloud 12c on some test instances again 11.2 on AIX and it works fine there.
    Any updates?

  • Issue with OEM grid control.

    I created a stream replication for scott schema on 10gR2 using maintain_tables.
    Everything is working fine and for initail two days there was no issue when i checked the diffrent processes using OEM grid control. After two days, OEM is not showing anything under the "propagation" process and instead showing "no data found". I checked the dba_propagation and there is a propagation process in that. Even the replication is working fine. So is that an issue/Bug in OEM? Any cure for this?
    Kapil

    I created a stream replication for scott schema on 10gR2 using maintain_tables.
    Everything is working fine and for initail two days there was no issue when i checked the diffrent processes using OEM grid control. After two days, OEM is not showing anything under the "propagation" process and instead showing "no data found". I checked the dba_propagation and there is a propagation process in that. Even the replication is working fine. So is that an issue/Bug in OEM? Any cure for this?
    Kapil

  • Deploying oem grid control to e bussiness suites

    We have installation of EBS R12, the AMP pack for EBS system is installed on the and already running. Now we want to use oem grid control to manage the EBS suites.
    We have installed the eom 11G grid control and installed the application management pack patche (p8333939). How do we now deploy the enterprise manager grid control to EBS.
    The documentation says agent needs to installed on the database tier and application tier and then discovered by the oem
    Any idea on how to install the agent on the tier?

    The platform is solaris 10. I have deploying to the database tier and the following errors is received
    The question is there a special procedure to do this?
    INFO: AgentPrereq:About to execute plug-in runRemoteCmd
    INFO: AgentPrereq:The plug-in runRemoteCmd is running
    INFO: AgentPrereq:Internal PlugIn Class: oracle.sysman.prov.deployment.plugins.plugins.RemoteCommandPlugin
    INFO: AgentPrereq:Classpath =
    SEVERE: AgentPrereq:oracle.sysman.prov.remoteinterfaces.exception.ClusterException: Error while running cmd /d01/oracle/agent/ADATMP_2011-
    08-10_13-36-08-PM/ouiSetup -e -b /d01/oracle/agent -s /d01/oracle/agent/ADATMP_2011-08-10_13-36-08-PM/oui -p oui -u ADATMP_2011-08-10_13-3
    6-08-PM/unzip -P solaris, on nodes 172.24.xxx.xxx.
    SEVERE: AgentPrereq:Error ID : PROV-16011
    SEVERE: AgentPrereq:Exception Stacktrace = oracle.sysman.prov.remoteinterfaces.exception.ClusterException: Error while running cmd /d01/or
    acle/agent/ADATMP_2011-08-10_13-36-08-PM/ouiSetup -e -b /d01/oracle/agent -s /d01/oracle/agent/ADATMP_2011-08-10_13-36-08-PM/oui -p oui -u
    ADATMP_2011-08-10_13-36-08-PM/unzip -P solaris, on nodes 172.24.xxx.xxx
    at oracle.sysman.prov.remoteinterfaces.nativesystem.NativeSystem.runCmdOnNodes(NativeSystem.java:1244)
    at oracle.sysman.prov.remoteinterfaces.clusterops.ClusterBaseOps.runCmdOnNodes(ClusterBaseOps.java:279)

  • Trying to register 10.2.0.3 db in Rec Catalog using OEM, getting errors

    Hi all,
    I didn't know whether to post this here in the RMAN forum or in the OEM Grid Control forum, but the issue is more related to RMAN, so I'll post it here, and hope someone can help me out!
    I have a new 10.2.0.3 database that I am getting configured to manage using OEM Grid Control. Through the OEM interface, I am trying to register this database with my recovery catalog - the recovery catalog is version 10.02.00.02. When I try to register this new db with the recovery catalog, I am getting this lengthy collection of errors:
    Recovery Manager: Release 10.2.0.3.0 - Production on Wed Jan 30 14:58:36 2008 Copyright (c) 1982, 2005, Oracle. All rights reserved. RMAN> connected to target database: INSIGHT (DBID=4016731035) RMAN> connected to recovery catalog database PL/SQL package RMAN.DBMS_RCVCAT version 10.02.00.02 in RCVCAT database is not current PL/SQL package RMAN.DBMS_RCVMAN version 10.02.00.02 in RCVCAT database is not current RMAN> echo set on RMAN> register database; RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of register command at 01/30/2008 14:58:40 RMAN-06004: ORACLE error from recovery catalog database: ORA-06550: line 1, column 2453: PLS-00302: component 'RESTORECMD_T' must be declared ORA-06550: line 1, column 2424: PL/SQL: Statement ignored RMAN> exit; Recovery Manager complete.
    It sounds like it has something to do with the fact that my recovery catalog database is not at a current version?? In the OEM tool, I went to the page that lists the Recovery Catalog, and tried hitting the Update button, and it succeeded, but the Recovery Catalog version did not change, it is still at 10.02.00.02.
    Can anyone give me some assistance on this one?
    Thanks!
    --Brad                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    please check with
    select comp_name,status,version from dba_registry;
    COMP_NAME
    STATUS VERSION
    Oracle Database Catalog Views
    VALID 10.2.0.3.0
    Oracle Database Packages and Types
    UPGRADED 10.2.0.3.0
    The UPGRADED status is not good. Run utlrp.sql again and then again as rman user the "upgrade catalog". Now it should work fine.
    Bye
    Matthias

  • OEM GRID 10G

    hi,
    Can I manage EBS database 9i , using OEM GRID 10g ? Or even as low as 8i Db?
    Thanks a lot

    Hi,
    Can I manage EBS database 9i , using OEM GRID 10g ? Yes.
    Or even as low as 8i Db?8.1.7.4 only -- (Note: 277933.1 - Problem: Database Targets (8.1.7.0.0) Do Not Appear In Grid Control Due To Unsupported Database Version).
    Regards,
    Hussein

  • OEM Grid Control taking a long time to load tablespace information

    We use OEM Grid control to monitor many dev/tst/prd databases. OEM is taking a long time to load the tablespace page information on one of our RAC databases (only one all other dbs ok). I have tried going to 1 instance in the environment and it still takes a long time to load the information about all tablespaces in this database. OEM Path is
    Cluster: crs > Cluster Database: sid > Database Instance: sid_instance1 > Tablespaces
    This is a development environment and it is not a very busy database at this time. Anyone else encounter an issue like this with OEM?
    Thanks in advance for any information

    user12192488 wrote:
    Purge your recyclebin. I had the same problem on one of our databases and realised that the recyclebin was very large. OEM uses the space from the recyclebin as well in order to load tablespace and datafile information.
    SQL> purge dba_recycebin;
    Worked for me.
    Regards,Thanks,
    It worked perfectly !
    It used to take 4 minutes to view my tablespaces in OEM !!! Now I have sub second response time !
    Still find it strange that the size of the recyclebin would have such an effect when viewing tablespace info in OEM. By the way it also sped up the viewing of datafiles in OEM.
    Regards,
    Mark T.

  • OEM Grid or Database Control???

    Am currently on an aix server moving from 10gR2 to 11gR2 Oracle Enterprise. Have been reading and finding that documentation from Oracle liberally uses the name OEM grid and Database Control as best practices. I realize that both own their own repositories, but can they co-exist?
    My second question other than for having a one-stop shop, is there a reason for OEM Grid vs Database Control? Does one hold some functionality that the other doesnt?
    My third question , is if using OEM grid, should i be load balancing across multiple servers and or DataGuarding the database that houses the repository.
    Thanks in advance
    Ed Grimm

    Yes, OEM Grid Control and Database Control can co-exist.
    Database Control allows you to do Database administration tasks on one local database only, namely the database it is installed on.
    OEM Grid Control allows you to manage all components within a datacenter (or you could say within the network). So you can actually manage all you databases, application servers, servers, listeners, network components, hardware, Storage Devices, Applications (klike Siebel, Pepoplesoft, E-Business, Forms apps etc.etc).
    So no limitations.
    Functionality include: Provisioning of complete clusters databases, virtual machines etc
    Service Level Management
    Application Management
    Configuration Management
    Change Management
    The answer to your 3-rd question depends on what availability level you need to implement for the repository, so not different from any other HA - database implementation.
    Notmally in a produciton situation you would use multiple Managemetn Servers and a RAC based repository, in that case using load balacners makes sense.
    regards
    Rob

  • Editable data in excel view of alv grid

    hi friends..
    now i am displaying the data in alv grid..
    my requirement is i want to display the data in excel format.. (not in seperate excel..)
    i want to display the excel sheet with data within the screen itself.
    for this
    i tried this scenario by fallowing steps
    in layout->view tab->microsoft excel..
    (layout button in the application toolbar i.e pf-status)
    it show excel sheet within report and data with excel sheet.
    now i got data in excel sheet.
    but my requirement is if i made any changes in data in excel means
    i want those updated or edited data in the another internal table..
    this scenario is work in the case of abap list viewer (instead of microsoft excel)
    for this i use one button in the pf-status (UPDATE).
    after made changes in grid data i export those modified data to abap memory and download to another internal table..
    how can i get the same scenario in micosoft excel

    Hi,
    Please make sure that you have made a <b>global</b>
    <b>declaration</b> for the ALV Grid control.If not try
    with this
    Please reward points if this explanation is useful.
    Regards,
    Siva

  • 3.0.02 EA1 - Edit table data in a grid

    Editing table data in a grid is broken in 3.0.02 EA1 under Windows XP Pro SP3
    Bug #1: When not in editing mode the cursor keys must move the focus from a cell to cell. Instead an edit mode is activated
    Bug #2: There is no way to leave cell edit mode using keyboard. Esc must cancel the edit, Return-key must confirm at switch to the next cell. Have to use mouse...

    I just tried on my VM and i don't see this behaviour on 3.0.
    What i do see is that Bug number 9201495 is still available although i reported this issue on 2.1
    Updating the columns in Data Tab - is a bit awkward

  • One editable cell in alv grid using function module

    Hello all,
    Any one have an idea how to make a single editable cell in alv grid using function module, i mean to say
    with out using object oriented programming.
    Regards,
    Prakash

    Hi,
    Using ALV List display it is possible.
    Try this.
    TYPE-POOLS:SLIS.
    DATA: X_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA: IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA:IT_EVENTS TYPE SLIS_T_EVENT.
    data: begin of it_chg occurs 0,
          index type sy-tabix,
          end of it_chg.
    DATA:  X_EVENTS    TYPE SLIS_ALV_EVENT.
    DATA: BEGIN OF ITAB OCCURS 0,
          NAME(10) TYPE C,
          ZTERM TYPE C,
          END OF ITAB.
    PERFORM FILL_TABLE.
    loop at itab where zterm = 'A'.
    it_chg-index = sy-tabix + 3.
    " addition 3 IS FOR FIELD LABELS
    append it_chg.
    clear it_chg.
    endloop.
    DATA:L_POS TYPE I VALUE 1.
    CLEAR: L_POS.
    L_POS = L_POS + 1.
    **fieldcatalog
    X_FIELDCAT-FIELDNAME = 'NAME'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS    = L_POS.
    X_FIELDCAT-OUTPUTLEN = '10'.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    L_POS = L_POS + 1.
    X_FIELDCAT-FIELDNAME = 'ZTERM'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS    = L_POS.
    X_FIELDCAT-OUTPUTLEN = '10'.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    **events
    REFRESH:IT_EVENTS.
    CLEAR:X_EVENTS,IT_EVENTS.
    X_EVENTS-NAME = SLIS_EV_END_OF_LIST.
    X_EVENTS-FORM = 'MODIFY_LIST'.
    APPEND X_EVENTS TO IT_EVENTS.
    CLEAR X_EVENTS.
    END-OF-SELECTION.
    data lv_repid type sy-repid.
    lv_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = lv_REPID
          IT_FIELDCAT        = IT_FIELDCAT
          IT_EVENTS          = IT_EVENTS
        TABLES
          T_OUTTAB           = ITAB
        EXCEPTIONS
          PROGRAM_ERROR      = 1
          OTHERS             = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *&      Form FILL_TABLE
          text
    FORM FILL_TABLE.
      ITAB-NAME = 'AAA'.
      ITAB-ZTERM = 'A'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = 'ABC'.
      ITAB-ZTERM = 'B'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = 'TEST'.
      ITAB-ZTERM = 'C'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = 'BBB'.
      ITAB-ZTERM = 'D'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = '123'.
      ITAB-ZTERM = 'E'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = 'GEN'.
      ITAB-ZTERM = 'A'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = 'ALV'.
      ITAB-ZTERM = 'F'.
      APPEND ITAB.
      clear itab.
      ITAB-NAME = 'ALVTEST'.
      ITAB-ZTERM = 'A'.
      APPEND ITAB.
      clear itab.
    ENDFORM.                    "FILL_TABLE
    *&      Form  MODIFY_LIST
          text
    FORM MODIFY_LIST.
    data: l_lines type i.
    describe table itab lines l_lines.
      L_LINES  = L_LINES + 3.
    "because we have 3 lines extra occupied by lables.
    "if we have header,i mean top of page add the no.of lines
    "how many ever top of page have + 3 for labels.
      DO L_LINES TIMES.
        read table it_chg with key INDEX = sy-index.
        if sy-subrc = 0.
    **This code is for reading the out put line
    **and modify accordinlg to our requiremnet.
    **don't chnage this.
          READ LINE SY-INDEX INDEX SY-LSIND.
          IF SY-SUBRC = 0.
            MODIFY LINE SY-INDEX INDEX SY-LSIND
                       FIELD FORMAT ITAB-NAME INPUT.
          ENDIF.
        ENDIF.
      ENDDO.
    ENDFORM.                    "MODIFY_LIST

Maybe you are looking for

  • Depot Excise Invoice number skipped ???

    Hi Everyone For Ex. say our depot excise invoice number range is from 1to 100, assuming the current number is 51. Some day back there was a jump in the depot excise invoice number range. In between 1 and 51 the number "25" is missing. So the excise d

  • Validation functionality in service entry sheet

    Hi, We have made provision to use field - External service no- to manually input some number for reference in the line item tab in ML81N. This number is used to track LR no for internal usage. There will be s separate number in each line item. Since

  • Can I stop a mailbox rebuild in progress?

    I was having a few glitchy issues with mail and chose "rebuild" from the mailbox menu. Then I find out it's going to redownload everything in my mailbox. My Mac has bogged down to a snails pace. Can I cancel the rebuild? How?

  • Problem using RescaleOp to brighten image

    Hi, I'm trying to use java.awt.image.RescaleOp to brighten or darken an image. My code: (Using java.awt.image.BufferedImage, java.awt.RenderingHints)      protected static Image createBrightImage(Graphics g, BufferedImage bi)           float scaleFac

  • Deleting selected thumbnails without deleting slideshow images

    Thank for your responses in advance. I'd like to create a slideshow in adobe muse, but only show selected thumbnails to direct me to specific images within the slideshow. When I delete a thumbnail then my larger slideshow image deletes as well. I don