HELP -- Tim Tow, one more query. Deployment Server.

Sir, I have made cluster on single analytic server also, by putting two copies of same app. on one analytic server in a cluster.(i.e. Only one analytic server is used to cluster 2 applications). Still failover support is not tested. For client, in my lab I used Deployment Server console to connect to deployment server,(i.e. application was taken offline using deployment console.Is it correct way to test failover support. I did not used spreadsheets.Pls. suggest where I have mistaken.Thank You,Ravinder.

Still failover support is not tested.<<I would probably test it by:1. setting up a test with 2 Essbase Spreadsheet Services clients; write a simple macro that does 10000 retrieves in a loop.2. confirm that the both applications in the cluster are being used when the macros are running.3. go into app mgr (or eas) and take one of your apps in the cluster 'offline' (ex. uncheck 'Allow Commands' and 'Allow Connects').4. see if your macros continue to function vs the one database in the cluster still enabled.BTW, it has been years since I have done this; we had to do something like this when we earned the 'Platinum' Certification for our ActiveOLAP for Essbase product from Hyperion.Tim TowApplied OLAP, Inc

Similar Messages

  • Essbase Server and Deployment Server on different boxes

    Hi,We're currently testing Hyperion Essbase 7.1.2 and we were wondering if it was possible to have the Essbase (Analytic) Server on one machine and Deployment Server on a different one. At first sight, it seemed so, so we did just that.Now, we'd like to test our setup by signing on through the ESS command line prompt (on the Deployment Server machine) but seem to miss something since the connection ("signon") is refused. The funny thing is that on the machine on which the Essbase Server is installed, we've also installed the Administration Services: through the Administration Console, we can indeed connect to the Deployment Server and interact with it.So my first question is: is our setup possible (that is, having the Deployment and Essbase servers on distinct boxes)?If so, what is the meaning of all the parameters needed for the "signon" command of the ESS command line prompt?Any guidance would be greatly appreciated.Thanks,A. Lepage

    Yes, you can configure it that way and we have many customers with that setup.You have to login to the EDS console the first time using the 'default' admin username/password (system/password) and setup a username, with admin privileges, that also is on your Essbase server. Logout, then login with the 'real' username. Select the domain object ('essbase at the top of the tree'), right mouse click and add an analytic server. Type in the name of your Essbase server and it should be added (and you should be able to browse objects on the Essbase server). Finally, select the server, right mouse click and 'sync security'.Tim TowApplied OLAP, Inc

  • Help with a simple XMLTable query

    Newbie Oracle XML developer here and need a little guidance on how to retrieve multiple records in an xmltype table using xmltable.
    My document in the xmltype table looks like this:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <echoems:ECHOMetrics xmlns:echoems="http://myURL/myFilename.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://myURL/myFilename.xsd
    http://myURL/myFilename.xsd">
    <OrderMetrics>
    <OrderItemMetric>
    <requestor>user1</requestor>
    <product>123</product>
    </OrderItemMetric>
    <OrderItemMetric>
    <requestor>0.0.0.0</requestor>
    <product>ABC</product>
    </OrderItemMetric>
    <OrderItemMetric>
    <requestor>user3</requestor>
    <product>XYZ</product>
    </OrderItemMetric>
    </OrderMetrics>
    </echoems:ECHOMetrics>
    I want to get all the products:
    Product
    123
    ABC
    XYZ
    I know to use XMLTable but am not sure how exactly to write it. If just one record, the following worked fine:
    select extractvalue
    (object_value,
    'echoems:ECHOMetrics/OrderMetrics/OrderItemMetric/product',
    'xmlns:echoems="http://myURL/myFilename.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'
    ) object_value
    from echoXML;
    But with multiple records, I'm trying XMLTable but can't get it right. Trying something like this:
    select m.product
    from echoXML3
    xmlTable(
    (object_value,'echoems:ECHOMetrics/OrderMetrics/OrderItemMetric/*','xmlns:echoems="http://myURL/myFilename.xsd')
    passing object_value
    COLUMNS
    product varchar2(85) path 'product') m;
    Thanks in advance for any help on this.

    One more question. Instead of putting the xml doc in the query, how do I reference it from the xmlType table?
    You have:
    select *
    from xmltable
    '//OrderMetrics/OrderItemMetric'
    passing xmltype(
    '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <echoems:ECHOMetrics xmlns:echoems="http://myURL/myFilename.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://myURL/myFilename.xsd">
    <OrderMetrics>
    <OrderItemMetric>
    <requestor>user1</requestor>
    <product>123</product>
    </OrderItemMetric>
    <OrderItemMetric>
    <requestor>0.0.0.0</requestor>
    <product>ABC</product>
    </OrderItemMetric>
    <OrderItemMetric>
    <requestor>user3</requestor>
    <product>XYZ</product>
    </OrderItemMetric>
    </OrderMetrics>
    </echoems:ECHOMetrics>')
    columns
    prod varchar2(20) path 'product',
    requestor varchar(50) path 'requestor'
    However, the xmlDocument is already in an xmlType table called echoXML3 based on the xsd. I'm just trying to query it to get a relational result set. How, in the query above, do I replace the hardcoded xmlDoc with the xmlDoc located in my xmlType table?
    I thought maybe something like this but it's not working:
    select *
    from xmltable
    '//OrderMetrics/OrderItemMetric'
    passing xmltype(select value(e)
    from echoXML3,
    TABLE(xmlsequence(extract(object_value,'echoems:ECHOMetrics/OrderMetrics/OrderItemMetric/*','xmlns:echoems="http://myURL/myFilename.xsd'))) e)
    columns
    prod varchar2(20) path 'product',
    requestor varchar(50) path 'requestor'
    Message was edited by:
    user619814

  • Deployment Server and Essbase Server on different boxes

    Hi,We're currently testing Hyperion Essbase 7.1.2 and we were wondering if it was possible to have the Essbase (Analytic) Server on one machine and Deployment Server on a different one. At first sight, it seemed so, so we did just that.Now, we'd like to test our setup by signing on through the ESS command line prompt (on the Deployment Server machine) but seem to miss something since the connection ("signon") is refused. The funny thing is that on the machine on which the Essbase Server is installed, we've also installed the Administration Services: through the Administration Console, we can indeed connect to the Deployment Server and interact with it.So my first question is: is our setup possible (that is, having the Deployment and Essbase servers on distinct boxes)?If so, what is the meaning of all the parameters needed for the "signon" command of the ESS command line prompt?Any guidance would be greatly appreciated.Thanks,A. Lepage

    I am running Essbase on one Windows server and EAS, EDS, ESS, and EIS on another. Did you create the Analytic Server in EDS and then Sync Security?

  • Revised - Deployment server problem   HELP!!

    Hi,Pls. tell me how to implement failover support using deployment services:I have following s/w:1) One Analytic Server & Admin Console & Spreadsheet services.2) Deployment Server( Without LIcense Key) & console.3) I have made connection pool & assigned a cluster to it.4)Cluster consist of two copies of sample/basic application.4)Admin Console is able to connect to deploymentserver.5)Deployment Server is able to connect to Analytic Database. 6)Which clients can I use to connect to Deployment Server. & how(Spreadsheets etc.)Any kind of help is most welcomed.Thanks a lot.Ravinder

    First, are you using the 'classic' Excel addin or Essbase Spreadsheet Services? The classic Excel addin is not 'Essbase Deployment Services' aware.Tim TowApplied OLAP, Inc

  • How to Create one more SOA-INFRA under the same domain in weblogic server

    Hi All,
    Can anybody can guide how to create one more soa-infra under the same domain. In order to maintain my composites to be deployed into
    different domains, I need to create one more soa-infra and deployed all the composites under that one.
    Please let me know if any demo is available for this activity to be gets completed.
    Regards,
    CH

    Hi Vijay,
    There are several composites which needs to be deployed and maintained in the server. So, we I'm trying to maintian
    by deploying composites into 3 different SOA-INFRA's so if one is not accessible, we can look into it and others can access the
    composites from another SOA-INFRA instead of creating domains.
    Let me know what will be feasible way to perform this activity.
    Regards,
    CH

  • This morning i tried to restore my ipod and it said:"the ipod "ipod cannot be restored at this time because the ipod software update server could not be contacted or is temporarily unavalible." i have no idea what to do and i need help

    this morning i tried to restore my ipod and it said:"the ipod "ipod cannot be restored at this time because the ipod software update server could not be contacted or is temporarily unavalible." i have no idea what to do and i need help.

    Update Server
    Try:
    - Powering off and then back on your router.
    - iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    - Change the DNS to either Google's or Open DNS servers
    Public DNS — Google Developers
    OpenDNS IP Addresses
    - For one user uninstalling/reinstalling iTunes resolved the problem
    - Try on another computer/network
    - Wait if it is an Apple problem

  • I have to pay one more time!

    Hi!
    I have bought the album called "Disc-Overy" from Tinie Tempah. I did reset my iPhone and set it up as a new iPhone. I also synced with another iTunes library. Now iTunes ask me to pay for the album again! I aldo bought the ringtone called "Levels" of Avicii and I have to pay for that one more time too!
    And when it comes to app. I downloaded iCopter from appstore. I bought the pro version in-app and when i try to do the same again with this newly setup iPhone I also have to pay for this one more time! Please help me!

    I've had the same problem with the albums when switching iPhones.
    Usually when you click purchase in the app- or itunes store it will start the download but will then give you the message: "You've already bought this item, do you want to download it again?". In that case you won't be charged twice, but in my expirience that won't show up untill you're willing to make the purchase.
    Best thing would be to just sync the new iPhone with iTunes if that already contains your purchased apps, books and music.

  • QA: Designer's operation to Add one more Field to display in Query Result Web Part

    QUESTION ABOUT Query Result Web Part presentation +1 Field
    I'd be looking at a property of Web Part to look up Discussion Board through Query Result Web Part. Currently it displays 'Title' column of Discussion Board, and my caring requirement is presentation customization to hold double
    columns of 'Title'+'Updated Date'. How could I add one more field 'Updated Date' to display in addition to that preexisting 'Title' field?
    Any procedural steps to realize how to add Filed to display in Query Result Web Part?

    Hi Yoshihiro,
    As I understand, you want to add the field to display in Query Result Web Part in SharePoint 2013.
    Which web part does you use? Content query web part or search results web part?
    If you use search results web part, you could edit the discussion board result template and add the updated field in the template.
    You could go to Design Manager: Edit Display Templates (site setting-> look and feel->design manager->edit display template), download the Discussion Item.htm file, and edit the file. 
    After editing, upload the file.
    The articles below are about how to modify an existing Display Template in SharePoint 2013.
    http://www.learningsharepoint.com/2012/09/17/sharepoint-2013-the-new-display-templates-for-styling-your-content/
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2013/08/01/sharepoint-2013-customize-display-template-for-content-by-search-web-part-cswp-part-1.aspx
     If you use content query web part, you could edit the content query web part, in the Property Mappings section select the “Change the mapping of managed”, and add the “modifiedOWSDATE” (it means the last modified date) in the line, after
    that you could see the update date under the title.
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album :)?

    How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album, i want them in the camera roll ?

    How can I delete EVERY THING off my Mac and have it like new?
    Boot from the software install DVD and do an "erase and install" when prompted.

  • How to create one more server node for SAP J2EE server?

    Hi,
    Can any one please suggest how to create one more server node for SAP J2EE server? I am using WAS700.
    Thanks and Regards,
    Smriti.

    Hai,
          Login into the Configtool(C:\usr\sap\SID\DVEBMGS<inst no>\j2ee\configtool) if ABAP+JAVA stack or C:\usr\sap\SID\JC<inst no>\j2ee\configtool) if JAVA stack
    click on the instance and and select the addserver button on the top to create a servernode for J2EE server.
    Thanks and Regards,

  • I transferred photos fr laptop to iPad. When I transferred more, the ones fr before were gone. This happened every time I added more. How can I save them on my iPad?

    When I transferred photos fr my laptop to iPad, the photos put on the iPad before, we're gone. this happened every time I put more on. How can I stop this happening and save the photos on my iPad?

    Since this is not icloud related, I suggest you post over in the iTunes forums.  Or the iPhoto forum if that is what you are using, or the Aperture forum (these two are for mac users).
    It would also help if you tell us whether the laptop is mac or pc.

  • HT201210 (The iPhone "Named" cannot be restored at this time because the iPhone software update server could not be contacted or is temporarily unavailable.) can anyone help me with this issue, every time i try to restore it will come up like this error m

    (The iPhone "Named" cannot be restored at this time because the iPhone software update server could not be contacted or is temporarily unavailable.)
    can anyone help me with this issue, every time i try to restore it will come up like this error message.

    Restore the iPhone when connected to iTunes by cable.
    Still the same TS1275?
    Is your iPhone jailbroken?
    Or
    Has your computer ever been used to jailbrake or downgrade (Tinyumbrella) any iPhone?

  • Windows Server 2012 "standard" or "datacenter" as a Deployment Server, which one??

    As the question states. I am Certified ESDT/EDA (MCITP), MCSA Windows 7, working on my Windows Server 2008 MCSA. We are hybrid, Novel/Windows environment and make our move to Windows, so my actual work with a windows environment (other then Desktop
    support) is limited.  I have been tasked with building a Deployment Server, we have Windows Server 2008R2, but I requested Windows Server 2012R2, (only because it is the latest, greatest), most current version.  I have "not" done much "hands
    on", all my experience has been down in Virtual Environment, (at home).  So which would be the best version to use as a deployment server, our network administrator as provided me with a 6 Terabyte server for imaging, (we are 'finally' moving
    away from Novell "zenworks").   Any assistance, additional information would be appreciated.  
    Christopher Espinoza MCDST(XP), MCITP(Win7)

    As Muhammad says, with WS2012 or WS2012R2, there is no feature/functional difference between STD or DC editions (the difference is only related to the virtualisation rights).
    For setting up deployment services, MDT is generally recommended, as MDT organises and glues together the native/raw features for you:
    http://technet.microsoft.com/en-US/windows/dn475741.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • HT4059 I currently use ibooks on my iphone 4s... I want to be able to send several pdf documents at the same time in one email, I thought there was a way to do this?  Can you help please?

    I currently use ibooks on my iphone 4s... I want to be able to send several documents at the same time in one email, I thought there was a way to do this?  Can you please help?

    Install ClamXav and run a scan with that. It should pick up any trojans.   
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

