Two Essbase instances vs two applications

Hi,I am trying to determine which would be better from a performance perspective:I have to create two applications in Essbase and I have one windows 2000 server. Is it better:a. to run two instances of Essbase on the same windows 2000 server with one application running on each instance orb. to run 1 instance of Essbase on the windows server and run both applications in that instanceThanks

It depends on the version of Essbase you are using. If you are on 6.2 or above, you can change the default listening port for the Essbase agent and application server processes, which allows you to have multiple instances on the same box.An easier way to run multiple servers on one box might be to use technology like VM Ware or Microsoft Virtual PC - they allow you to create a virtual machine which can have its own Essbase install, with your production Essbase environment running on the "base" OS.RegardsJade-------------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

Similar Messages

  • Two Instances of Oracle Application Server 10.1.3.x using the same DB

    I can't seem to find any documentation about installing two instances of Oracle Application Server 10.1.3.x using the same database.
    Would the two instances conflict? Should I create a separate database for each instance? I am attempting to cluster two application servers and I want to know if I will need multiple databases, I can't see a reason why this would be a problem.
    Any advice on this matter would be appreciated.

    You have probably downloaded the wrong version.
    Do not download the Oracle SOA Suite 10g (10.1.3.5.1) for WebLogic Server (10.3.1),
    but the one below that option: Oracle SOA Suite 10g (10.1.3.x)
    See if you get something like the following zip file: soa_windows_x86_101310_disk1.zip
    This is just the OC4J without the WebLogic Server.

  • Two Application Server Instances on one Soalris Machine

    Hi,
    I've two Application Server Instances, 9.0.2 and 9.0.4 on one Solaris box. Can anybody tell me how I can change the port number of the Oracle Enterprise Manager?

    IN part because the host and port information is threaded in a LOT of different files. And, if you are farming, some of those files are inside the repository database.
    This was partially addressed in the Oracle AppServer 10g R1 (9.0.4) - using the 'change' scripts.

  • Prevent two instances of an application running simultaneously

    Hi,
    This is the code which I use to prevent two instances of an application running simultaneously.
    public void init()
              new Thread(new Runnable() {
                   public void run() {
                   try
                        ServerSocket socket = new ServerSocket(9876);
                        socket.accept();
                   catch (Exception ex)
                       // already running
                        System.out.println("Socket Exception"+ex);
                       System.exit(0);
                   }}).start();
    }This code is not working for mac. Please help with a solution/alternative.
    Regards,
    Rony

    codingMonkey wrote:
    If this is an applet, at least call super.init() in your init() method, though it would probably be better to rename the method.Aside from the fact that I hope the applet is signed, or he can't get a socket of any kind anyway. And it makes the calling of accept that much worse, as now he is opening a port to a client machine (unbeknownst to the user).

  • How to combine two applications with different workspaces in APEX

    Hi,
    Can anyone help out in merging two applications with different workspaces in APEX 3.2 ?
    Thanks in advance,

    Hello Satya,
    >> I am Satya …
    Please take one more step to help us and update your forum handle to something friendlier than user123… Thanks.
    >> Can anyone help out in merging two applications with different workspaces in APEX 3.2 ?
    This is not a trivial task.
    You didn’t mentioned if both workspaces sharing the same APEX instance, or they are on two different instances (machines). I believe the latter is a pre-condition to a success.
    First you need to remember that importing an APEX component, like a single page, is possible only to the same application that it was exported from. This is still valid if you have the same workspace on two separate APEX instances – one is an import of the other (which makes it an identical copy). Still, the application ID must be the same, or you’ll get the following error: “This page was exported from a different application or from an application in different workspace. Page cannot be installed in this application.”
    You can’t simply manipulating the export file, if the two workspaces are sharing the same APEX instance, as all workspaces on the same instance shares the same APEX metadata files, and you’ll receive a “unique constraint violated” error messages. That means you can’t import one application into the workspace of the other, even if you are using a different application ID.
    As far as I can see, the only viable way of doing an application merge is to have two identical workspaces, on two separate APEX instances. The two applications should share the same application ID, although this parameter can be changed in the import file. You should export the page in one application – on the first instance – and import it into the other application – on the second instance.
    You should also make sure that the exported page ID doesn’t exist on the target application, otherwise it will be replaced by the new imported page. Also, if the imported page include references to shared components that are not defined on the second application, it might also pose a problem.
    As I said, this is not trivial. The benefits are mostly depend on the amount and complexity of the pages you want to merge. If they are not many, and simple, you should consider just re-creating them on the target application. If they are very complex, the merge might fail anyway.
    Regards,
    Arie.
    Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.

  • How to exchange a java object  between two applications using web service?

    Hi,
    I am working with Eclipse 3.2 and the application server is weblogic 10.
    I have two applications, each one works in an instance of the server.
    The first application contains a method called "send " which return a java object.
    The second one contains a method called "receive" which must receive this object.
    The two applications must exchange the object using web service,
    Can you help me please?
    Thanks.

    Have you defined your service class/methods accepting, or returning, the appropriate objects? If so, does the generated WSDL appear to be correct? I have just completed a web service project and found that passing specific objects to be simple, however, I was passing objects which were simply container objects with bean characteristics. Also, might I suggest that you have a play with netbeans. I found that IDE to be great for creating and consuming web services!

  • One iPlanet using two application servers?

    Can anyone help, is it possible for one iplanet 6.0 instance using/connecting two application servers (i.e. one is JRun server, another is Webspere server) at the same time?
    If so, how to do it?

    I don't see why not. I have had the same webserver talking to both iplanet 6.5 and sunOne 7. As both the application servers will connect vias a plugin I would suggest you follow the instructions for both application servers and see what happens.

  • Two applications wants to read on the same port using Socket

    I have an application running on one machine using TCP/IP socket. The data transfer with the other application on other machine is in ASCII.
    Now I want a new application that can have a copy of data received and sent on the given port, where the previous application is running.
    Is it possible in Java using socket and TCP/IP to have two application reading data from the same port and both can read all the data.

    Even when you don't state the type of app which need to read the data stream (is it a server or a client app???), it's impossible to share a single TCP/IP socket among multiple apps.
    Perhaps the best thing to do is to develop something like a proxy server who listens on the nominated port and provides to contact (if your apps are server ones) or to be contacted (if your apps are client ones) by the desired apps.
    This way, the only job for the proxy is to duplicate the contents of the data stream and make them available to all the apps engaged.
    Hope this helps.

  • Windows 8.1 64 bit machine, search charm shows two application shortcut

    We have Windows 8.1 64 bit machine.
    We installed a application and found working it properly. 
    If we click on Windows button and search application description
    then, we noticed search charm shows two application short-cuts.
    1. Right click on first short-cut pointing to multiple options like - Pin to start, taskbar, uninstall, file location path, etc and after click on any menu item it works successfully. Even file location shows proper 'program files' folder.
    2. Right click on second short-cut does not give any option. But, after click on this short-cut application launches successfully.
    Also, after uninstall of this application. We found the second short-cut still exist.
    We searched through complete registry and did not found any reference of the same application. Even 'program files' folder got cleaned, too.
    But, click on second icon in the search charm we got an error - 
    "Windows cannot find C:\Users\Username\AppData\Local\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy\LocalState\Indexed\Settings\en-US\NameSpace_Classic_{940B1CC9-013F-468Ee-BBBF-4A975461F120}.settingcontent-ms"
    Make sure you typed name correctly, and then try again."
    where 
    The above file was present when application was installed and after uninstall above file got deleted.
    But, the short-cut still exists. 
    Please let me know how we remove this second short-cut while installation. The same application installation does not show this kind of behaviour on other OS's.  
    Thanks - Shashi

    Windows 8 issues must be discussed in the appropriate Windows 8 forum found @
    http://social.technet.microsoft.com/Forums/windows/en-US/home?category=w8itpro
    This is a Windows 7 forum for discussing Windows 7 issues.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • I've lost two application windows -- how do I get them back?

    I can't access two application windows -- Mail and Spotlight. I sometimes use a external monitor so this may be related to that.
    When I switch to Mail, the Mail menu appears on top, but I do not see the window with my mailboxes in it. When I use Expose to see all the open windows, there's my Mail window, in light purple. I click on it, to select it, and the window zoooms away to the left, never to be seen again. The top menu indicates that I'm in Mail.
    The same thing happens to me with Spotlight. I can search in Spotlight, but the results are in an inaccessible window that zooms away when I try to select it in Expose.
    Plugging in an external monitor again does not retrieve the window, regardless of whether I mirror the displays or not. After searching these forums, I tried changing the screen resolution to 640x480 instead of 1024x768 but that didn't help. I looked in Library/Preferences to see if I could trash some preferences, but neither application seems to have any, that I know how to identify.
    Any help would be greatly appreciated.

    Just in case this comes up for anyone else... I got the windows BACK by hooking my computer up to the external monitor, and REVERSING the arrangement of the monitors (so the one that was on the left was on the right, and vice versa). This placed the window in my field of view and I was able to retrieve it.

  • How can we launch the labview screen beyond other screens while running two applications on a same time

    Hi all,
     I need to run two applications in my system at same time. one of the application is labview. it is running in backside. the dialog boxes which i created in labveiew need to display in fron of all applications.... what should i do to do that.....any suggestions...
    thanks in advance
    Regards,
    Ragu 

    The easiest thing to do (but can be bad) is to make the LabVIEW window modal.  This will make it the front most window at all times, until the program stops executing.  As you can imagine if you don't have a way to close the window then you will be forced to kill LabVIEW through the taskmanager.
    To make window modal go to VI Properties (by right clicking the VI's icon) go to Window Appearance, click Customize, then under Window Behavior select Modal.
    The other more complicated solution is to use Dll calls to bring the window to the front.
    Message Edited by Hooovahh on 07-02-2009 08:44 AM
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Navigation between  two applications under a single webdynpro project

    Hi All,
    Here i needs to work with a webdynpro project which has two application which needs navigation one view form the first application to one view in the next application. I have already tried with "EXIT URL" concept and its working fine. Is there any alternative way to accomplish that task. I am looking for valuable reply from you.
    Regards
    Ravi

    Hi Ravi..
    Try this link..
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/webdynpro/wd%20java/wd%20tutorials/inter-application-navigation%20in%20web%20dynpro.pdf">Application Navigation</a>
    Urs GS

  • Splitting Emergency Address and Family Details into two application

    Hi All,
    I need a help to figure out how it can be achieved. We are having Ess_family_US application which will allow us to enter the details for all the subtypes we have entered in the backend Table. Now my client is asking to Split the application  into two applications  as:
    1. Emergency Contact
    2. Family details.
    As they want these applications to be placed in different sections of ESS Overview Screen. More Specificly  if i enter Emergency Details it should display and provide editing provision  only for Emergency Contacts. In the same way for Family Details also.
    Can any one guide me on this how we can approach and resolve it.
    Thanks
    Ravi Sunkara

    Hi,
    It can be possible thru Dynamic XSS Homepages with Static Services
    for this you need to create the Dynamic XSS homepage ....
    Following is the best document for this
    Create Dynamic XSS Homepages with Static Services Using a Simple Proxy Class
    /people/amir.madani/blog/2007/01/05/create-dynamic-xss-homepages-with-static-services-using-a-simple-proxy-class

  • Why is my through put better with two applications than one application?

    I have two functions, acquire data and write date to database.  If I divide these two functions into two applications run under one project, my through put is 100 Hz; but if put both function into one application my through put 10 Hz.

    Code woudl help. Without it we would be shooting in the dark as to what your issue is.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • How to integrate two applications in wda.

    Hi experts ,
    I have two applications in WDA .
    I would like to integrate these two applications in the third one.
    And wants to run third application so that i can see first and second applications view. How can I achieve it.
    Thanks .

    You can easily embedded one Web Dynpro component within another.  This is exactly what you are doing when you use ALV.  You can do the same thing with your components.  I suggest that you start be reading the help section on cross component usage:
    [http://help.sap.com/saphelp_nw70/helpdata/EN/a7/1d8b412bb5b35fe10000000a1550b0/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/EN/a7/1d8b412bb5b35fe10000000a1550b0/frameset.htm]
    At the risk of a little self promotion, the topic of component reuse and embedding is a central topic of the Web Dynpro ABAP sections of the SAP Press Book - Next Generation ABAP Development.

Maybe you are looking for