Will Java 2 SDK, Enterprise Edition 1.3.1 run on Windows 98?

Will Java 2 SDK, Enterprise Edition 1.3.1 run on Windows 98?
If so, would I still need to download Apache Tomcat?
I'm trying to setup my desktop (currently running Windows 98) to test
servlets and JSP's. What software should I download?
Thanks

I have a Windows 98 system. I just downloaded the j2se from the net and installed. Everything worked just fine.
I did not install Tomcat.

Similar Messages

  • Focus issue with CardLayout (Java 2 SDK, Standard Edition 1.4.0_01)

    I am having an issue with focus and CardLayout with Java 2 SDK, Standard Edition 1.4.0_01. I have created a small sample application to illustrate my problem. In general, I am trying to create a "Wizard" that the user will enter information and then press a "Next" button to proceed to the next step.
    When the first card is displayed, the focus is on the first text field as expected.
    When I go to the next card by clicking "Next", the focus is not on the text field that has requested it (through the requestFocusInWindow method). The focus is on the "Cancel" button, which is the next component to receive focus after the "Next" button on that panel. I do notice that if I use my mouse to bring focus to the window the text field will gain focus.
    Similarly, when I proceed to the last card, the focus is not on the "Finish" button until the mouse moves over the window.
    Is there something I am doing wrong or is there a bug with focus and CardLayout?
    One other problem I have noticed is that the buttons no longer respond to the "Enter" key press and instead respond to the space bar. Any suggestions as to why this is the case?
    Thanks,
    S.L.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CardWindow extends JFrame implements ActionListener {
    public CardWindow() {       
    setTitle("Focus Problems with CardLayout");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    cards = new JPanel();
    cardLayout = new CardLayout();
    cards.setLayout(cardLayout);
    cards.add(createFirstNamePanel(), "FirstNamePanel");
    cards.add(createLastNamePanel(), "LastNamePanel");
    cards.add(createFullNamePanel(), "FullNamePanel");
    getContentPane().add(cards,BorderLayout.CENTER);
    getContentPane().add(createButtonPanel(), BorderLayout.SOUTH);
    resetButtonPanel();
    pack();
    private JPanel createFirstNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your first name:");
    txtFirstName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtFirstName);
    return panel;
    private JPanel createLastNamePanel() {
    JPanel panel = new JPanel();
    JLabel lblDescriptionProjectName = new JLabel("Please enter your last name:");
    txtLastName = new JTextField(20);
    panel.add(lblDescriptionProjectName);
    panel.add(txtLastName);
    return panel;
    private JPanel createFullNamePanel(){
    JPanel panel = new JPanel();
    lblFullName = new JLabel();
    resetTextOnFullNamePanel();
    panel.add(lblFullName);
    return panel;
    private JPanel createButtonPanel() {
    buttonPanel = new JPanel();
    btnPrevious = new JButton("< " + "Back");
    btnPrevious.setMnemonic('B');
    btnPrevious.addActionListener(this);
    btnNext = new JButton("Next" + " >");
    btnNext.setMnemonic('N');
    btnNext.addActionListener(this);
    btnCancel = new JButton("Cancel");
    btnCancel.setMnemonic('C');
    btnCancel.addActionListener(this);
    btnFinish = new JButton("Finish");
    btnFinish.setMnemonic('F');
    btnFinish.addActionListener(this);
    buttonPanel.add(btnPrevious);
    buttonPanel.add(btnNext);
    buttonPanel.add(btnCancel);
    buttonPanel.add(btnFinish);
    return buttonPanel;
    private void resetTextOnFullNamePanel(){
    lblFullName.setText("Your name is: " + getFirstName() + " " + getLastName());
    private void resetButtonPanel(){
    Component c[] = buttonPanel.getComponents();
    for(int i = 0; i < c.length; i++){
    c.setVisible(false);
    switch(iWizardStep){
    case FIRSTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case LASTNAMEPANEL:
    btnPrevious.setVisible(true);
    btnNext.setVisible(true);
    btnCancel.setVisible(true);
    break;
    case FULLNAMEPANEL:
    btnFinish.setVisible(true);
    break;
    buttonPanel.validate();
    public void actionPerformed(ActionEvent e) {
    Object object = e.getSource();
    if (object == btnNext) {           
    btnNextPressed();
    } else if (object == btnPrevious) {           
    btnPreviousPressed();
    } else if (object == btnFinish) {
    System.exit(0);
    } else if (object == btnCancel) {
    System.exit(0);
    private void btnNextPressed() {       
    switch (iWizardStep) {
    case FIRSTNAMEPANEL:
    setFirstName(txtFirstName.getText());
    break;
    case LASTNAMEPANEL:
    setLastName(txtLastName.getText());
    resetTextOnFullNamePanel();
    break;
    iWizardStep++;
    resetButtonPanel();
    this.cardLayout.next(this.cards);
    switch (iWizardStep) {             
    case LASTNAMEPANEL:
    txtLastName.requestFocusInWindow();
    break;
    case FULLNAMEPANEL:
    btnFinish.requestFocusInWindow();
    break;
    private void btnPreviousPressed() {
    iWizardStep--;
    resetButtonPanel();
    this.cardLayout.previous(this.cards);
    public void setFirstName(String value) {
    firstName = value;
    public String getFirstName() {
    return firstName;
    public void setLastName(String value) {
    lastName = value;
    public String getLastName() {
    return lastName;
    public static void main (String[] args) {
    CardWindow c = new CardWindow();
    c.show();
    private CardLayout cardLayout;
    private JPanel cards, buttonPanel;
    private JTextField txtLastName, txtFirstName;
    private JLabel lblFullName;
    private JButton btnNext, btnPrevious, btnCancel, btnFinish;
    private String firstName = "";
    private String lastName = "";
    private int iWizardStep = 0;
    private static final int FIRSTNAMEPANEL = 0;
    private static final int LASTNAMEPANEL = 1;
    private static final int FULLNAMEPANEL = 2;

    Manfred,
    Thanks for your reply. I tried requestFocus() and it gives the same results. Also Sun's 1.4.0 API (http://java.sun.com/j2se/1.4/docs/api/) mentions the following with respect to the requestFocus() method in the JComponent class:
    Because the focus behavior of this method is platform-dependent, developers are strongly encouraged to use requestFocusInWindow when possible.
    That is why I used requestFocusInWindow.
    S.L.

  • Oracle 8i Enterprise Edition Release2(8.1.6) On Windows Millennium

    Hi!
    Can Oracle 8i Enterprise Edition Release2(8.1.6) for Windows/NT/2000 be installed on Windows Millennium.
    If anyone has been able to successfully install it please help me.
    Thanks
    null

    But Justin
    In this forum only I have heard that people have found a way by putting a parameter in the win.ini file.A friend of mine tried it similarly but for him it is by default launching the Oracle8i client installation and not the server installation.Is there a way server installation can be done for Windows Millennium using Oracle 8i Enterprise Edition Release2(8.1.6)

  • Java 2 SDK, Standard Edition v. 1.4

    how do u completely install this version, just so i could get javac running cause its not running when i type it command prompt. i have win2k pro, and im very new with computers

    Once you download the software, install (extract) it to a local directory and then set the PATH and CLASSPATH variables.
    If you donot set the path variable, your system will not recognize javac or java commands
    To set the Path variable:
    1.right click on "My Computer" on your desktop and then click on properties.
    2. select the advanced tab
    3. click on the "Environment Variables" button.
    4. under "System variables" scroll down and select PATH and click edit.
    5. at the end ( or begning) add c:\<java installation root directory>\bin;c:\<java installation root directory>\lib;
    6. click on and then ok.
    This will make your system recognize teh javac and java commands.
    To add the class path click on "New" under System Variables" and then add the following
    Variable Name : CLASSPATH
    Variable Value : c:\j2sdk1.4.1\lib\dt.jar;c:\j2sdk1.4.1\lib\htmlconverter.jar;c:\j2sdk1.4.1\lib\tools.jar;c:\j2sdk1.4.1\src.zip;
    I installed java into j2sdk1.4.1 directory , if your directory name is different, change it. Also if you donot have src.zip and intsead you have src.jar change it in the above CLASSPATH
    Venkat

  • How can Java program convert to .exe file which can run on window system?

    Hi,
    I am a new programmer, now I wrote a program on the Eclipse, and now I want to convert to .exe file and make the program can be run on other window office system PC.
    I had downed EXE4J software to make the program to .exe. BUT the exe file can not be run on other PC with the error message that warning the PC have not set up JVE. IS it necessary to set up JVE?
    OR give me your experience on how to do it?
    Thanks!

    >
    I am a new programmer, now I wrote a program on the Eclipse, and now I want to convert to .exe file and make the program can be run on other window office system PC.>If you only code for Windows, why not use dotNet or C# or whatever system MS is pushing at this instant?
    If you wish to code for computers, Java is good, but it needs a JRE.
    The easiest way to get a Java application up and running on a client PC is to launch it via. webstart, and to use deployJava.js to ensure the minimum Java is on the client PC, ready to use webstart.
    Used this way, you link to a web page where the user clicks a link that downloads and installs the application (and adds extras like splash screens, desktop integration, registration of interest in file types, automatic update..).
    As an aside. The best way to ensure answers is to indicate your interest in solutions, by adding a lot of Duke stars to a thread.

  • Java EE SDK Installation problems...

    I have been having a great deal of difficulty installing the
    Java EE SDK application from this downloaded file
    java_ee_sdk-5_02-windows.exe
    The installation appears to proceed normally for a while then aborts with a dialog that references the installation log.
    I have tried installing this a couple of times and every time it fails, I have deleted the C:\SUN\... folder and the installation script tells me that the folder is still present and requires a new folder for installation.
    I assume that there is some leftover junk in the registry that is upsetting things, but this still doesn't explain why the installation log is complaining that it can't find some path somewhere...
    Can someone point me in the right direction? See the log file contents below:
    Installation Log:
    INFO - start JRE installation
    INFO - end JRE installation
    INFO - Start Sun Java System Message Queue configuration
    INFO - End Sun Java System Message Queue configuration
    INFO - unpacked jar file: C:\Sun\SDK3\lib\admin-cli.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-cmp.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-deployment-client.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-ext.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-jstl.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-rt.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-tags.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\appserv-ws.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\com-sun-commons-launcher.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\j2ee-svc.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\javaee.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\sun-appserv-ant.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\lib\deployment\sun-as-jsr88-dm.jar.pack.gz
    INFO - Start core server configuration.
    ERROR - default domain creation returned following exception: abnormal subprocess termination: Detailed Message:The system cannot find the path specified.
    The system cannot find the path specified.
    INFO - End core server configuration.
    INFO - Start Java DB Configuration.
    INFO - End Java DB Configuration.
    INFO - Start samples configuration.
    INFO - End samples configuration.
    INFO - Start Java EE 5 samples configuration.
    INFO - End Java EE 5 samples configuration.
    INFO - unpacked jar file: C:\Sun\SDK3\blueprints\bpcatalog\lib\bp-ui-14.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\blueprints\petstore\lib\bp-ui-14.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\blueprints\petstore\lib\bp-ui-5.jar.pack.gz
    INFO - unpacked jar file: C:\Sun\SDK3\blueprints\petstore\lib\lucene-core-2.0.0.jar.pack.gz
    INFO - Start OpenESB installation.
    INFO - Addon jar getting installed: jbi-installer.jar
    INFO - Main class invoked: com.sun.jbi.installer.OpenEsbInstaller
    INFO - End OpenESB installation.

    There is one correction to the statement i made before ..server is not starting ..for some time it hangs and throws a socket time out exception...
    com.sun.appserv.server.ServerLifecycleException: Cannot bind to URL [rmi://localhost:8686/management/rmi-jmx-connector]: javax.naming.CommunicationException [Root exception is java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
         java.net.SocketTimeoutException: Read timed out]
         at com.sun.enterprise.admin.server.core.JmxConnectorLifecycle.onStartup(JmxConnectorLifecycle.java:127)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:326)
         at com.sun.enterprise.server.ondemand.OnDemandServer.onStartup(OnDemandServer.java:112)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:326)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:260)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.enterprise.server.PELaunch.main(PELaunch.java:272)
    Caused by: java.io.IOException: Cannot bind to URL [rmi://localhost:8686/management/rmi-jmx-connector]: javax.naming.CommunicationException [Root exception is java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
         java.net.SocketTimeoutException: Read timed out]
         at javax.management.remote.rmi.RMIConnectorServer.newIOException(RMIConnectorServer.java:804)
         at javax.management.remote.rmi.RMIConnectorServer.start(RMIConnectorServer.java:417)
         at com.sun.enterprise.admin.jmx.remote.server.rmi.JmxConnectorServerDriver.startConnectorServer(JmxConnectorServerDriver.java:196)
         at com.sun.enterprise.admin.server.core.JmxConnectorLifecycle.onStartup(JmxConnectorLifecycle.java:118)
         ... 9 more
    Caused by: javax.naming.CommunicationException [Root exception is java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
         java.net.SocketTimeoutException: Read timed out]
         at com.sun.jndi.rmi.registry.RegistryContext.bind(RegistryContext.java:126)
         at com.sun.jndi.toolkit.url.GenericURLContext.bind(GenericURLContext.java:208)
         at javax.naming.InitialContext.bind(InitialContext.java:400)
         at javax.management.remote.rmi.RMIConnectorServer.bind(RMIConnectorServer.java:625)
         at javax.management.remote.rmi.RMIConnectorServer.start(RMIConnectorServer.java:412)
         ... 11 more
    Caused by: java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is:
         java.net.SocketTimeoutException: Read timed out
         at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:286)
         at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:184)
         at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:322)
         at sun.rmi.registry.RegistryImpl_Stub.bind(Unknown Source)
         at com.sun.jndi.rmi.registry.RegistryContext.bind(RegistryContext.java:120)
         ... 15 more
    Caused by: java.net.SocketTimeoutException: Read timed out
         at com.sun.enterprise.server.ss.provider.ASInputStream.waitForSelect(ASInputStream.java:141)
         at com.sun.enterprise.server.ss.provider.ASInputStream.read(ASInputStream.java:99)
         at com.sun.enterprise.server.ss.provider.ASInputStream.read(ASInputStream.java:91)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
         at java.io.DataInputStream.readByte(DataInputStream.java:248)
         at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:228)
         ... 19 more
    what i strongly believe is i have mcafee installled in my pc and it is blocking some ports ..i tried disabling fire wall also , but no luck ....
    Have u tried installing server on windows vista home premium ???is it compatable ???
    Message was edited by:
    vijay.rk

  • 10g: upgrade to JVM enterprise edition?

    Hello! My stored procedures use third party libraries that depends on Java 1.4 enterprise edition. The JVM in shipped with 10g is standard edition only. Any idea how to solve this?

    We have de-supported the J2EE stack from the database since 9.2; you may download 3rd party libraries on top of the JavaVM but trying to turn it into a J2EE platform won't work (you will miss infrastructure layers/services) and receive error messages. Maybe you can fine tune the requirement and only load the specific/required jar?
    Kuassi, blog http://db360.blogspot.com/

  • INSTALLING JAVA 2 SDK 1.4 PROBLEMS

    Hi !!!
    I am new to java and followed the installation notes Java 2 SDK standard edition to install this application. Well i have tried 10 times restalling this application I always get the same problem that is, when the application is uploaded I open it and a message prompts saying the files can not be extracted there is a corruption. I have even deleted the files from control panel and tried many time again keep getting same problem I have also downloaded the application from different sites.
    What do I do??? My start to java is hell!!
    Please some one help me!

    Make sure you are logged in as admin or equivalent (assuming you have NT/Win2k/XP) and see if that clears up the problem. If you keep getting this error even after downloading from multiple sites, it hints at a deeper problem...perhaps bad internet connection, or a virus. THOUSANDS of copies of this have been downloaded over time and if there was some major problem with it, more users would complain.

  • Installing Java 2 SDK 1.4.1

    I am planning on installing Java 2 SDK 1.4.1 on my computer under Windows Me. I have noticed in my Add/Remove Programs that I have a Java Plug-in 1.3.1_02 installed on my computer. I believe it comes as part of Compuserve which I also have installed on my computer. Does anyone know if that plug-in will cause problems in the installation of Java 2 SDK 1.4.1? Is it alright to leave the Java Plug-in there or does it need to be uninstalled before I install Java 2 SDK 1.4.1. I would appreciate any help. Thanks.

    ...but than again I'm using Linux and I know where all my files are.

  • Java 2 SDK

    The sample program, HelloWorldApp.java, downloaded from Sun website was successfully compiled, but was unable to run under Java 2 SDK, Standard Edition Version 1.4.0 with the following error messages:
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown
    Source)
    at java.security.SecureClassLoader.defineClass
    (Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown
    Source)
    at java.net.URLClassLoader.access$100(Unknown
    Source)
    at java.net.URLClassLoader$1.run(Unknown
    Source)
    at java.security.AccessController.doPrivileged
    (Native Method)
    at java.net.URLClassLoader.defineClass(Unknown
    Source)
    The SDK software is installed under Windows 2000 Professional as D:\j2sdkv4. The path of the OS system is set to D:\j2sdkv4\bin.
    Please advise how to correct it as soon as possible since we need the sample program to work before test running our java application.
    Please advise whether there has been an upgrade or an update to the Java toolkit.

    type the name of the file as is when running application after compilation.

  • Oracle server license difference between Standard & Enterprise Edition

    Hello All,
    I have basic folowing question for Oracle server "Oracle 10g Release 2 (10.2.0.3)" version.
    I ahve to purchase license , which one should I purchase , standard or Enterprise edition.
    1) Is there different license required for Standard Edition & Enterprise Edition of above given Oracle version?
    2) Or same license will work on Standard & Enterprise edition ?
    If I have to use Oracle 10g Release 2 *(10.2.0.4)"* , I have to purchase new license or "Oracle 10g Release 2 (10.2.0.3)" license wil work for (10.2.0.4) ?
    I need above infromation on urgent basis....

    Many of the questions you ask are discussed in the Software Investment Guide found at http://www.oracle.com/corporate/pricing/index.html
    In general, you purchase either a Named User or a CPU license for a product. At the time of purchase, you decide whether it is a perpetual license or a term license which has an expiry date. You get a contract (which you should read) in which the limits are described - the limits may include which (or how many) machines you can install the product on.
    When you buy the license, you also buy support. The support usually provides unlimited access to Metalink to ask any questions and download any patches. A support contract (which you should read) is 1 year long and is tied to a specific license purchase contract. You can not, for example, download patches for a licensed system and use those patches on other non-licensed systems. At the end of the year, you purchase a new support contract for another year.
    The version of the product for which you can purchase a license is always the version that you can download at http://edelivery.oracle.com If you want to change the version number (for example, go to 10.2.0.4) you start by installing the downloaded version and apply a patch set (from metalink) to upgrade that installed version.

  • Java ME SDK Tools 3.0.5 Integration NetBeans IDE 6.9.1

    I've installed the NetBeans IDE v 6.9.1 and Java ME SDK Tools v 3.0.5 on a Vista (build 6001) SP1 machine and everything worked just fine. I had a system failure, and had to (attempt) uninstall / re-install. After a clean install of the OS (Vista Home Premium), the JavaME SDK folder was left over & I manually deleted it, re-installed the Java ME SDK Tools.
    My first issue was trying to get them to integrate into the Guest account. No luck. Then a standard user. No luck. And finally as an administor. No luck again.
    So basically, there seems to be some stranded registry entry (which I have tried to clean after uninstalls) that signals NetBeans 6.9.1 that the Java ME SDK (3.0.5) is installed (even when I have removed it and deleted to folder). At which point the NetBeans IDE asks continually if I would like to integrate the Java ME SDK Tools. Either way, the tools will no longer integrate.

    Ok. So I finally got it working. I had to uninstall the Java ME SDK Tools, and NetBeans (again). This time, i received no errors. Then I deleted all of the related dot folders (.nbi, .netbeans, .netbeans-registration) & "javame-sdk" from every user folder.
    For some reason it seems that NetBeans IDE 6.9.1 or Java ME SDK 3.0.5 was still trying to use the old administrator account folder (from the previous, wiped-out Windows installation). I was wondering why the old account re-appeared in the User folder!
    So if your having the same problem: Uninstall NetBeans & Java ME SDK Tools, delete all related folders, run a registry cleaner like CCleaner, reboot, re-install.
    ** If you get errors during either uninstall operation, then you will have to re-install & uninstall again! ** <- Basically, do the above steps twice =)

  • No java 2 sdk

    Hi to everyone:
    I'm having problems trying to open a java aplication using the safari browser: "No Java 2 SDK, Standard Edition Version 6 support for APPLET!!"
    Any idea??

    Your only choice is full remote terminal  access. For example, the AlwaysOnPC runs the applets at http://java.sun.com/applets/ just fine.

  • Would the java applications be affected if change verison of Java 2 SDK

    This would be a very urgent information for me. Thanks a lot if you could help!!! :
    If the source codes I want to reuse is previously developed and tested with Java 2 SDK, Standard Edition (1.2.1_04) Production Release for Solaris, could I directly reuse them with Java 2 SDK, Standard Edition 1.3.1 for Windows? If not, what could I do to make the old Java application with Solaris to be able to run with Windows?

    If you application is pure Java (e.g. not running external programs or using JNI), then it should run w/o changes regardless of the platform. Of course, platform specific bugs may affect reality.

  • 10g Enterprise Edition Licence

    Gurus,
    Will enterprise manager comes with 10g Enterprise edition software which is downloaded for Windows and Solaris Sun Sparc ?
    Or Will EM only come with the 10g Enterprise Media pack which we buy from Oracle for Windows and Solaris Sun Sparc?
    Please clear this doubt.
    Thanks,
    Balu.

    Maran.Viswarayar wrote:
    There are 2 things related to EM
    1.Enterprise manager DBConsole which is free
    2.Enterprise Manager GRID CONTROL---Needs additional costBS. Please cite your sources so we can correct them.
    Grid Control is a framework for displaying monitor and metric information.
    Grid Control is an infrastructure that is included free of charge with Standard and Enterprise Edition licenses of the database and the application server. It is a separate download, but so is Database Client or Database Clusterware. This is discussed in the Licensing manual for database and app server. (See http://tahiti.oracle.com)
    One of the displays Grid Control can show is the set of Database monitor and metrics, which are included free with the database The DBA may choose to display the database on the standalone EM, called the DB Control, or the centralized EM called the Grid Control.
    The database also supports a number of additional metrics and monitors, called Database Enterprise Manager Packs. These packs happen to be included with the database download. However, the DB stores some usage information, and an additional fee is charged if they are used. This is discussed in the Metrics manuals for the EM in the EM doc set.
    Either (or both) DB Control or Grid Control may be used to display the info from the additional packs. However, you pay for the usage of the additional packs, regardless of where displayed, either up front or after an audit.

Maybe you are looking for

  • I have a mid 2009 15" Macbook Pro that does not recognize there is an Airport card installed.

    I bought the Macbook Pro secondhand and I'm sure I saw the Airport Icon when I first booted up, but then I did a clean install of 10.8 and since then I can not get Airport turned on again. The machine had damage to the clutch cover so I assumed the A

  • Can't connect to gmail

    my ipad has quit connecting to gmail - any advice?  It seemed to stop doing this without any changes having been made to the ipad or the gmail account.  I have tried deleting the account and setting it up again. 

  • Continue playing unplayed episodes

    I can sync a smart playlist to my iPhone with unplayed episodes. On the iPhone the upplayed episodes option is available, I can start the first podcast episode but it doesn't automatically continue to the next unplayed episode with the last iOS and P

  • How do I upgrade to Compressor 2.0.1 for FinalCut Pro HD?

    I am presently using FinalCut Pro HD v4.5 and compressor 1.2.1. The only upgrade opportunity I have found requires me to have a FCP v5 serial number. Does someone know a path that would me to upgrade easily? Power book G4 (15 Titanium)   Mac OS X (10

  • Software Architecture

    A three tier Architecture in Java usually consists of the GUI as first tier, business logic in second tier and database in third tier. What is a multi-tier architecture with more than 3 tiers? Can any one please reply. Thanks in Advance.