Maybe you are looking for

  • Re: Tecra M11 cannot access the BIOS

    I have a brand new Tacra M11-11L machine. I have set a password on the BIOS but cannot now access it at all. When I switch it on I get the Toshiba splash screen, i press the escape key and am presented with a little note saying "F2 for Setup". I pres

  • Limited Connectivity after logging into wireless network?

    I have a questions in regards to logging into my wireless network from laptop. From laptop I experienced a connection but a "LIMITED CONNECTIVITY?"   In other words a connection was confirmed but unsuccessful, it says? How do I fix? Thnx!   

  • Maximum number of contract accounts in IS-U per businesspartner

    Hello, i've got a question about contract accounts in IS-U. To delimit the range where a report is looking for contract accounts in IS-U. I need to know how many contract accounts are allowed per businesspartner. Is there any one who knows the answer

  • Canon LBP 3000

    Unfortunately, Leopard has broken my printer driver, and I can no longer print. I suppose that I have to wait for the updated driver from Canon. Warning! Keep Tiger close to hand for the time being.

  • Google recognizes my website, Yahoo doesn't -- what happened ?

    I launched my site recently (created in iweb 06), and followed a tutorial about getting it into search engines. It comes up fine on google, but is no where to be found on yahoo (yet i submitted URL at same time - a few months ago)...any idea why it's