Why do we call Enterprise Manger 10.2.0.3 "EM 10g R3" ?

Why do we call Enterprise Manger 10.2.0.3 "EM 10g R3" ?
I think it is ok "EM 10g R2" is Enterprise Manager 10.2.0.x. and
"EM 10g R3" is Enterprise Manager 10.3.0.x.
Your opinion?

If it is a mistake/typo, then it will be Oracle's fault.
There was Enterprise Manager 10g Grid Control Release 2 (v10.2.x). Which to me is 10g R2
Now they are referring EMGC 10.2.0.3 as Enterprise Manager 10g Grid Control Release 3 (10.2.0.3). So that to me is 10g R3 because of the Release 3.
If you remember, there were Oracle products named Oracle xxx 10g Release x(9.x.x). So, I think we are seing the same here.
So, do not be surprised if you see 11g Release 1 (10.2.x.x).

Similar Messages

  • Why cant I call a getResultSet method more than 1

    Why cant I call the getRSS method more than 1 time from my page?
    I have a class called methods class, here is the code:
    public class methodsClass {
        public java.sql.Connection objConn = null;
        public String query = null;
        public java.sql.PreparedStatement statement = null;
        public java.sql.ResultSet objRS = null;
        /** Creates a new instance of methodsClass */
        public methodsClass() {}
         public ResultSet getRSS(String sql)
            String strSQL = sql;
            try
                Class.forName("oracle.jdbc.driver.OracleDriver");
                objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
                statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
                objRS = statement.executeQuery();
            catch (Exception e)
                System.err.println("Error in getRSS method");
                e.printStackTrace();
            return objRS;
        public void killConn()
            try
                    objRS.close();
                    System.out.println("Resultset is closed");
                    statement.close();
                    System.out.println("Statement is closed");
                    objConn.close();
                    System.out.println("Connection is closed");
                catch(Exception e)
                System.err.print("Unable to kill all objects");
                e.printStackTrace();
    //END OF CLASS***************************************** I call the method from the following jsp:
    <%
    String eqCat = "Tracked Vehicle";
    String strSQL = "SELECT DISTINCT * FROM robert WHERE eqcategory = '"+eqCat+"'";
    methodsClass mc = new methodsClass();
    ResultSet objRS = mc.getRSS(strSQL);
    java.lang.System.out.println(strSQL);
    %>
         <select name="selectBox">
         <% while(objRS.next()){
             out.println("<option value='"+objRS.getString("eqtype")+"'>"+objRS.getString("eqtype")+"</option>");
               mc.killConn();
    %> The above works fine.
    If I try to call the getRSS function again on this page I get the following error:javax.servlet.ServletException: Exhausted Resultset
    I tried to call it like so:
    newNameSQL = "Select * from robert where eqtypes = 'someVariable'";
    newNameRS = mc.getRSS(strSQL);
    <%=newNameRSS.getString("something");%>I cant understand why I get this error, I am closing the rs,conn and statement in the killConn method.
    TIA!

    I did that but still the same error. The problem is when I attempt to open up another resultset on the same page I get the Exhausted ResultSet error. I have even eliminated the class file altogether by doing this:
      String eqCat = "Tracked Vehicle";
      String strSQL = "SELECT DISTINCT eqtype FROM robert WHERE eqcategory = '"+eqCat+"'";
      Class.forName("oracle.jdbc.driver.OracleDriver");
      Connection objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
      PreparedStatement statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      ResultSet objRS = statement.executeQuery();
      System.out.println(strSQL);
    //The above works fine and then below I add this and the error comes back
         <select name="cs_popup_name_1" onchange="CSURLPopupShow(/*CMP*/'cs_form_name_1', /*CMP*/'cs_popup_name_1', 'Main');">
         <% while(objRS.next()){
            String eq = objRS.getString("eqtype");
             out.println("<option value='"+eq+"'>"+eq+"</option>");
    objRS.close();
    objConn.close();
    statement = null;
    strSQL = null;
    strSQL = "SELECT * FROM robert";
      Class.forName("oracle.jdbc.driver.OracleDriver");
      objConn = java.sql.DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:CCD","system", "Abcd1234");
      statement = objConn.prepareStatement(strSQL,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
      ResultSet rs = statement.executeQuery();
      System.out.println(strSQL);
    //If I leave the field below commented out I get no errors, but if I comment it out I get the error
    <a href="#" onmouseover="showImg('<%=rs.getString("img1")%>')">                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Why java is called java2

    why java is called java2 and another thing that i would like to know is why it was renamed to java from its previous name OAK
    Thanx
    Manish

    why java is called java2Not to sure about this one, but I think it was a marketing decision - I guess 'Welcome to the Java 2 platform' sounds better than saying 'Welcome to the JDK 1.2.1 platform' :=)
    and another thing that i
    would like to know is why it was renamed to java from
    its previous name OAKThere was already a patented product named 'OAK', so they had to rename it to something else to avoid the law.
    >
    Thanx
    ManishA brief history of Java:
    http://java.sun.com/features/1998/05/birthday.html
    http://www.ils.unc.edu/blaze/java/javahist.html

  • Why JNDI is called an Interface?

    Why JNDI is called as Java Naming and Directory Interface, question is why
    interface ? when it is not a interface ?

    It is an interface because it is defined as an abstract set of APIs, not actually implementation. The actually implementation is done by service providers.
    Defining an abstract set of APIs without actually implementation can isolate the implemenation of service provide and client application code, thus make them more independently from each other. i.e, a client application would not need to know what changes made by any particular vendor.
    Hope this helps.

  • How to remove archive log files using Enterprise Manger

    Hi,
    I took backup of the archive log files and i deleted those files at OS level but it is not reflecting in the Enterprise Manager it is showing the same. Can any one help in how to delete the archive log files by using Enterprise Manger.
    version 10.2.0.1.0
    any help is appreciated.
    Regards,
    Ashraf

    I have the same problem. I have 10gr1 and 10gr2 on different servers. On 10gr1, under administration/manage current backup/image, I can see archivelog files, and can mange them. But on 10gr2, the image doesn't show archivelog files. I can only remove them using rman. I wonder if it's because the different design on 10gr2 or I missed something when setup the backup?

  • Why doesn't calls to my iPhone ring through to my Mac?

    Why doesn't calls to my iPhone ring through to my Mac?

    The following have the requirements and settings and some troubleshooting information:
    Connect your iPhone, iPad, iPod touch, and Mac using Continuity - Apple Support
    Get help using Continuity with iOS 8 and OS X Yosemite - Apple Support

  • HT1245 Why does my caller I.D. photos show as a small thumbnail in the upper right corner and not full screen? I have used both photos I have synced and photos I have taken, yet others have full screen photo I.D.'s.

    Why does my caller I.D. photos show as a small thumbnail in the upper right corner and not full screen? I have used both photos I have synced and photos I have taken, yet others have full screen photo I.D.'s. I have looked onlime at several threads and there are no real answers as to what I need to do or am doing wrong.

    I am also having this issue.
    I've just spoken to someone in the Apple Support Centre who advised me that since the product is in beta, he is unable to assist. I wanted to find out whether someone was able to delete the data for me, or 'reset' the photos app somehow. This apparently cannot be done. He suggested I provide feedback via the feedback page, which I will do, but to be honest doesn't fill me with a lot of confidence in the issue being fixed.
    I also deactivated the service and waited the 30 days for the pictures to be deleted - this should have been completed in mid-January. Instead, my iCloud.com Photos page is now showing the photos that should have been deleted as grey squares, just as you described. I am also unable to delete these photos; every time I try, I get the same message about a server error.
    I am also unable to disable the service by enabling and then disabling it on my iPhone. Each time I have tried this it hangs on uploading for several hours, with the progress bar not moving at all. When I disable it on my iPhone, the web app remains unchanged.
    If anyone has had this issue and has managed to fix it, PLEASE share your wisdom. I am out of patience!

  • Enterprise Manger Grid Control 10.1.0.4 and OAS 10.1.2 Interconnect/Adapter

    Hi,
    Can some one tell me whether Enterprise Manger Grid Control 10.1.0.4 can monitor Oracle Application Server 10.1.2 Interconnect and Adapter (Interconnect Repository and DB/FTP adapter)
    Cheers
    Harsha

    You can view the documentation to see if it helps
    http://www.oracle.com/pls/db102/portal.portal_db?selected=3

  • Changing user who calls Enterprise Service dynamically

    Hello all,
    I'd like to call Enterprise Service as Portal logon user.
    As you know Enterprise Service is implemented on ECC, it always requires ECC's user/password when I access it.
    Off the top of my head I may use logon ticket, but it does not work well for Enterprise Service.
    I've already done the system configuration to use logon ticket - setting profile parameters of ECC, importing client certification and so on.
    What I tried:
    1. Create Destination at "Web Services Configuration: WS Destination"with following parameters:
      Destination Type: WSDL
      URL: http://<hostname>:<port>/sap/bc/srt/xip/sap/ECC_SALESORDERCRTRC?sap-client=800&wsdl=1.1
      Authentication: HTTP Authentication, Logon Ticket
    2. Try to test ES at "WS Navigator"
      -> When I search ES in destination which I created, the following error occurred:
    Invalid Response Code: (401) Unauthorized. The requested URL was:"http://<hostname>:<port>/sap/bc/srt/xip/sap/ECC_SALESORDERCRTRC?sap-client=800&wsdl=1.1"
    When I changed destination's settings as follows, testing ES at "WS Navigator" succeeded.
      Authentication: HTTP Authentication, User ID/Password(Basic), apply fixed user
    But I'd like to change user who calls ES dynamically, because I want to set the user who creates sales order to Portal logon user.
    Could you give me any advice?
    Ikue

    hi lkue,
    Please see my weblog @ https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/7891. [original link is broken] [original link is broken] [original link is broken]  When you create SM59 HTTP destination, select "send logon ticket" or "logged in user id /password" . This will automatically use logged in user id dynamically.
    Hope it helps you and solves your problem.
    Regards,
    Arul

  • Why do we call an ABAP Runtime error a "Short Dump"

    Hi All,
    I was just working on one of the ABAP runtime errors with my technical counterpart and a question came to my mind "Why do we call an ABAP Runtime error a "Short Dump"?".
    I tried asking a few friends of mine working in the technical space in SAP and they were not able to answer.
    So, some one of you experts help me getting answer to this question.
    Thanks in Advance.
    Nitin.

    ABAP Runtime error is a generalized term .......... meaning the error occured while runtime.
    wheare as short dump.
    Short -  means brief.
    dump - error information from the memory
    Short dumps (also called ABAP memory dumps). Short dumps occur when an ABAP program fails.
    Short dumps provide basic information about which program failed and what the error was.
    hope this helps.

  • SQL script with host command job in Enterprise Manger Grid Control

    I use Enterprise Manger Grid Control 10.2.0.5 and need to create SQL script job on database instance target on unix/linux platform.
    I have problem with os command inside sqlplus script.
    For example for the simple command: SQL> host ls
    I get the message in output log: SQL> SQL> SQL> SQL> SQL> SQL> /bin/bash: ls: command not found
    Can anyone help me?
    Thank you.

    Hi,
    Make sure you have granted all necessary rights (log on as a batch job etc.) to the user used in the prefered credentials.
    Cheers,
    Kenneth

  • Why ProfileAdapterRepository is called so? where is the Adapter in it?

    Does anyone know why ProfileAdapterRepository is called so. You won't see the word Adapter in any other repository name. Do we have an implementation of adapter pattern in ProfileRepository?
    /atg/commerce/claimable/ClaimableRepository
    /atg/commerce/inventory/InventoryRepository
    /atg/commerce/invoice/InvoiceRepository
    /atg/commerce/order/OrderRepository
    /atg/commerce/order/processor/AddOrderToRepository
    /atg/content/media/MediaRepository
    /atg/dynamo/security/AdminSqlRepository
    /atg/dynamo/service/jdbc/SDSRepository
    /atg/dynamo/service/jdbc/SQLRepository
    /atg/dynamo/templates/HTMLRepository
    /atg/dynamo/templates/XMLRepository
    /atg/multisite/SiteRepository
    /atg/sitemap/SitemapRepository
    /atg/userprofiling/PersonalizationRepository
    /atg/userprofiling/Profile*Adapter*Repository

    Sanju,
    in ATG, you can maintain separate profile repositories for external and internal users. There are separate repository definition files for internal users and external users. The external profiles are stored in the /atg/userprofiling/ProfileAdapterRepository, defined by the userProfile.xml file located in <ATG10dir>\DPS\config\profile.jar. Internal profiles are stored in the /atg/userprofiling/InternalProfileRepository, defined by the internalUserProfile.xml file in <ATG10dir>\DPS\InternalUsers\config\config.jar.
    Other repositories will not be having different categories within them. for example for inventory we do not have sub types and hence the generic term InventoryRepository. In case of profile to identify whether it is an external profile repository or internal profile repository we have additional attribute attached to the name of the repository.
    Also since Repository concept is basically built on Adapter design pattern we see this Adapter in ProfileAdapterRepository instead of something like ExternalProfileRepository

  • Why Windows server 2003 enterprise edi is the recommended OS for Netweaver?

    Hi All,
    I am in a client discussion stage and the client is a huge enterprise going for SAP installation.
    In order to implement SAP Netweaver 2004 S, the recommended OS is Windows Server 2003 Enterprise Edition?
    I need to be equipped about the difference feature wise between Enterprise and Standard Edition.
    Any kind of help is really appreciated.
    It is a bit urgent.
    So Tribe please come together and help me out.
    Points will be rewarded for the timely help.
    Thanks
    Anila

    why not have a look yourself
    -> http://technet.microsoft.com/en-us/windowsserver/bb294403.aspx
    as you might see, the standard edition of win2k3 only supports up to 4 gb of ram, 4 cpus and it seems that there will be not 64bit edition...so, these might be some reasons, why sap recommends the enterprise edition
    GreetZ, AH

  • Why are regional calls not in Five Cents plan, but instead are 21 cents/min.?

    Why are "regional calls" not included in Five Cents/minute calling plan, but instead billed at 21 cents/minute !??!
    "Local" calls are 9 cents/Call, everywhere else in the U.S. It is 5 cents/minute on the plan.  So regional calls are much more expensive than calls to Hawaii!!
    Also how do I find what is the "regional" area (for Manhattan, New York City), and what is the "local" area?  Is there a link  somewhere on the Verizon site to enable finding your own regional area versus local or long distance?

    Sorry you are having difficulty, an agent with access to your account will reach out to you directly by email, private message in the Forums and/or the billing telephone number on your Verizon account for more information to help you resolve your issue.Please remember to check your spam/junk folder if you do not hear from an agent.

  • Why is the call history time on the printout different than the phone?

    Why is the call history time on the printout different than the phone?

    How much different is it? A minute or two??
    Calls are triggered the minute you hit send, not answered. And the same when ending a call. So if off a minute or two for a call that is why.

Maybe you are looking for

  • An error occurred while trying to provision the service 'Discussions'.

    Hi All I initially got the error Failed to authenticate user when accessing the discussion and Announcement services within WebCenter. I subsequently configured WS Security by providing the required keystore as indicated in this tutorial: http://e20t

  • Problems with Pitch-Shifting in GarageBand 10.0.1

    I'm trying to reconstruct a song by showing the sample source, then showing its progression by pitch-shifting it to the point where its sound matches with the song that samples it (e.g., the YouTube tutorials on the "Shook Ones, Pt. II" and "Ice Crea

  • Weblogic leaves in-doubt transaction on Oracle when it fails

    Hi, I'm looking at resilience with our Weblogic (6.1sp2) and Oracle (8.1.7) environment, and have been doing a few tests. We're using the Oracle OCI (thick) driver, in "XA" mode (i.e. using the "Driver" oracle.jdbc.xa.client.OracleXADataSource). We n

  • USB CD is not available immediately when WinPE loads

    Short Version:  Is there a way to impose a delay so my USB 3.0 DVD drive can get ready before WinPE gives up and I get the "Unable to read task sequence configuration disk?"  It seems to be a timing issue, because it does work sometimes.  Other times

  • How do I open an iview in a FULL pop up window

    I am trying to open an iview in a new window, and I want to display this new window in full page. I tried "FULL_PAGE" in the drop down option for Height Type. But it didn't work. I know that you can display the pop window in a full screen mode in "Wi