Save /ADD Grid Control Columns Data in database

Hello All,
                 Can any one suggest me how we add or save or update  the grid control columns fields  data into databases.
                  My problem is  I have 2 tabs in user defined screen Main and issue tabs . when we click the issue tabs then items data in main tab   matrix is filled in issue tab grid for this i create user defind table and register it with my user defined object .and
fill somoe of this table fields using reocord set . Now I want to add these grid data  in database .
how we achieve this .Please guide me

Arvind,
You may want to review the documentation on the Grid Object in the SDK Help documentation as this may help with your question.
Eddy

Similar Messages

  • 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

  • Oracle 9i Database -- Performance window in Grid Control not data available

    Hi
    I have Grid Control 10.2.0.4 on Red Hat and i monitoring some Oracle 9i Instances. When i go to any of these instances to the Performance section, at begininig , ever, not data available in all the graphics.
    When i select manual refresh the graphic begin to build information. But if i close the explorer and reopen , all graphics not have any information.
    Is the situation normal for all Oracle 9i databases?
    The explanation is that Oracle 9i not have AWR ?
    Thanks

    You have too few RAM on your machine, even you could successfully create an instance, it's going to slow as hell.
    When you run DBCA to create database, instead of actually creating the database you could choose to dump the SQL scripts and files used for database creation to a directory. This way will give you a chance to modify pfile and reduce the SGA parameter. I believe the default SGA of instance created by DBCA is already beyond your RAM limit.

  • Grid Control and Data Guard Setup

    Hi,
    I have 4 PCs on which I wish to test the following:
    1. OEM Grid Control 10.2 - Console + Service + Agent
    2. Data Guard feature with Broker
    3. Standby Setup for a Primary Database.
    I will create the Primary DB on one Linux PC.
    Standby DB using Grid Control & DataGuard on second Linux PC.
    The Third PC is also Linux but the fourth PC is Windows XP.
    Please guide me in understanding the following:
    1. On which PCs should I install OEM Grid Control 10.2 - Console + Service + Agent?
    2. On which PC should I setup DB Broker?
    Please assume that I will use Oracle 10.2 Softwares and Linux x86 version.
    Regards

    well why don't you go ahead and test?!
    Test and see whether you want to put oms, console all one machine, or whether you want to separate out the componests (you'll need an agent on each box regardless). I have no idea what the specs of your machines are, so why don't read the documentation on Grid and dataguard, see what the recommended settings are and then plan what you want to do.
    Bazza

  • ALV Grid Control -  Modifiy data in total and subtotal lines

    Hello all,
    I´am creating a report using ALV Grid Control. This report calculates (using delivered and returned materials) for each vendor/material-combination the return quote.
    Using the totals and subtotals function for different characteristics I want to calculate the return quote for the selected characteristic. Example:
    Material delivered returned quote
    ..4711 . . . 500 . . . 5 . . . . 1 (=returned*100/delivered)
    ..4711 . . . 400 . . . 10 . . . . 2,5
    . SUM . . . 900 . . . 15 . . . . 3,5 <-- 3,5 is the sum but I want display the calculated value 1,667
    Is there a possibility to modify data in the total and subtotal lines.
    Thank you for your answer
    Best regards
    Thomas

    you said instead of 3.5 you want to show 1,667 ..
    how is it possible...
    3,5 become 1,667
    i thought you are doing any conversions...
    vijay

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

  • OEM 10g grid control using an existing database

    Hello all,
    Has anyone been successful in installing Enterprise Manager 10g Grid
    Control (10.1.0.3) using and existing 10g (10.1.0.3) database?
    10g grid control comes with 9.0.5.0 database for it repository. Since
    this respository can not be update to 10.1.0.3, Oracle recommends using
    and existing 10g database instead.
    My installation goes 90% all the way before it fails. It fails at the
    create repository point.
    If any one has been successful, could you please share your success
    with me.
    Thanks,
    Jake

    Well, finally I did it! :)
    The problem comes when you are trying to install OEM repository into existing 10g DB which used to be configured with a standalone Database Control. Dropping SYSMAN user is not enough!!! There are some leftovers which must be cleaned before running repository creation assistant:
    drop user SYSMAN cascade;
    drop user MGMT_VIEW cascade;
    drop role MGMT_USER;
    drop public synonym MGMT_TARGET_BLACKOUTS;
    drop public synonym SETEMVIEWUSERCONTEXT;
    That's all folks.

  • Can Grid Control on Windows monitor databases on UNIX?

    If I install Grid Control on a Windows pc can I use it to monitor databases on UNIX?

    There are two reasons I have to reboot the box.
    1.You know, Windows always needs "update and reboot".
    2.Sometimes I got the EM error message "Count of targets not uploading exceeded the critical threshold " from all hosts, but I am sure all hosts and agents were working normally.
    After receiving errors, I found the grid control can't show the right chart on the performance tab.
    Then I reboot the box and everything works fine again.

  • Removing incidents in grid control from backend repos database.

    hi,
    Like we remove alerts sometimes by deleting from mgmt_severity, is there any table which can help me remove some incidents which are not clearing in grid control 12C?
    I really need it please.

    What kinds of incidents are not clearing?
    For stateless incidents (such as logfile based incidents) you will need to manually clear the incident. You can remove the underlying alert using emcli clear_stateless_alerts.
    http://docs.oracle.com/cd/E24628_01/em.121/e17786/cli_verb_ref.htm#CACGAEDI
    The other alerts should be cleared by fixing the root cause after which the Incident should clear automatically.
    Mark.

  • Grid control cannot discover a database

    I have an agent configured on a windows server with GC on linux.
    GC knows about the agent and can see the host. However, when I try and discover the database I keep getting connection time outs. The agent on the windows server is running and uploading files.
    I can ping the windows box from GC and visa versa
    I can ping the host names too.
    Can anyone help out.
    regards
    Alan

    Have you tried manually adding it or is that what you mean by 'discovering'?
    also from the grid server, can you run up bog standard sqlplus and add the relevant to the relevant tnsnames.ora and just try connecting via sqlplus or use tnsping just to make sure that bit is ok.

  • Data Guard configuration for RAC database disappeared from Grid control

    Primary Database Environment - Three node cluster
    RAC Database 10.2.0.1.0
    Linux Red Hat 4.0 2.6.9-22 64bit
    ASM 10.2.0.1.0
    Management Agent 10.2.0.2.0
    Standby Database Environment - one Node database
    Oracle Enterprise Edition 10.2.0.1.0 Single standby
    Linux Red Hat 4.0 2.6.9-22 64bit
    ASM 10.2.0.1.0
    Management Agent 10.2.0.2.0
    Grid Control 10.2.0.1.0 - Node separate from standby and cluster environments
    Oracle 10.1.0.1.0
    Grid Control 10.2.0.1.0
    Red Hat 4.0 2.6.9-22 32bit
    After adding a logical standby database through Grid Control for a RAC database, I noticed sometime later the Data Guard configuration disappeared from Grid Control. Not sure why but it is gone. I did notice that something went wrong with the standby creation but i did not get much feedback from Grid Control. The last thing I did was to view the configuration, see output below.
    Initializing
    Connected to instance qdcls0427:ELCDV3
    Starting alert log monitor...
    Updating Data Guard link on database homepage...
    Data Protection Settings:
    Protection mode : Maximum Performance
    Log Transport Mode settings:
    ELCDV.qdx.com: ARCH
    ELXDV: ARCH
    Checking standby redo log files.....OK
    Checking Data Guard status
    ELCDV.qdx.com : ORA-16809: multiple warnings detected for the database
    ELXDV : Creation status unknown
    Checking Inconsistent Properties
    Checking agent status
    ELCDV.qdx.com
    qdcls0387.qdx.com ... OK
    qdcls0388.qdx.com ... OK
    qdcls0427.qdx.com ... OK
    ELXDV ... WARNING: No credentials available for target ELXDV
    Attempting agent ping ... OK
    Switching log file 672.Done
    WARNING: Skipping check for applied log on ELXDV : disabled
    Processing completed.
    Here are the steps followed to add the standby database in Grid Control
    Maintenance tab
    Setup and Manage Data Guard
    Logged in as sys
    Add standby database
    Create a new logical standby database
    Perform a live backup of the primary database
    Specify backup directory for staging area
    Specify standby database name and Oracle home location
    Specify file location staging area on standby node
    At the end am presented with a review of the selected options and then the standby database is created
    Has any body come across a similar issue?
    Thanks,

    Any resolution on this?
    I just created a Logical Standby database and I'm getting the same warning (WARNING: No credentials available for target ...) when I do a 'Verify Configuration' from the Data Guard page.
    Everything else seems to be working fine. Logs are being applied, etc.
    I can't figure out what credentials its looking for.

  • Data Guard - Grid Control - Standby database

    Heys,
    now I have to RAC Clusters. The next step would be to setup a standby database to prepare a graceful switchover.
    But what are the next steps ?
    I am currently installing GridControl on a seperate host with the option: Enterprise Manager10g Grid Control Using an Existing Database
    The installation is still running....
    What are the steps ? Any documentation ? Any tutorials ?
    Do I need to install agents on each client in the cluster ?
    What about the name resolution ?
    Any listener configuration necessary ?
    Is the configuration done via data guard command line ?
    Christian

    Bear in mind that the standby creation wizard in Grid Control will only create a non-RAC standby. Once you get to Grid Control 10.2.0.5 and your databases are in 11g you will be able to use the Grid Control convert to RAC wizard on your standby. Prior to that you will have to convert the standby to RAC manually or follow the above mentioned paper and create the standby by hand and then import it into Grid Control.
    Larry

  • Alert Log File Monitoring of 8i and 9i Databases with EM Grid Control 10g

    Is it possible to monitor alert log errors in Oracle 8i/9i Databases with EM Grid Control 10g and EM 10g agents? If yes, is it possible to get some kind of notification?
    I know that in 10g Database, it is possible to use server generated alerts, but what about 8i/9i?
    Regards,
    Martin

    Hello
    i am interested in a very special feature: is it possible to get notified if alerts occur in alert logs in an 8i/9i database when using Grid control and the 10g agent on the 8i/9i systems?
    Moreover, the 10g agent should be able to get Performance Data using the v$ views or direct sga access without using statspack, right?
    Do you know where I can find documentation about the supported features when using Grid Control with 8i/9i databases?

  • How add a host in EM Grid Control

    Hi everybody !!
    I am having problems at identifying like can add one host in the Enterprise manager grid control for monitoring a database that containg the host.
    I have install EM grid control in VMware with SO windows XP.
    was installed my repository in ORACLE_HOME, one service in OMS_HOME, one agent in AGENT_HOME, use the option "Installing Enterprise Manager 10g Grid Control Using a New Database".
    i understand that automatic the oracle mangement service and oracle manegement agent communicate and can see other hosts in EM grid control.
    all services is up
    dont see other hosts, dont see other databases
    can anybody help in this issue??

    Install the Management Agent on the hsot you want to manage. it is stated in the documentation.
    Oracle Database FAQs

  • Oracle Enterprise Manager Database Control VS Grid Control

    What is difference of Oracle Enterprise Manager Database Control and Oracle Enterprise Manager Grid Control?
    How I can install it manually?
    Thanks

    What is difference of Oracle Enterprise Manager Database Control and Oracle Enterprise Manager Grid Control?
    How I can install it manually?Dbcontrol is for single database as Grid control is for multiple databases.Dbcontrol has limited features than Grid control that goes beyond database administration to monitor other targets that include Operating system and application servers, web application, High availability (data guard) configurations. Database control comes with oracle server license but Grid control is a separate product it required separate license. If you want to use basic features then you can turn off the licensed packs in Grid control and use free product.
    Install Grid Control as doc:http://download.oracle.com/docs/cd/B16240_01/doc/em.102/e10953/installing_em.htm

Maybe you are looking for

  • Won't load on XP

    I was excited to download and try LR/4 but completely disappointed that it won't load or run under Window's XP. The error message says that I need Vista or later. The very last thing I would ever to is to "upgrade" to Vista. Adobe, get real! Yes, Win

  • Changes in SPRO not reflected

    Hi guys, I'm trying to remove a service from the ESS Service Map e.g. Removing the links of "Working Time" from the ESS through SPRO and followed the steps (change position=0) I've saved the changes but they do not seem to be reflected in the Portal.

  • Powershell - Test-Path if a file exists within a folder

    Hey Guys, I'm unable to get this to work correctly. I'm trying to see which folders have a file within them with the word "preview".  If it does, then tell me it exists, if not, then it doesn't exist. What am I missing?!? Ugh :( Here is my code $root

  • Integration between CRM and PM

    I am working on a utility project for the very first time and I don't really understand the integration between CRM and PM. Can somebody please provide me some documentation with it? I am trying to understand how a service order that arises out of CR

  • Times Ten == cache only?

    Hi, I have a huge DB with tables with more than 40 millions register each. As you can imagine complex queries (from any type of client including JDBC and ODBC) on this DB have a poor performance. The thing is that using a cache is not useful for our