Essbase Services is consuming excessive resource

Hello,
We are using, believe it or not, Essbase version 6.5.7.5038 and seeing Windows Service Performance Issues. *Alert description: The 'Essbase Service' service on computer [SEVERNAME] is consuming excessive resource*
We didn't see the problem on the server until we had upgraded to version 6.5.7 from version 6.0.
Does anyone know how we can resolve this issue? We will upgrade to System 9 early next year but at this time we are not going to do the upgrade.
Thanks

Thanks for the response Jason....
Answer to your question:
Has anything else about the system changed, besides just upgrading from version 6.0 to 6.5?
A - Yes, the whole system. We moved the Essbase database from one server to a larger new server.
Does the problem only come up after the system has been running for a certain amount of time, or right away?
A - Server running for a week at minimum and the problem seems to occur mostly at night when we load new data and re-calc the cubes.
How much memory is on the server?
A - 8GB
Is there any other information about what type of resource it is that's being consumed?
There are 4 dual processors running on the box but it seems essbase only uses one at a time to process a task.
Is your server still functioning correctly as an Essbase server, prior to the error messages coming up,
or are some of the numbers off these days?
A - Server running for a week at minimum before the problem comes up. We then reboot and that seems to clear it for a while. The member useage seems to be high on the box but we will need to confirm if it get's release after the re-boot.
As for your comments regarding member names with periods in them needed to be quoted in calc scripts and such. That is something I'll need to look into. I know we have some
members with periods but I'm not sure if any of them are referenced in a calc script.
Regards.
Leo

