Oracle 10g EM (how to add a target)

Hi all

I have configured em 10 gr 2 oracle to prod db, but I want to add another target IE cloned a (IE on the same machine RHEL4.0)

How to add the target to oracle 10g EM, please let me know if anyone knows.
Thank you
KK

There is a way to add another target in the console database. But even in this case, at one point, only one target would be maintained. If you want to manage multiple targets in a single unified window, then wages, Console is the way forward not free database console.

HTH
Aman...

Tags: Database

Similar Questions

  • How to add more target iSCSI with static discovery

    Try to add multiple entries of static discovery for a set of hosts in the cluster. I can add the first entry by running the following PowerCLI

    Get-vmhost 'vdi1.vdi.sf.local ' | Get-VMHostHba-Type iScsi. New-IScsiHbaTarget-address '172.27.32.30' nomiscsi - iqn.2010 - 01.com.solidfire:bbup.desktop01.2514 - ChapName VDI-desktop computers - ChapPassword j0iT18i17Vp4su > r ChapType - required - static type

    However, whenever I try to add the following entries to static discovery (I have 22 to add to the same discovery IP address) I get the following error message:

    New-IScsiHbaTarget: 27/10/2014-09:17:28 new-IScsiHbaTarget the specified target

    '172.27.32.30:3260' already exists.

    On line: 1 char: 62

    + get-vmhost 'vdi1.vdi.sf.local ' | Get-VMHostHba-Type iScsi. New-IScsiHbaTarget...

    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo: InvalidArgument: (:)) [new IScsiHbaTarget], VimException)

    + FullyQualifiedErrorId: Client20_StorageServiceImpl_TryValidateUniqueIScisTargetAddress_NonU

    niqueAddress, VMware.VimAutomation.ViCore.Cmdlets.Commands.Host.Storage.NewIScsiHbaTarget

    Can I add multiple static targets to a single iSCSI server IP address just right with esxcli, but I'd rather this fact directly in PowerCLI without using $esxcli if possible.

    the discovery of iscsi adapter statictarget esxcli add - a vmhba38 - a 172.27.32.30:3260 - n iqn.2010 - 01.com.solidfire:bbup.desktop01.2514

    esxcli iscsi Portal adapter defined target - a vmhba38 - 172.27.32.30 auth chap d United-a-n VDI-Desktops - required l - n iqn.2010 - 01.com.solidfire:bbup.desktop01.2514 - S j0iT18i17Vp4su > r

    the discovery of iscsi adapter statictarget esxcli add - a vmhba38 - a 172.27.32.30:3260 - n iqn.2010 - 01.com.solidfire:bbup.desktop02.2515

    esxcli iscsi Portal adapter defined target - a vmhba38 - 172.27.32.30 auth chap d United-a-n VDI-Desktops - required l - n iqn.2010 - 01.com.solidfire:bbup.desktop02.2515 - S j0iT18i17Vp4su > r

    I must be missing something simple. Any help is very appreciated.

    As far as I know, it is not possible with the current construction of PowerCLI to set several iScsiNames on the same target.

    You use the $esxcli I'm afraid.

  • ORACLE 10g reports - how to hide the screen parameter

    QUESTION:
    : I have a report that has been designed in 6i. It has a screen of parameter. Now, I have converted the report to 10g and pass parameters to the report of a form. The 6i parameter screen is therefore not required. However, when I look in the FORM of SETTING of PAPER report editor icon, the old route of 6i parameter appears.

    HOW to stop screen parameter 6i to appear? I didn't need it more because the parameters are passed from a form.

    When you call report forms, pass the parameters PARAMFORM = report number.

  • Oracle 11g and then the database export import in oracle 10g

    Hello! There everyone...

    Please tell me the way to export the data and my data structures i.e. the comprehensive database of Oracle 11 g to the old version (oracle 10g) and how he import it...

    I move the database from one computer to another without lan, preferably via the storage device...

    http://download.Oracle.com/docs/CD/B28359_01/server.111/b28319/dp_overview.htm#CEGFCFFI

    http://download.Oracle.com/docs/CD/B28359_01/server.111/b28319/dp_export.htm#i1009711

  • Partitioning table in oracle 10g - how to add

    Hello friends,

    I hope you are all fine and great.

    In fact - I have a small question on oracle 10g partitioning of tables...


    I have a table with the partition below...

    CREATE TABLE X_ACC_ASSETS_GPC_AGG
    (
    X_ACC_ASSETS_GPC_AGG_RK NUMBER (10) NOT NULL,
    X_AS_OF_DT DATE NOT NULL,
    ACCOUNT_RK NUMBER (10) NOT NULL,
    X_UNIV_ACCOUNT_ID NUMBER (10),
    ACCOUNT_ID VARCHAR2 (10 BYTE),
    X_ASSET_TYPE_CD VARCHAR2 (6 BYTE),
    X_AUC_AMT NUMBER (18.5).
    X_FIRM_AMT NUMBER (18.5).
    X_ADJ_SRCE_AMT NUMBER (18.5).
    DATE OF PROCESSED_DTTM
    ) PARTITION BY RANGE (X_AS_OF_DT)
    (
    P200712 PARTITION VALUES LESS THAN (TO_DATE (' 2008-01-01 00:00:00 ',' SYYYY-MM-DD HH24:MI:SS ',' NLS_CALENDAR = GREGORIAN '))
    NOLOGGING
    NOCOMPRESS
    TABLESPACE KAW_DATA
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE)
    64K INITIALS
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    DEFAULT USER_TABLES
    ),
    .
    .
    .
    .


    P201112 PARTITION
    NOLOGGING
    NOCOMPRESS
    TABLESPACE KAW_DATA
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE)
    64K INITIALS
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    DEFAULT USER_TABLES
    ),
    PARTITION PMAX
    NOLOGGING
    NOCOMPRESS
    TABLESPACE KAW_DATA
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE)
    64K INITIALS
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    DEFAULT USER_TABLES
    )
    ) NOPARALLEL;







    My question is:
    (1) how to add a partition to say P201201...
    Since I already said PARTITION PMAX can I still add partition?
    (2) can I add a partition even if the table contains data?


    ==========================
    I tried to add the partition... say

    ALTER TABLE X_ACC ADD PARTITION P201201 THE VALUES BELOW TO
    (TO_DATE (' 2012-01-01 00:00:00 ',' SYYYY-MM-DD HH24:MI:SS ',' NLS_CALENDAR = GREGORIAN '))
    NOLOGGING
    NOCOMPRESS
    TABLESPACE KAW_DATA
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE)
    64K INITIALS
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    DEFAULT USER_TABLES
    )



    but the error...
    "linked partition must gather greater than that of the last partition.



    Thank you/kumar

    Yes. With the help of DBMS_REDEFENITION, you can partition an existing table. Visit this link on how to do it.

    http://www.Oracle-base.com/articles/Misc/PartitioningAnExistingTable.php

  • Hello Sir: I use a generator of form of oracle 10g and I want to search on two dates using between.how it is possible.

    Hello Sir: I use a generator of form of oracle 10g and I want to search on two dates using between.how it is possible.

    I guess its text fields are the date data type.

  • How to add an attribute target in the incontext BC Editor.

    I have a client who needs to add a target = "_blank" attribute to a link from the Publisher of company incontext catalyst for external links.

    Is this possible and if so, how?

    Thank you very much!

    You can't do it. I reported it as a bug. Its primitive how the new editor is shocking.

  • not able to uninstall oracle 10g, how I uninstall oracle 10g IAM?

    actually iam using oracle10g in my laptop. now I just want to change for oracle 11g. I tried to uninstall 10g it shows uninstalled successfully. but when I tried to install 11g it shows already oracle is installed on your laptop...

    now how do I install 11g without formatting... can my drive you give me the solution for this...

    Hello

    You must uninstall oracle 10g by

    1.Oracle Universal Installer from Start menu

    2. Run regedit.exe and delete the HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE key.

      This contains registry entries for all Oracle products.

    3 make sure that he didn't there no service oracle left behind in the services Panel

    4 restart your computer

    5.Delete the "C:\Oracle" directory, or the oracle_base directory on which you had installed oracle 10g

    regards,

    -DM

  • How to send a mail in oracle 10g

    I am new to oracle developer... we use oracle 10g developer... How to send messages via oracle 10 g on a click.pease button help me.

    Thanks in advance

    This question was asked several times on this forum, see if you get the help of the following:

    https://forums.Oracle.com/message/5395438#5395438

    Search results: https://forums.oracle.com/thread/search.jspa?peopleEnabled=true&userID=&containerType=&container=&q=form+email

    Check this out as well:

    http://nzchaudhry.WordPress.com/2013/05/31/send-report-via-email-attachment-in-Oracle-Forms-10G/

    You can find the init.ora or initSID.ora file under $ORACLE_HOME/dbs on linux and Windows under $ORACLE_HOME/database. Otherwise, you can create using the command "create pfile from spfile.

    Aneel

  • How to use Oracle 10g (LOGMINER) consistent with DBA privileges JKM

    Hi gurus,

    Transposition of the CDC, we are checking out JKM Oracle 10g coherent (LOGMINER).
    Only restriction is that we can have no privilege DBA granted to the user of the ODI.

    So far, I did the following

    JKM Oracle 10g compatible (LOGMINER) uesed with

    ASYNCHRONOUS_MODE = NO
    AUTO_CONFIG = NO
    JOURNAL_TABLE_OPTIONS: USERS


    1 source schema: test
    2. There are 2 tables (DEPT_CDC_SRC and EMP_CDC_SRC) in the schema of the TRIAL, the two were added to the process of the CDC
    3 schema work: cdc

    4. from SYS schema the following grants were given to ODI work shema user.

    Grant connect, the cdc resources
    GRANT SELECT ANY TABLE OF CDC
    Grant EXECUTE ON dbms_stats to cdc
    Grant execute on DBMS_CDC_PUBLISH at CDC
    Grant execute on DBMS_CDC_UTILITY to CDC
    Grant execute on DBMS_CDC_SUBSCRIBE at CDC
    Grant execute on DBMS_STREAMS_CDC_ADM to CDC
    Grant execute on DBMS_CDC_IPUBLISH to CDC
    Grant execute on DBMS_CDC_SYS_IPUBLISH to CDC
    Grant execute on DBMS_CDC_ISUBSCRIBE at CDC
    Grant execute on DBMS_CDC_DPUTIL to CDC
    Grant execute on DBMS_CDC_EXPDP to CDC
    Grant execute on DBMS_CDC_EXPVDP to CDC
    Grant execute on DBMS_CDC_IMPDP to CDC

    5. as a user SYSDBA has done the following:
    ====================================
    SHUTDOWN IMMEDIATE;
    BOOTABLE MEDIA;
    ALTER DATABASE ARCHIVELOG;
    ALTER DATABASE OPEN;
    ALTER SYSTEM ARCHIVE LOG START;
    ALTER SYSTEM SWITCH LOGFILE;
    ===================================

    6 start journal... it fails to create the stage newspaper.
    with the following error
    ORA-06512: at "SYS." DBMS_CDC_PUBLISH.

    7. for the goal conceded role DBA to CDC test and start the log it is successful

    8 revoked of CDC DBA and restart the log. It still fails to form newspaper market.
    with the same error i.e.
    ORA-06512: at "SYS." DBMS_CDC_PUBLISH.

    How to solve this problem without any DBA privilege to the scheme of ODI work?

    Kind regards
    Frédéric

    Published by: 804400 on November 24, 2010 02:39

    Hello

    http://www.DBA-Oracle.com/t_insifficient_privileges_create_view_grant.htm said

    You must have the privileges of the object that you made from tables

    Privileges required to create views

    To create a view, you must meet the following requirements:

    You must have been granted the CREATE VIEW (to create views in your schema) or CREATE ANY VIEW (to create a view of another user schema) system privilege, either explicitly, or by a role.

    You need to explicitly obtain the SELECT, INSERT, UPDATE, or DELETE privileges object on all underlying base objects in the view or system privileges SELECT ANY TABLE, INSERT a WHOLE TABLE, UPDATE ANY TABLE or DELETE ANY TABLE. You may not have gotten these privileges through roles.

    I hope this helps.

    Thank you
    Fati

  • form how to do that in oracle 10g

    Hi all
    the shape of any idea on how to format a disk by using oracle 10g and stopping the remote pc and a home pc using oracle Forms 10g.
    I am using windows XP2 operating system.

    Please review...

    You must use client_host, not host. When you use host, you are trying to shut down the server!
    And what is "remotely shutting down the pc? You want to tell someone to another pc? If it's your own pc, does not remotely, but locally.

    You can try this first to see if the dialog box appears:
    client_host (' cmd/c shutdown-i');

  • How to add fonts in Oracle BI 11 analysis

    Hello!

    I need to change the font of the column in the analysis. How to add my ttf fonts in the list of default fonts in the property page?

    Thank you!

    Hello

    PL try this.

    MiddlewareHome/Oracle_BI1/bifoundation/web/patterns, edit the analysis_formats.xsd file and add the new style in this section.

    supported font family

    then add the name of the font in the sub path so

    change Commonuitemplates.xml in the following path, Middleware\Oracle_BI1\bifoundation\web\msgdb\messages, and then add in the sections of the police. You can find by types of research policies.

    TNX

  • How to add two time values in oracle

    Hi, I have two time as parameters: pSTTIME and: pETTIME is defined as a VARCHAR2 column type

    I have values for: pSTTIME as 09:00 and: like 15:30 pETTIME

    How to add these two times, I tried with TO_TIMESTAMP and TO_CHAR, I tried also with SUM but he failed in all situations

    can anyone help

    Hello

    TO_NUMBER allows to convert numbers that you can add these channels.
    Use TO_CHAR convert that number into a string.

    In PL/SQL:

    minutes := ( ( TO_NUMBER (SUBSTR (:psttime, 1, 2))
              + TO_NUMBER (SUBSTR (:pettime, 1, 2))
              )
            * 60
            ) + TO_NUMBER (SUBSTR (:psttime, 4, 2)
              + TO_NUMBER (SUBSTR (:pettime, 4, 2);
    str := TO_CHAR (TRUNC (minutes / 60))
        || ':'
        || TO_CHAR ( MOD (minutes, 60)
                       , 'fm00'
                );
    

    In SQL, calculate the NUMBER minutes in a subquery, so you can use the alias in a Super application.

    This assumes that: psttime and: pettime are always well trained: 2 digits for the hours, a colon, then 2 digits for the minutes. If you are unsure of the number of digits, the same basic app will work, but the SUBSTRs will be a little more complicated.

    I hope that answers your question.
    If this isn't the case, after a complete test script that people can run to recreate the problem and test their ideas. Include the VARIABLE, CREATE TABLE, INSERT, or any statement is necessary to provide some examples of data and also after the output you want from this sample data.

  • How to find the site to download oracle 10g

    Hello

    I need to find the site to download oracle 10g. Please, help me.

    Respect of
    Natalia

    10g is no longer available for download - you need to open an SR with Support and they will provide a download link, assuming you paid for extended support.

    PL see the previous discussions on this topic

    year https://forums.Oracle.com/forums/Search.jspa?threadID=&q=10g+and+Download&objid=C18&DateRange=This & userID = & numResults = 15

    HTH
    Srini

  • How to add the new column in the tabular layout editor in Oracle Forms

    Hello

    I need to add the new column to a datablock and display the newly added column in the form. What are the steps I need to follow.

    1. I chose the new column from the view to the datablock.
    2. Add the text element in the layout editor. But this position is not correct. It overlaps with another column. How to add the new column to the layout editor?

    Thank you
    HC

    In the layout editor, you can simply drag the fields so that they do not overlap.
    See http://www.youtube.com/watch?v=7emNa7THMLg

    Sandeep Gandhi

Maybe you are looking for

  • Voiceover speaks of Album names

    Hello guys, I have an iPod Shuffle 4th gen with VoiceOver. He tells me that the titles of the songs and artists, but not the album names. Can you help me get my shuffle to talk about album names?

  • How to do drag/scrolling(with finger, NOT MOUSE) faster on android ex Chrome, gears etc of Dolphin.

    Slide with your finger is slow when I want to quickly comes to swipe through site very quickly, it's the only thing that gives me does not want to use firefox on android. Just told me things that I need to configure in topic: config.

  • Table, a modified cell reference

    I'm curious to know if I am missing something, or if someone has an eligant way more to capture the last cell changed in a table... I thought that this would be an easy value change event by using either the ActiveCell > CellPosition node or the Edit

  • Pop - up - Media Center Receiver Service has encountered a problem and needs to close.

    Hi after an update took place a few months ago this message began to appear. It is very frustrating and I tried many things to stop it. As rear bearing sytem and download Uniblue Registry Booster program - nothing has worked. Help, please

  • CSEM. DLL error

    Last night my laptop stops suddenly and without warning - at the start, I chose to start the computer in Mode safe and then conducted a thorough full scan from one day to the next with Malwarebytes and AVAST Antivirus. Malwarebytes is a corrupt rootk