11GR2 : installation without database control and grid

Hi men,
i would like to know if it is possible to install 11GR2 database without install Database Control and Grid. It is important because my customer doesn't need to use these products.
Thx.

BlueR wrote:
Hi men,
i would like to know if it is possible to install 11GR2 database without install Database Control and Grid. It is important because my customer doesn't need to use these products.
Thx.Your customer thinks he doesn't need a management tool? He may very well not need Grid. Technically, you don't need dbcontrol either. But as much of a command-line bigot as I am, I'd hate to have to go back to scripting everything, and I see no sense in paying good money for a third-party tool to do the same thing I can do with dbcontrol for free. I'd say that as a professional, you owe it to your customer to question him and explain why this might not be "A Good Thing".

Similar Messages

  • Run Singlular Database Control and Grid Control Agents at the same time????

    Hello,
    I have walked into a new job where one of my 1st tasks is installing and configuring EM Grid Control version 10.2.0.3. Most of the individual databases already have singular EM/Database Control also set up for basic monitoring - some are 10.2.0.1 databases; some are 9.2.0.7 databases.
    Can I continue to run the existing singular EM Database Controls for monitoring and managing the databases while I am getting connected, the new agents up and running, and the Grid Control templates and alerts and notification fully set up?
    Or will I have to shut down those agents fully prior to installing the new 10.2.0.3 agents???
    I am hoping so since they use different communication ports of 1158 for the singular Database Controls versus 4889 for Enterprise Wide Grid Control.
    Thanks for any help in clarifying this.
    KL

    OK, so as long as I keep the homes separate & straight, I could conceivably allow them both (Database Control and Grid Control Agent) to run AND be used at the same time - even when using secured grid control (https), correct? Just have the separate homes for separate agents and use separate ports for the different consoles?
    Of course I might still run into an issue with this, ass I am also in the process of securing Grid Control... The current Database Console used by the app users to monitor is NOT an https url...
    The real reason for this is because some app users are used to using the EM Database Control for application monitoring. I would like to not take that away from them while I am in the process of setting up all of the users, roles, alerts, groups, etc. on Grid Control.

  • Differences between EM Database Control and Grid Control/Cloud Control

    Hi everybody,
    just a short question: To show my colleagues and my boss, which one is the better one I would like to have a view about what the differences between Database Control and Cloud Control Versions of EM are and which functions would like the monitoring work more comfortable for us DBA's. Does anybody know a link or document for that?
    Thanks a lot!
    Regards,
    David

    Is this the own advantage of between Cloud Control and DB Control, that Cloud Control can monitor more than one instance?Someone that are using Grid control will tell you that it is a great avantage.
    We've just one database instance. But I've read about SNMP functions, that are only supported in Cloud Control. Are there more advantages?if you only have one database instance, Enterprise Manager is your best way at this moment.
    At some time, for example when 12g arrives, will Cloud Control be the standard installation?for the moment...nobody knows what is coming with 12c database...

  • OEM Database Control and 10g Grid Control

    Can any one tell the difference between OEM Database Control and OEM 10g Grid Control.

    Database Control is the HTTP Management environment and comes installed with the 10g Database. It can be used to manage one database (one target) at a time (standalone). To monitor more than one database, you must create a new console on a different port for each database.
    10g Grid Control is the Enterprise version in that you can monitor different Target from different operationg systems at the same time. These include Application Servers, Listeners, Operation Systems, Non Oracle Database Systems using plugins (from 10gR2).
    So, for someone who was using OEM 9i, there was connection in to Standalone Console (Java) and Oracle Management Server (Java and HTML). In 10g, they are replaced with Database Control (Java and HTML versions) and Grid Control respectively.

  • 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

  • Difference between data control and grid control

    Hello, All:
    When I installed my 10g database, the OEM data control was also installed, I can use it to manage my database perfectly. now I see there is a seperate product for OEM grid control that need to be installed from different CD, Can someone tell me what's the difference between this Data Control and Grid Control?
    Thanks in advance

    DBconrtrol is for monitor only one database but from Enter prise manager Grid Control you can monitor and manage all the database in your enterprise basically
    Oracle Enterprise Manager Grid Control is a single, integrated product for monitoring and managing Oracle software infrastructure as well as applications and business services in diverse IT environments

  • Showing Grid without column headers and Grid lines

    Hi all
    does anyone knows how can set a grid object to display without grid lines and without column headers?
    appreciate the help
    Yoav

    Hi Yechiel,
    When you work with the grid you just have to drag it into your srf and bind it with some table by specifying the table name in its properties.
    When the form launches the columns of the grid  will be created automatically as per the number of columns in the table.The caption of the column in the grid will be the same as that of the name of the column in the table.The only condition for this is that the table should contain some records, if the table is empty no grid lines and the column header will be displayed .
    I hope this meet your requirements.
    Below I am sending you the code segments with the help of which you can control the grid progamatically...
    //Declaring the grid object
    Grid oGrid;
    //Initializing the grid object
    oGrid=(SAPbouiCOM.Grid)oForm.Items.Item("MBS_Grid").Specific;
    //Adding a new data table to the form
    oSboApplication.Forms.ActiveForm.DataSources.DataTables.Add("MBS_DataTable");
    //Assigning the data table to the grid
    oGrid.DataTable = oSboApplication.Forms.ActiveForm.DataSources.DataTables.Item( "MBS_DataTable" );
    // This statement will clear the grid
    oGrid.DataTable.Rows.Clear();
    // In this way you can set the column properties
    oGrid.Columns.Item(0).Editable=false;
    oGrid.Columns.Item(1).Editable=false;
    oGrid.Columns.Item(2).Editable=false;
    oGrid.Columns.Item(3).Editable=false;
    oGrid.Columns.Item(4).Editable=false;
    oGrid.Columns.Item(5).Editable=false;
    // In this way you can set the column width
    oGrid.Columns.Item( 0 ).Width = 50;
    oGrid.Columns.Item( 1 ).Width = 60;
    oGrid.Columns.Item( 2 ).Width = 130;
    //This is the way you can set a user defined caption on the column header.
    query="select U_CTX_MOVCODE as 'Movie Code',U_CTX_MOVNAME as 'Movie Name',U_CTX_SHELF as 'Shelf Number',U_CTX_SPACE as 'Space Number',U_CTX_CARDCODE as 'Customer Code',U_CTX_RENTED as 'Rent Status' from [@CTX_VSTORE] order by Code";
    Regards,
    Prashant

  • No Database Control on Grid Control

    Hello,
    I am using 10g Grid Control with serveral 10g databases
    and have three 10g database controls that are not connecting.
    They are showing the instances are down but this
    is not correct because the databases are up.
    If these three 10g databases were moved to other servers
    do I need to reconfigure them to connect back with my Grid Control ?
    Thanks ...

    Hello,
    No I did not configure theses. I did find the setup page and I have three that are unavailable.
    I get the folllowing message on each one :
    1) Communication from the Oracle Management Service host to the Agent host failed. Refer to help for details. No route to host.
    2) Communication from the Oracle Management Service host to the Agent host failed. Refer to help for details. javax.net.ssl.SSLException: SSL handshake failed: SSLIOClosedOverrideGoodbyeKiss
    3) Status: Agent Unreachable
    I don't see the Force option anywhere ?
    Thanks..

  • Database Control and Segment Shrink

    Page 10-16 of oracle10g new features for administrators
    Book says to click the TABLES link in the STORAGE section.
    Should that be from SCHEMA section? STORAGE section has tablespace information and not table info
    Thanks,
    Viji

    ahb72 wrote:
    Hi,
    I installed Oracle 10g DB and configure its DB Control. Then, I added that database as a target to OEM Grid Control.
    My question is: After adding the database as a target to the Grid control, will it be still monitored by both the DB Control and the Enterprise Grid control?I think , Yes ...
    Just keep the dbconsole services down.
    So stop the dbconsole and start OEM agent and monitor it from grid.
    Regards
    Rajesh

  • Oracle 10G Database Control and Scheduling OWB Process Flow

    Does anyone know how to go about scheduling an OWB Process Flow from
    Oracle 10G Data Base Control. I knew how to do this with Oracle Enterprise Manager 9.2 but we recently upgraded to Oracle Db 10G and the interface has changed significantly.
    Now the interface seems to require a PL/SQL stored procedure to be executed.
    Is there a template procedure that is installed with 10G Data Base Control as there was for 9.2 i.e. oem_exec_template.sql?
    Thanks! Deadline approaching fast...
    Marion

    I've used the oem_exec_template.sql successfully with OWB 10.1 and Oracle 10G Database Control, with a little trial and error at first.
    I'm assuming that your job execution environment is set up correctly, ie. that you can properly execute jobs via the host agent.
    1. Log on to Database Control as SYSTEM, select Jobs from the links at the bottom of the page
    2. In the Results section, Create Job, select "SQL Script" and press Go
    3. In the General section, enter Job Name, and as SQL Script enter e.g.:
    @/u01/app/oracle/owb_oracle_home/owb/rtp/sql/oem_exec_template.sql owb_runtime WF_LOC PROCESS MY_PROCESS , ,
    4. In the Databases section, add your target database
    5. In the Credentials section, I select "Override Preferred Credentials" and use the agent account (oracle on my Linux system) and db user owb_access (OWB Runtime Access user)
    6. Review Schedule tab and submit
    Comments on step 3:
    - the oem_exec_template.sql script must be installed according to the path specified in step 3, on the database host where the OWB Runtime Repository is located
    - owb_runtime is the owner of my OWB Runtime Repository
    - WF_LOC is the name of my Workflow Location as seen in OWB Deployment Manager
    - MY_PROCESS is the name of a deployed Workflow Process
    - the commas indicate that I don't supply any system or custom parameters.
    - step 3 is actually a shell command line that is interpreted by eg. /bin/sh on Unix or cmd on Windows, and must obey proper quoting rules. On windows, I had to specify the empty commas as "\," (including dblquotes)
    Regards, Hans Henrik

  • Database controls and logging

    I'm try to use the @jc:log annotation with my database controls, but I'm not having any luck.
    Has anyone had success using this annotation? If so, can you tell me what I'm doing wrong?
    When I included the @jc:log annotation, Workshop complained that the attribute category was not allowed. Here is what I tried:
    * @jc:connection data-source-jndi-name="cgDataSource"
    * @jc:log category="mycategory"
    public interface MyDbControl
    extends DatabaseControl, ControlExtension
    thanks in advance,
    Erik

    Ron--
    There are some examples of how to do stored procedures with the DatabaseControl here:
    http://edocs.bea.com/workshop/docs81/doc/en/workshop/guide/controls/database/conStoredProcedures.html
    One issue with SPs and ResultSets is that the ResultSets can't be returned to JPFs because of
    limiations in the DatabaseControl lifecycle in 8.1. So, you can process the ResultSets in a web
    service or custom control if you need to return the data to a page flow.
    Hope that helps...
    Eddie
    Ron wrote:
    Hi,
    I am developing database controls that use Sybase stored procedures.
    My stored procedures mostly return result sets.
    How would I specify the use of both a stored procedure and the processing
    of the result sets returned?

  • How can I print out the graph I need only, without the controls and indicators?

    I'm doing some programming in LABVIEW. I need to print out only the graph, without the buttons, controls, indicators. I tried to look for such a function in LABVIEW, but in vain. How can I achieve the result I expect in my programming?

    Hi Fenny,
    you should use the report generation functions to create a report containing your graph image and print it.
    Take a look at the Sample Test Report.vi you find in the report examples of LV.
    Just look at the part of the diagram where it is used Append Control Image to report.vi (in the center of the report functions chain); a graph reference is wired to the Ctrl reference input ( to create a reference of your graph right click on it and select create reference).
    Let me know if you need more help,
    Alberto

  • Which Vista basic OEM installation without a disk and no recovery available.

    Someone got the bright idea to install Windows 7 without a license, after 30 days of course the problems began. Now I have the PC in front of me to repair, but the "friend" repatitioned the disk, so there is no recovery available. Can someone please help me and tell me which .iso to download and where? Version is french. It's driving me crazy for a week now, hope someone has an answer.
    Thanx in advance,
    Bert

    Hi, Bert:
    You can build your own ISO file if you are up to it.
    Here is the link to the 3 files you need.  Select the French 32 or 64 bit set.
    http://www.heidoc.net/joomla/technology-science/microsoft/57-windows-vista-direct-download-links
    First read these instructions & watch the videos for how to build the ISO file.
    http://dellwindowsreinstallationguide.com/download-microsoft-windows-and-office/download-microsoft-w...

  • Oracle Database management and monitoring tools

    hello everyone.
    Could anyone offer any advice on Oracle database management tools ?
    looking for a 3rd party tool that would provide graphical representation on health and activity within Oracle databases.
    Any recommendations , or advice on what to avoid?
    Many thanks

    Thanks , have enterprise manager already.
    Really looking for tool that will email , sms alerts
    out as they happen.
    Ability to set threshold alerts.
    report creation of threshold data.
    that kind of thing etc.Since you want to pay extra for this capability, look at the Diagnostics Pack add-on for Enterprise Manager. It does what you ask. And makes it available both on Database Control and Grid Control view.
    And both Database Control and Grid Control are included in your SE/EE license.

  • Kerberos and Database control don't want to play

    I've got a problem - it's been with Oracle support for over 2 weeks now and have had no reply.
    Our infrastructure is 10.2.0.4 on Solaris. The requirement is having Kerberos enabled authentication for the database and management is via EM Database Control not Grid Control so each Database is managed individually and is self-contained.
    Kerberos was installed and is working fine. You can get a ticket and login OK. What became obvious, however, that by enabling Kerberos, Database Control partially breaks. I know you can't have Kerberos EM accounts setup but that's not what we need to do.The agent just can not connect to the local database. I've done a bit of trouble-shooting and it's pretty obvious what the issue is but sorting it out is a bit of a problem.
    Right, when you enable Kerberos, most of the settings are done in the sqlnet.ora file on the database server. The interesting setting here is the line :-
    SQLNET.AUTHENTICATION_SERVICES= (BEQ,KERBEROS5)
    Correct me if I'm right, but what this basically does is to say that any 'local' connections (eg sqlplus / as sysdba) just go in through the usual database/host group accounts (BEQ) whilst any other connections (sqlnet) go through Kerberos. This is where the problem looks as though it is. The EMAgent insists on using a full descriptor (host, port, sid etc..) and thus loops back through sqlnet and hits the Kerberos authentication brick wall and produces the standard Kerberos error :-
    Thread-8 ERROR vpxoci: ORA-12638: Credential retrieval failed
    vpxoci: Login 0xfdf08 failed, error=ORA-12638: Credential retrieval failed
    TargetManager: Exception in computing dynamic properties of {db1.server1.acme.co.uk, oracle_database },SystemTablespaceNumber::ORA-12638: Credential retrieval failed
    Thread-8 WARN vpxoci: OCI Error -- ErrorCode(12638): ORA-12638: Credential retrieval failed
    The connect descriptor being used by the agent is :-
    LOGIN = dbsnmp/<PW>@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=server1.acme.co.uk)(PORT=1521))(CONNECT_DATA=(SID=DB1)))
    I've briefly edited the emoms.properties file to change the descriptor to IPC based and it still errors just the same. To duplicate this error we just created a normal database account "account1" identified internally and used these descriptors outside EM with sqlplus and it's just the same, so running :-
    sqlplus account1/password@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=server1.acme.co.uk)(PORT=1521))(CONNECT_DATA=(SID=DB1)))
    gives exactly the same credentials error and :-
    # sqlplus account1/password
    connects just fine. BTW, if you edit the original sqlnet.ora file and change (BEQ,KERBEROS5) to (BEQ) or even just remove the line, it all works fine but obviously disables Kerberos which isn't an option.
    If someone has experienced this and knows a patch/fix or which configuration files to hand-edit I'd appreciate it.
    Thks

    user2664528 wrote:
    Our infrastructure is 10.2.0.4 on Solaris. The requirement is having Kerberos enabled authentication for the database and management is via EM Database Control not Grid Control so each Database is managed individually and is self-contained.Sorry that I have no resolution to the larger problem. (I wonder whether a discussion in the Grid Control forum might be useful as the GC folk hide out there ... http://forums.oracle.com/forums/category.jspa?categoryID=70)
    I am curious about the above statement since Grid Control does allow individual 'administrators' to be isolated to specific systems/configurations. That functionality is implemented using EE's Virtual Private Database capability and seems pretty solid to me.
    What goes wrong when you use the isolation capability in Grid Control?

Maybe you are looking for

  • Lion SMB file sharing with windows "Access Denied"

    In general SMB (windows) file sharing works fine on my home LAN (for Mac and Windows PCs).  However, Adobe Flash CS3 for Windows (Win7x64) yields an "Access Denied" error trying to open any FLA file shared from my Mac Mini home server running Lion. 

  • Horizontal line across the monitor. It happened yesterday.

    I have a HP ENVY 23-c1 10xt AiO (Lavaca3-SB)PCUS and there is a horizontal line across the monitor.  It happened yesterday.

  • CSS and Compression:Disable the CSS Compression in WebCenter Spaces

    Hi, I follow exactely all recommandations that i had seen in different website. I add in my web.xml for MyCustomWebcenterSpacesWAR <context-param> <param-name> org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION </param-name> <param-value> true <

  • UCCX 8 Reporting - Limit Outbound Calls to True Outbound

    Hello, We're running UCCX 8 Premium and had an interesting question.  The outbound report seems to include any number dialed from the Agent Extension.  Is there anyway to limit the reporting so it only shows outbound calls as calls that start with 9?

  • Replacing custom menu

    hello,, In forms 6i,,,, how to replace theexisting menu in single from by clicking the various buttons,,,,,,,,, if i use replace_menu('oldmenuname',pull_down,'newmenuname'); i am getting error like menu cant read.......... what is the solution