Similar Messages

  • Firefox 18.0.1 consuming excessive CPU--both in Standard and Safe Mode--when accessing Gmail

    Firefox 18.0.1 consumes excessive CPU--both in Standard and Safe Modes--when accessing Gmail (in Standard Mode). CPU consumption averages around 56% on my dual-CPU, Windows 7 desktop.
    The only way to stop this from happening it to open Gmail in "HTML" mode. When I open Gmail in Standard mode, a "Loading..." status shows at the top of the page. After about 30 seconds, a error window pops-up within the Gmail page saying that there is a performance problem and provides the option to load Gmail in a limited, "HTML" mode. Clicking the HTML Mode link solves the issue. I've been using Firefox for years and have never seen this issue until now.

    try this link
    *https://support.mozilla.org/en-US/kb/firefox-uses-too-many-cpu-resources-how-fix

  • Create MII transaction & MII Web Service and consume them in ABAP

    Hi,
    there is a document from Pradip Ray (SAP Labs India) published on SDN:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/208239ac-3161-2b10-f29a-abec6754942e
    He explains how to build a transaction in MII, expose it as a web service then consume it in an ABAP program by generating a ABAP consumer proxy for this service.
    I have done this and it works but the problems started when I tried to generate a second ABAP consumer proxy for a second web service build in MII.
    In the ABAP system , transaction SE80 then display proxy class:  ( e.g. ZMIICO_XACUTE_WSSOAP )
    then go to Properties tab , under sub-screen "External key" you can see the "Name: XacuteWSSoap".
    This is the web service port type name generated at MII and is always the same for all the MII web services. When you try to generate a second proxy for a second MII web service you get the following message  "A proxy already exists for object XacuteWSSoap (namespace http://www.sap.com/xMII) "
    This can be changed by editing the WSDL file but then another problem occurs which is related to the "InputParams" complex type. This tag gets generated with the same name for all the web services in MII.  The generation of the ABAP structure with the following name: INPUT_PARAMS will override the previous one .  This means that the previous ABAP proxy will not work anymore.
    Has any one experimented this ?
    Daryoush Delgari.
    This is the generated WSDL on MII:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <definitions targetNamespace="http://www.sap.com/xMII" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://www.sap.com/xMII" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    - <!--  Types
      -->
    - <types>
    - <s:schema elementFormDefault="qualified" targetNamespace="http://www.sap.com/xMII">
    + <s:complexType name="InputParams">
    - <s:sequence id="InputSequence">
      <s:element maxOccurs="1" minOccurs="0" name="FromDate" type="s:string" />
      <s:element maxOccurs="1" minOccurs="0" name="PLANT" type="s:string" />
      <s:element maxOccurs="1" minOccurs="0" name="ToDate" type="s:string" />
      </s:sequence>
      </s:complexType>
    - <s:element name="XacuteRequest">
    - <s:complexType>
    - <s:sequence>
      <s:element maxOccurs="1" minOccurs="0" name="LoginName" type="s:string" />
      <s:element maxOccurs="1" minOccurs="0" name="LoginPassword" type="s:string" />
      <s:element maxOccurs="1" minOccurs="0" name="InputParams" type="s0:InputParams" />
      </s:sequence>
      </s:complexType>
      </s:element>
    - <s:complexType name="Rowset">
    - <s:sequence>
      <s:element maxOccurs="unbounded" minOccurs="0" name="Row" type="s0:Row" />
      </s:sequence>
      <s:attribute name="Message" type="s:string" />
      </s:complexType>
    - <s:complexType name="Row">
    - <s:sequence id="RowSequence">
      <s:element maxOccurs="1" minOccurs="1" name="Day" type="s:string" />
      <s:element maxOccurs="1" minOccurs="1" name="Item" type="s:string" />
      <s:element maxOccurs="1" minOccurs="1" name="Resource" type="s:string" />
      <s:element maxOccurs="1" minOccurs="1" name="WorkCenter" type="s:string" />
      <s:element maxOccurs="1" minOccurs="1" name="ShopOrder" type="s:string" />
      <s:element maxOccurs="1" minOccurs="1" name="OrderQty" type="s:long" />
      <s:element maxOccurs="1" minOccurs="1" name="Cured" type="s:long" />
      </s:sequence>
      </s:complexType>
    - <s:element name="XacuteResponse">
    - <s:complexType>
    + <s:sequence>
      <s:element maxOccurs="1" minOccurs="0" name="Rowset" type="s0:Rowset" />
      </s:sequence>
      </s:complexType>
      </s:element>
      </s:schema>
      </types>
    - <!--  Messages
      -->
    - <message name="XacuteSoapIn">
      <part element="s0:XacuteRequest" name="parameters" />
      </message>
    - <message name="XacuteSoapOut">
      <part element="s0:XacuteResponse" name="parameters" />
      </message>
    - <!--  Ports
      -->
    - <portType name="XacuteWSSoap">
    - <operation name="Xacute">
      <input message="s0:XacuteSoapIn" />
      <output message="s0:XacuteSoapOut" />
      </operation>
      </portType>
    - <!--  Bindings
      -->
    - <binding name="XacuteWSSoap" type="s0:XacuteWSSoap">
      <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="Xacute">
      <soap:operation soapAction="http://www.sap.com/xMII" style="document" />
    - <input>
      <soap:body use="literal" />
      </input>
    - <output>
      <soap:body use="literal" />
      </output>
      </operation>
      </binding>
    - <!--  Service mapping
      -->
    - <service name="XacuteWS">
    - <port binding="s0:XacuteWSSoap" name="XacuteWSSoap">
      <soap:address location="http://<host>:port/XMII/SOAPRunner/Default/Amrik/Wolves/WDPro/getCuresByPeriod" />
      </port>
      </service>
      </definitions>

    Hi Daryoush,
    Little surprise for you, I got the solution ;o)
    In fact, editing the WDSL file, you can change the parameter names which will be generated in Web Dynpro. You have to change the tag <complex type ...>.
    For example :
    <s:complexType name="InputParams">
    Could become :
    <s:complexType name="*Zs1*InputParams">
    and later in the code, you should reference the element appropriately
      <s:element maxOccurs="1" minOccurs="0" name="InputParams" type="s0:InputParams"/>
    should become :
       <s:element maxOccurs="1" minOccurs="0" name="InputParams" type="s0:*Zs1*InputParams"/>
    But take care to keep name="InputParams", it's the xlm name which will be used by MII to do the matching...
    Take care also that you have to do the same for output, that means ROW and ROWSET complex type...
    So, to be concrete, here are an example with in bold everything I changed against the original MII WDL file...
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions targetNamespace="http://www.sap.com/xMII" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://www.sap.com/xMII" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
        <!-- Types -->
        <types>
            <s:schema elementFormDefault="qualified" targetNamespace="http://www.sap.com/xMII">
                <s:complexType name="*Zs1*InputParams">
                    <s:sequence id="InputSequence">
                      <s:element maxOccurs="1" minOccurs="0" name="inputItem" type="s:string"/>
                      <s:element maxOccurs="1" minOccurs="0" name="inputPlant" type="s:string"/>
                      <s:element maxOccurs="1" minOccurs="0" name="inputSearchBy" s:long"/>
                </s:sequence>
                </s:complexType>
                <s:element name="XacuteRequest">
                    <s:complexType>
                        <s:sequence>
                            <s:element maxOccurs="1" minOccurs="0" name="LoginName" type="s:string"/>
                            <s:element maxOccurs="1" minOccurs="0" name="LoginPassword" type="s:string"/>
                            <s:element maxOccurs="1" minOccurs="0" name="InputParams" type="s0:*Zs1*InputParams"/>
                        </s:sequence>
                    </s:complexType>
                </s:element>
                <s:complexType name="*Zs1*Rowset">
                    <s:sequence>
                        <s:element maxOccurs="unbounded" minOccurs="0" name="Row" type="s0:*Zs1*Row"/>
                    </s:sequence>
                    <s:attribute name="Message" type="s:string"/>
                </s:complexType>
                <s:complexType name="*Zs1*Row">
                    <s:sequence id="RowSequence">
                    <s:element maxOccurs="1" minOccurs="1" name="Item" type="s:string"/><s:element maxOccurs="1" minOccurs="1" name="ItemDescription" type="s:string"/></s:sequence>
                </s:complexType>
                <s:element name="XacuteResponse">
                    <s:complexType>
                        <s:sequence>
                            <s:element maxOccurs="1" minOccurs="0" name="Rowset" type="s0:*Zs1*Rowset"/>
                        </s:sequence>
                    </s:complexType>
                </s:element>
            </s:schema>
        </types>
        <!-- Messages -->
        <message name="Xacute*Zs1*In">
            <part element="s0:XacuteRequest" name="parameters"/>
        </message>
        <message name="Xacute*Zs1*Out">
            <part element="s0:XacuteResponse" name="parameters"/>
        </message>
        <!-- Ports -->
        <portType name="Xacute*MyTest*">
            <operation name="Xacute">
                <input message="s0:Xacute*Zs1*In"/>
                <output message="s0:Xacute*Zs1*Out"/>
            </operation>
        </portType>
        <!-- Bindings -->
        <binding name="Xacute*MyTest*" type="s0:Xacute*MyTest*">
            <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <operation name="Xacute">
                <soap:operation soapAction="http://www.sap.com/xMII" style="document"/>
                <input>
                    <soap:body use="literal"/>
                </input>
                <output>
                    <soap:body use="literal"/>
                </output>
            </operation>
        </binding>
        <!-- Service mapping -->
        <service name="XacuteWS">
            <port binding="s0:XacuteMyTest" name="XacuteMyTest">
                <soap:address location="http://host/XMII/SOAPRunner/Development/WebServices/GetItems/getItemsTrx"/>
            </port>
        </service>
    </definitions>
    If you want a demo, you can come to my desk ;o)
    Edited by: Olivier Thiry on Mar 12, 2009 1:02 PM
    Damned, the bold tag seems not to work... So all my changes are between star (..)

  • Consumer Group/Resource Plan to use only one instance of a RAC

    What would be the way to create a Consumer Group/Resource Plan to use only one instance of a RAC? I have 10.1.0.5 database
    running on 10.1.0.5 RAC.
    Thanks,

    You should use "services" to limit workload to just one specific node of RAC:
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10739/create.htm#sthref400

  • Essbase Service suddenly stops during report automation

    Has anyone experienced this before? The Essbase service suddenly stops while running batches.
    I get the following message in the Event viewer everytime this happens:
    The Hyperion S9 BI+ Analytic Services 9.3.0 - essbase service terminated unexpectedly. It has done this 5 time(s).
    Is this due to constant batches with large reports taxing essbase?
    Is there an Essbase.cfg modification that I can make to help avoid this?
    Any help would be greatly appreciated. Thanks.

    Thanks for the reply.
    This is the exception file ( I believe it is generated at the server level as it is in the \Hyperion\AnalyticServices directory (if that is what you mean))
    Are you saying I should add the SERVERTHREADS line for the App in question?
    ----- Exception Error Log Begin -----
    Current Date & Time: Thu Mar 20 16:46:23 2008
    Process Type: Server
    Application Name:
    Database Name:
    Exception Log File: D:\Hyperion\AnalyticServices\log00012.xcp
    Current Thread Id: 6744
    Exception Code: 0xC0000005=Access Violation
    Exception Flags: 0x00000000=Continuable
    Exception Address: 0x0819A5D9
    Exception Parameters: 2
    Exception Parameter 0: 0x00000000=Read Violation
    Exception Parameter 1: 0x00000000 (Virtual Address)
    Debug registers not available.
    ----- Stack -----
    Stack not available.
    ----- Application-Wide Configuration -----
    Server Name:
    Application Name:
    Elapsed App Time: 06:23:14:33
    Module Count: 0
    ----- Operating System Resources -----
    System Date & Time: Thu Mar 20 16:46:23 2008
    Elapsed OS Time: 41:21:21:35
    OS Name & Version: Windows NT 5.02
    CPU Count: 8
    CPU Type: Unknown
    Total Physical Memory: 8386732 KB (4293046272)
    Free Physical Memory: 6502996 KB (2364100608)
    Used Physical Memory: 1883736 KB (1928945664)
    Swap Flags:
    Enabled: Y
    Disabled: N
    File Found: Y
    Denied: N
    Swap file(s): C:\pagefile.sys
    Correct Swap Space information currently not available
    Total Drives: 4
    Current Drive: 3
    Drive 3:
    Drive Name: C
    Volume Label:
    Drive Type: Fixed
    File System: NTFS
    Total Drive Space: 32770540 KB
    Free Drive Space: 22710032 KB
    Used Drive Space: 10060508 KB
    Drive 4:
    Drive Name: D
    Volume Label: Apps
    Drive Type: Fixed
    File System: NTFS
    Total Drive Space: 110563916 KB
    Free Drive Space: 87119236 KB
    Used Drive Space: 23444680 KB
    Drive 6:
    Drive Name: F
    Volume Label:
    Drive Type: Fixed
    File System: NTFS
    Total Drive Space: 209720508 KB
    Free Drive Space: 76591820 KB
    Used Drive Space: 133128688 KB
    Drive 18:
    Drive Name: R
    Volume Label:
    Drive Type: Unknown
    File System: Unknown
    Total Drive Space: 0 KB
    Free Drive Space: 0 KB
    Used Drive Space: 0 KB
    ----- System-Wide Configuration -----
    Elapsed Essbase Time: 06:23:14:33
    Essbase Version: 9.3.0
    Essbase Description: ESB9.3.0.1.0B006
    Network Type: Windows Sockets
    Environment Variable: ARBORPATH = D:\Hyperion\AnalyticServices
    Environment Variable: ARBORMSGPATH = D:\Hyperion\AnalyticServices\bin
    Module Count: 0
    ----- ESSBASE.CFG Configuration Values -----
    Configuration Value: JvmModuleLocation = D:\Hyperion\common\JRE-AMD64\Sun\1.5.0\bin\server\jvm.dll
    Configuration Value: SharedServicesLocation = SBNETHYPWEB 58080
    Configuration Value: AuthenticationModule = CSS http://SBNETHYPWEB:58080/interop/framework/getCSSConfigFile
    Configuration Value: SSAUDITR =
    Configuration Value: SUPNA = ON
    Configuration Value: CCTRACK = FALSE
    Configuration Value: DATAERRORLIMIT = 10000
    Configuration Value: NOMSGLOGGINGONDATAERRORLIMIT = TRUE
    Configuration Value: NETDELAY = 800
    Configuration Value: NETRETRYCOUNT = 1000
    Configuration Value: SSPROCROWLIMIT = 500000
    Configuration Value: QRYGOVEXECTIME = 1500
    Configuration Value: LOCKTIMEOUT = 600
    Configuration Value: CALCLOCKBLOCKHIGH = 8000
    Configuration Value: CALCLOCKBLOCKDEFAULT = 15000
    Configuration Value: CALCLOCKBLOCKLOW = 100
    Configuration Value: CalcNoticeHigh = 20
    Configuration Value: CalcNoticeDefault = 10
    Configuration Value: CalcNoticeLow = 5
    Configuration Value: CalcCacheHigh = 199229440
    Configuration Value: CalcCacheDefault = 104857600
    Configuration Value: CalcCacheLow = 52428800
    Configuration Value: DLSINGLETHREADPERSTAGE = FALSE
    Configuration Value: DLTHREADSPREPARE = 4
    Configuration Value: DLTHREADSWRITE = 3
    Configuration Value: MultipleBitmapMemCheck = TRUE
    Configuration Value: ParCalcMultipleBitmapMemOpt = TRUE
    Configuration Value: AGENTTHREADS = 25
    Configuration Value: AGTSVRCONNECTIONS = 100
    Configuration Value: AGENTDELAY = 60
    Configuration Value: SERVERTHREADS = POSBKUP 100
    Configuration Value: EssbaseLicenseServer = @SBNETHYPESS
    Configuration Value: DeploymentID = *
    Configuration Value: AGENTPORT = 1423
    Configuration Value: SERVERPORTBEGIN = 32768
    Configuration Value: SERVERPORTEND = 33768
    Configuration Value: AGENTDESC = essbase
    ----- License Information -----
    Serial Number: bbbbbb
    License Expiry Date:
    Port Count: 0
    Ports In Use Count: 0
    Limited Use Version: N
    Read-Only SS: N
    Extended SS Macros: N
    Read-Only SS Macros: N
    Currency Conversion: N
    SQL Interface: N
    Evaluation Copy: N
    Configurable By PMU: N
    EmbedPorts: N
    Aggregate Storage (ASO): N
    SMP Support: N
    No Spreadsheet Client: N
    No AppMgr: N
    Single-User Essbase: N
    Essbase API_HVE: N
    Block Storage (BSO): N
    MultiCube: N
    Hyperion Integration Server: N
    EssbaseObjects: N
    Hyperion Allocation Manager: N
    Hyperion Analytic Reporter: N
    ----- Client Request Activity -----
    Server Name:
    Application Name:
    Total Request Threads: 25
    Avail Request Threads: 4294967283
    Total Requests: 64721
    Average Requests: 6467.000000
    Weighted Average: 58.331350
    Statistics Per Minute:
    Current Requests: 53
    Minimum Requests: 0.000000
    Maximum Requests: 517.000000
    Thread Count: 25
    Thread Id 6280:
    Request Name: Logout
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:55 2008
    End Time: Thu Mar 20 16:45:55 2008
    Thread Id 2028:
    Request Name: Logout
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:55 2008
    End Time: Thu Mar 20 16:45:55 2008
    Thread Id 6088:
    Request Name: Get Application Info
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 5332:
    Request Name: Select Application/Database
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 4168:
    Request Name: List Substitution Variables
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 5144:
    Request Name: Get Login ID
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 5528:
    Request Name: Get Application Info
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 4564:
    Request Name: Get Database State
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 7240:
    Request Name: Get Database Note
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 5560:
    Request Name: Login
    Database Name:
    User Name:
    Start Time: Thu Mar 20 16:45:58 2008
    End Time: Thu Mar 20 16:45:58 2008
    Thread Id 10120:
    Request Name: Get Login ID
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:02 2008
    End Time: Thu Mar 20 16:46:02 2008
    Thread Id 6688:
    Request Name: Get Login ID
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:05 2008
    End Time: Thu Mar 20 16:46:05 2008
    Thread Id 7732:
    Request Name: List Substitution Variables
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:05 2008
    End Time: Thu Mar 20 16:46:05 2008
    Thread Id 8844:
    Request Name: Get Application Info
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 2032:
    Request Name: Login
    Database Name:
    User Name:
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 6340:
    Request Name: Get Application Info
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 6928:
    Request Name: List Substitution Variables
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 7832:
    Request Name: Select Application/Database
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 7588:
    Request Name: Get Login ID
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 9968:
    Request Name: Get Database State
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 3752:
    Request Name: Get Database Note
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:11 2008
    End Time: Thu Mar 20 16:46:11 2008
    Thread Id 7676:
    Request Name: Get Login ID
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:14 2008
    End Time: Thu Mar 20 16:46:14 2008
    Thread Id 8804:
    Request Name: List Substitution Variables
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:17 2008
    End Time: Thu Mar 20 16:46:17 2008
    Thread Id 9296:
    Request Name: Get Login ID
    Database Name:
    User Name: hypadmin
    Start Time: Thu Mar 20 16:46:17 2008
    End Time: Thu Mar 20 16:46:17 2008
    Thread Id 6744:
    Request Name: Login
    Database Name:
    User Name:
    Start Time: Thu Mar 20 16:46:23 2008
    End Time: Pending
    ----- Exception Error Log End -----

  • Recyle Essbase services only

    Just thought to get some opinion for our practice.
    We have been stopping Essbase service, rebooting Essbase server and starting Essbase service weekly, but not the rest of Hyperion services, such as HSS, BI and Planning, etc. Do you think this is a good practice? The reason we are doing this is that sometimes our Planning application is hung. Sometimes we just got Essbase exception files, sometimes just nobody can connect to Essbase server. But it seems the users are in system already working fine, just no new connection can be made. Thought by recycling Essbase weekly, it can help to free up the resource on Essbase server, in turn, reduce the application hung incident.
    thanks for your opinion.
    Annie

    John,
    Thank you for your quick reponse!
    My concern is that there is dependency among Hyperion services, do you see any downside by only recycling Essbase service? I think I may need to recyle all the services on a regular basis per Hyperion suggested orders. Just it's hard to schedule them due to the service dependency and cross platform between Unix and Window.
    Also have you experienced Planning hung before? We have been experiencing Planning hung more often these days. We always end up with recycle the services. Sometimes we can get away by only recycling Essbase, but more recently we have to recycle all the services.
    Your answers are always helpful!
    Annie

  • Gregory Johnson, Director of the Consumer Defense Resource Group, responds to the recent iPhone price drop.

    Gregory Johnson, Director of the Consumer Defense Resource Group, responds to the recent iPhone price drop.
    In a strange turn of events this week, some consumers are upset now because as of Wednesday (Sept. 5) Apple lowered the retail price of their iPhone by $200. The 8GB iPhone is now $400 rather than $600. Customers raised such an outcry that Steve Jobs has published an open letter in response.
    Apple and other companies are continually coming out with new products that usually offer more speed, more storage, more features, and cost less than previous models. Nobody has ever complained -- until now. Why haven't people complained in the past when Apple has had significant price drops and major upgrades on their other products? There wasn't a revolt then. There were no mobs of angry customers demanding rebates.
    My first CD drive was a 2X speed external drive that required a special interface card in the computer. It cost $1,200 and today better drives are available for about $30. My first scanner was a very slow and big unit costing over $1,000. Today, better scanners are available for under $100. My first computer cost more than $2,000 and had a 20MB hard drive. With 8GB of storage, the iPhone should cost about $800,000. So, $600 didn’t seem too expensive.
    I bought my iPhone for $600 knowing that by next year they would probably drop to about $300 or $400. I didn't think there would be a mid-year drop, but so what. I knew the trajectory of technology progress would mean that a better phone will be available in 6 to 9 months at probably a lower price -- more apps, faster, more features, more memory. It's a given. You buy something this month. Next month it will be obsolete. That's just the way it is. Perhaps Apple should put a disclaimer on their website stating: "Warning: Our products will increasingly become faster, cooler, more innovative, and offer greater value for the dollar as time goes on. Get used to it."
    Apple is progressing so quickly now, beyond any other technology innovation company, that this kind of thing is likely to happen again in the future with some other product of theirs. Are people going to complain each time? Must the company give out rebates each time? This all seems so silly. It’s no longer possible to compare Apple to other companies with regard to their ability to implement product improvements. It’s like dog years versus human years. Two months in Apple’s world of product development is equal to about 6 to 9 months for most manufacturers. I know it is difficult, but people need to get used to that.
    To the complainers out there, I have a few questions. Would you like Apple to be less innovative? Would you like Apple to not give you more value and voluntarily drop their prices by hundreds of dollars? Is that what you want? Don't get upset at Apple just because they are pushing the envelope of technical innovation and value from one month to the next. What if Apple released an 8-core computer this summer and then by fall they announced their new 16-core computer? This is the kind of development and progress pace we need to start expecting from Apple. The migration to Intel processors went much faster than anticipated.
    Some research suggests that the iPhone cost of materials are about $300. So, there had been some complaints that Apple is price gouging by selling the iPhone for twice that amount. What people don’t understand is that there are other costs in building a piece of technology and running a business beyond the electronic components that go into them. The actual cost per 8GB iPhone is probably about $550. When Apple sells them for $400 each, I calculate they are taking a loss on the phone of about $150 per phone. Why would a company do this? There is something called a “lost leader” in retail sales. It’s a product you sell below your cost in an effort to rapidly expand your customer base. I’m guessing this is what Apple is doing by offering the iPhone at such an amazingly low price.
    I'm planning to purchase an Apple notebook sometime soon. I'm not in a hurry, so I'm waiting until they announce the next major upgrade to their notebook line. I'm guessing it will be this fall. If I really was in a rush to get a notebook, I'd get one now, and then be a little disappointed when the new ones are announced -- but I wouldn’t be surprised. Instead, I'm waiting. I'd like to see built-in broadband cards (cellular data access) and LED back lighting in the 17-inch notebook. Perhaps larger hard drives and faster processors would be nice. It would be wonderful if it had an optical glass touch screen like the iPhone.
    This latest uproar reminds me of the consumer complaints about iPods scratching. For decades, portable handheld computing devices have been available. They get scratched, and nobody says anything. Anyone concerned about their device scratching can purchase a protective cover. Then Apple comes along and offers their product. Suddenly consumers are in an uproar about it scratching and there is a class action lawsuit. It doesn’t seem fair that the most progressive and innovative company out there is the one that gets beaten up by consumers the most.
    My comprehensive review of the iPhone can be found here:
    http://web.mac.com/resourcesforlife/journal/writings/Entries/2007/8/18iPhoneReview.html
    The Consumer Defense Resource Group is online here:
    http://www.resourcesforlife.com/groups/cdrg/
    The above article can be found here:
    http://web.mac.com/resourcesforlife/journal/writings/Entries/2007/9/7iPhone_Price_Drops_-_ConsumersUpset.html

    Junk Mail Designer wrote:
    I'm not biting.
    I've read too many reports in the media from people more highly credentialed than Mr. Johnson to the contrary.
    The analogies and comparisons are still way off. Production didn't get cheaper, the phone didn't get upgraded, no carrier's are subsidizing, retailer's are not discounting. Never has the MSRP of CD-ROMs, nor cellphones, nor HDTV's dropped this quickly in history.
    I'm tired and going to bed. But here's your assignment. Apple's price decrease rate is 33.3% in 67 days. What would a $10,000 item cost at that rate in one year?
    Actually product advancement and innovation are very much the central issue here. Apple has effectively "upgraded" the 4GB unit to 8GB and reduced the price by $100. It's all in how you look at it.
    The real issue of innovation and development has yet to be seen, but the recent price drop is an indicator that Apple already has something "in the shoot" to be released soon.
    I was thinking it might take a year for a new version of the iPhone to be announced. Yet, with the recent price drop, it seems they may be lowering the price on the original unit to make room for a new one. Which is my point exactly. Apple is so fast at innovating that they already have something new to release (that's my prediction).
    They can't release something new and sell the old units if the "something new" and the "something old" are at the same price. It makes sense that the 8GB unit would drop to $400 and the new one will be $600.

  • Creating a web service to consume price of a particular stock from ???

    hey,
    i'm new, donno much about web services in terms of writing it, but i do have some knowledge about wat it actually does...
    im here becuz i wanna create a web service to consume the price of a particular stock and then store the closing price along with the dates into a database
    now, im abit lost here.. how do i know where to get the information from? is it possible for me to write a web service to communicate with Yahoo! Finance or any other sites which allows consumption of information?

    If you are talking about simple XML transformation of the SOAP payload between the client calling your service and the final destination of the message you are routing, the ESB approach may be a better fit.
    If you have more complex transformation in mind, with major processing and rework of the message in the intermediary, you may be better of with using the POJO approach. Write your service and embed a callout to the other service in your implementation. If the two services share the same Java Model, you may even be able to re-use the same Java Bean.
    To get SOAP Element instead of Java bean, you just need to use the noDataBinding option with either genProxy and topDownAssemble (or assemble). See the WS-Guide [1] for details. Chapter 18 will give you all the details about the different WSA command line parameters.
    Hope this helps,
    -Eric
    [1] http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28974/toc.htm

  • How to find out the service that consumes a given port?

    If we want to check if a given port is open on a given host,  we do
    telnet hostname port-number
    If this given port is open, that means a service is consuming this port.  How to identify which
    service is consuming this open port?
    Thanks!

    Hi,
    Please check the file /etc/services.
    In this file you will find that which port is occupied by which services. This file contains all services details (OS+ SAP also).
    Please refer to below doc for the details about the standard ports used by SAP applications.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4e515a43-0e01-0010-2da1-9bcc452c280b
    With Regards,
    Saurabh

  • How to create a batch file to stop/start only essbase services 11.1.2.2

    Hi,
    I have a requirement to build a batch file to schedule stop or start essbase. This batch files should run daily once. Version 11.1.2.2.
    I have tried to prepare a batch file which is calling the default service restart batch StartEssbase.bat and stopEssbase.bat.
    Stop process is running fine. But, Start is not success. When I run StartEssbase.bat and stopEssbase.bat manually essbase is restarting successfully.
    I tried with the command like START ESSCMD.exe "Password" also. Still it is not working.
    Could any one please help with the batch scrpit how can I build to start or stop essbase.
    Thanks
    Srilatha Dasari

    Hi,
    You can use these...
    Start essbase-------------------------------
    REM ----------EssbaseAgent Start----------
    net start HyS9ESBAgent11.1.1_hypservice_1
    SET CHK46=%ERRORLEVEL%
    IF "%CHK46%" NEQ "0" (
         ECHO "ERROR IN STARTING THE ESSBASE SERVICE"
         EXIT /B 46
    ) ELSE (
         ECHO "STARTING ESSBASE SERVICE WAS SUCCESSFUL"
         EXIT /B 0
    PAUSE
    Stop essbase----------------------------------------
    REM ----------Stopping of ESSBASE Service----------
    SET ESB_BIN_DIR=E:\Hyperion\products\Essbase\EssbaseServer\bin
    SET SRCDIR=F:\Essbase\bin
    SET MSHSRC=%SRCDIR%\ShutdownServer.msh
    SET SERVERNAME=XXXXXXXX
    SET USERNAME=XXXXXX
    SET PASSWORD=XXXXX
    REM *****************CALLING ESSBASE ENVIRONMENT SCRIPT***********************
    CALL %ESB_BIN_DIR%\setEssbaseEnv.cmd
    CALL %ESB_BIN_DIR%\ESSMSH %MSHSRC% %USERNAME% %PASSWORD% %SERVERNAME%
    SET CHK10=%ERRORLEVEL%
    IF "%CHK10%" NEQ "0" (
         ECHO ------------------------------------------------------
         ECHO [%DATE% %TIME%] ERROR IN STOPPING THE ESSBASE SERVICE
         ECHO ------------------------------------------------------
         EXIT /B 10
    ) ELSE (
         ECHO ------------------------------------------------------
         ECHO [%DATE% %TIME%] STOPPING ESSBASE SERVICE WAS SUCCESSFUL
         ECHO ------------------------------------------------------
         EXIT /B 0
    The maxl is like
    login $1 $2 on $3;
    alter system shutdown;
    exit;
    Regards
    Snehasis

  • How to check which query is consuming most resources....

    Hi guys how can i check which query is consuming most resources , run by which user and how to kill that....
    Khurana

    1)     At the first stage, login to the server and at the OS level I run commands like TOP and see the overall performance of the Server. From this one can know the Total CPU Memory, CPU Usage, Memory Available, and Swap Memory Available and how busy the CPU is.
    2)     Once you identify the top processes in the CPU, relate them to ORACLE using V$PROCESS.SPID = OS Process ID to get the V$PROCESS.ADDR and join this with the V$SESSION.PADDR to get the V$SESSION.SID and SERIAL# columns.
    3)     Then enable the Session Trace using DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION.
    4)     look on the Trace File using the TKPROF. During this sort the Trace File using various options like EXEELA/DSK, PRSELA/DSK, FCHELA /DSK.
    5)     Once you identify the expensive SQL statements, inform the user about it and KILL the respective job.

  • Essbase service gets shutdown abruptly

    Hi, We are facing a problem with Essbase Service. even after multiple restarts, the service just stops with in few seconds after its starts. Please find below error in the log.
    [Fri Apr 30 09:21:40 2010]Local/ESSBASE0///Error(1051496)
    Essbase failed to register product at Shared Services Server with Error [Registeration failed: null.Registeration failed: null.]
    We are using 11.1.1.3 version of Hyperion.
    I have checked the Shared Services and its running fine, as i can login into the EAS.
    Please suggest.

    Is this app with foundation services right?
    Have you check http://<servername>:58080/interop before you up essbase service?
    base on my experiance Essbase always going down when it up that services too fast.
    Try to stop all services include repository and make sure u can accsess interop before you up essbase services

  • Essbase Service Can't Start

    Hi there,
    I am working under Hyperion 11.1.1 and I have error.
    I want to start Essbase service in order to use MAXL / Essmsh but the Essbase service can't start. The service starts manually as usual and path to executable pointed to C:\Hyperion\products\Essbase\EssbaseServer\bin\ESSBASE.exe
    when I tried to find the folder and run essbase.exe the error shows that the service name is wrong (Hypservice_1) and not found.
    Actually at Windows service, display name is "Hyperion Essbase Services 11.1.1 - hypservice_1"
    Anyone has idea about that problem? Please let me know, thanks.

    I couldn't capture the windows when I run startessbase.cmd, it runs very fast and disappeared afterwards.
    What can I find on essbase.log is something like this repeatedly:
    [Thu Oct 20 14:19:56 2011]Local/ESSBASE0///Error(1051223)
    Single Sign On function call [css_init] failed with error [CSS Error: CSS method invocation error: com.hyperion.css.CSSSystem.<init>]
    [Thu Oct 20 14:19:56 2011]Local/ESSBASE0///Info(1051198)
    Single Sign-On Initialization Failed !
    [Thu Oct 20 14:19:56 2011]Local/ESSBASE0///Info(1051232)
    Using English_UnitedStates.Latin1@Binary as the Essbase Locale
    [Thu Oct 20 14:19:57 2011]Local/ESSBASE0///Error(1051527)
    In Shared Services Security mode it is not possible to start Essbase when single sign on initialization fails.
    [Thu Oct 20 14:20:02 2011]Local/ESSBASE0///Info(1051283)
    Retrieving License Information Please Wait...
    [Thu Oct 20 14:20:02 2011]Local/ESSBASE0///Info(1051286)
    License information retrieved.
    [Thu Oct 20 14:20:04 2011]Local/ESSBASE0///Error(1051223)
    Single Sign On function call [css_init] failed with error [CSS Error: CSS method invocation error: com.hyperion.css.CSSSystem.<init>]
    [Thu Oct 20 14:20:04 2011]Local/ESSBASE0///Info(1051198)
    Single Sign-On Initialization Failed !
    [Thu Oct 20 14:20:04 2011]Local/ESSBASE0///Info(1051232)
    Using English_UnitedStates.Latin1@Binary as the Essbase Locale
    [Thu Oct 20 14:20:04 2011]Local/ESSBASE0///Error(1051527)
    In Shared Services Security mode it is not possible to start Essbase when single sign on initialization fails.
    [Thu Oct 20 14:21:59 2011]Local/ESSBASE0///Info(1051283)
    Retrieving License Information Please Wait...
    [Thu Oct 20 14:21:59 2011]Local/ESSBASE0///Info(1051286)
    License information retrieved.
    [Thu Oct 20 14:22:01 2011]Local/ESSBASE0///Error(1051223)
    Single Sign On function call [css_init] failed with error [CSS Error: CSS method invocation error: com.hyperion.css.CSSSystem.<init>]

  • Automate start/stop essbase service using Maxl or batch

    Hi - how would my batch or Maxl file look like if I wanted to come out with a script to stop and start my essbase service? The reason why i am doing this is because I wanted to stop the essbase service, so that I can archive the essbase.log file.
    I am on essbase 7.0, I have read on some postings that stopping and starting the essbase service can potentially corrupt the sec file. If so, then is there any other way of archive the essbase.log file so that it does not grow to megs.
    Thanks.

    Hi,
    You could use the following maxl
    alter system shudown;
    it may be useful to stop all the applications first e.g.
    alter system unload application all;
    or you can use windows command line
    net stop essbaseservicename
    and to start
    net start essbaseservicename
    Another method to backup the essbase.log is to make a copy of the log then use maxl to delete the log.
    alter system clear logfile;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Essbase service will not start

    (Hyperion version 9.3.1)
    Database crashed while a calc script was running and now when I try to start the essbase service I get the following error:
    Error 14001: This application has failed to start because the application configuration is incorrect.
    Reinstalling the application may fix the problem.
    Has anyone else ever seen this error and know a solution other than reinstalling the application?

    Srinivas,
    Thanks for your suggestion. Replacing the .sec file was my first troubleshooting attempt and that did not resolve the issue.
    Our databse crashed while a calc script was running and that started the essbase service problem. The final fix was restoring the database cubes from backup and also restoring the Bin and Locales folders in the Hyperion application directory on the essbase box (there were some essbase service dll's that got corrupted). For our environment the is path D:\Hyperion\AnalyticServices\Bin and D:\Hyperion\AnalyticServices\Locales.

Maybe you are looking for

  • Can't create a new project in Logic pro . Goes straight to a midi file. Do I shut something down before trying to create a new project

    Can't create a new project in Logic pro . Goes straight to a midi file. Do I shut something down before trying to create a new project?

  • Image in Address Bar

    I am just a new user training myself in Dreamweaver. However I am at a loss in how to create those little 1cm*1cm images that some web sites have up in the address bar by their URL. To be honest I don't even know what they are called or anything. Any

  • Reporting on XMLType columns

    Looking for a reporting tool that will allow business users troubleshooting data issue the capability of writing reports against tables that have data in XMLType columns without requiring that the users be able to fluently read XML. All help apprecia

  • Bridge freezing

    I am using CS5 and am having trouble with Bridge. It can be very slow to open and when I click on an image 9/10 it will come up with "Bridge Not Responding". It totally freaks out if I try and select more than one image and can take ages, if at all,

  • CRASH! Every time!

    Ughhh! Mail used to work, and suddenly no. I open it, and it begins to download messages. It gets a few, and then POOF! "The application Mail has unexpectedly quit". The Console shows no information, I've repaired permissions, deleted the .plist, and