How to Increase Retrival time using excel addin

I have a ASO cube what thing can i do ti increase retrival time to excel addin on version 9.3.1
Please advise

1. Edit the essbase.cfg file with the following:
AGENTDELAY 60
NETDELAY 600
NETRETRYCOUNT 800
NETTCPCONNECTRETRYCOUNT 100
AGENTTHREADS 60
SERVERTHREADS 60
AGTSVRCONNECTIONS 7
2. Edit the database properties with the following:
If on 32-bit Platform, set the Essbase Data retrieval buffers as:
Buffer size(KB): 10
Sort buffer size(KB): 40
If on 64-bit Platform, set the Essbase Data retrieval buffers as:
Buffer size(KB): 20
Sort buffer size(KB): 40
3. Add or Edit the following Registry settings on Essbase Server and Client machines
a) Open the Registry
b) Navigate to LocalMachine\System\CurrentControlSet\Services\TCPIP\Parameters
c) Add new DWORD Value named TcpTimedWaitDelay, right click and select Modify. Select decimal radio button, type in 30. (The default value of this parameter is 2 minutes. This is how long twill take for a TCP/IP port that was used by the network for a connection to be released and made available again. 30 sec is the minimum allowed by Microsoft)
d) Add new DWORD Value named MaxUserPort, right click and select Modify. Select decimal radio button, type in 65534. ( The default value is 5000. This determines the highest port number TCP can assign when an application requests an available user port from the system.
e) Add new DWORD Value named MaxFreeTcbs, right click and selectModify. Select decimal radio button, type in 6250. (The default value is 2000. This determines the number of TCP control blocks(TCBs) the system creates to support active connections. Because each connection requires a control block, this value determines how many active connections TCP can support simultaneously. If all control blocks are used and more connection requests arrive,TCP can prematurely release connections in the TIME_WAIT state inorder to free a control block for a new connection and also increase the netdelay and netretrycount.
If the application is crashing on retrieval, then you might be hitting a unpublished Bug 12319088: ON RETRIEVAL FROM EXCEL ADDIN FOR THREE TIMES, ESSBASE APPLICATION SHUTS DOWN
KosuruS

Similar Messages

  • How to increase query time out

    I have a report which is generated using a huge SQL, it is erroring while displaying results, due to time out error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 17001] Oracle Error code: 1013, message: ORA-01013: user requested cancel of current operation at OCI call OCIStmtExecute
    How to increase this time so that the connection persists for a longer duration?
    thanks
    Rishabh

    I looked in the NQSConfig.ini file for you. In here you find the following:
    [ CACHE ]
    ENABLE     =     YES;
    // A comma separated list of <directory maxSize> pair(s)
    // e.g. DATA_STORAGE_PATHS = "d:\OracleBIData\nQSCache" 500 MB;
    DATA_STORAGE_PATHS     =     "/oracle/oaobi01/data/ontwbif1013/OracleBIdata/cache" 500 MB;
    MAX_ROWS_PER_CACHE_ENTRY = 100000; // 0 is unlimited size
    MAX_CACHE_ENTRY_SIZE = 1 MB;
    MAX_CACHE_ENTRIES = 1000;
    I think you can do something with this...
    You can find the nqsconfig.ini in this directory:<Install Drive>\OracleBI\server\Config
    Otherwise have a look in the Server Administration Guide, chapter 11

  • How to increase the time for detect a device down on Prime 2.0

    Hi,
    I would like to know how to increase the time for detect when a device has lost connection, currently I monitor several stand alone Access Points that are paleced on differents locations connected to prime through 256 Mbps Links, so when the location has very high bandwith utilization, an e-mail notification about the unreachable Access Point is sent, but if we check te reachability, the Access Point is reachable, and we don´t want to receive to many of this notificatios,
    thanks for your help

    Go to the Console,   Select the server --> configuration --> tuning tab, 
                        Stuck Thread Max Time and Stuck Thread Timer Interval  (give your required time)
    This will definitely increase the Stuck Thread time interval.
    or
    by using work manager also you can define Stuck Thread Max Time interval by editing deployment descriptor file
    <work-manager>
    <name>wm_name</name>
      <max-stuck-thread-time>30</max-stuck-thread-time>
    <stuck-thread-count>5</stuck-thread-count>
    </work-manager>

  • How to increase display time of Toast notifications in Windows 10?

    Hi,
    I want to know how to increase display time for Windows toast notification in Windows 10.

    On Thu, 2 Apr 2015 09:08:12 +0000, david hk129 wrote:
    Start > left side, Settings > Ease of Access > left side, Other options > at Show notification for, change the time .
    If the OP is asking about the notifications generated by the new
    Notifications Center feature then the above won't do any good. The above
    setting only impacts the old style notifications generated by applications
    that have icons in the system tray area of the task bar.
    Paul Adare - FIM CM MVP
    "The most amazing achievement of the computer software industry is its
    continuing cancellation of the steady and staggering gains made by the
    computer hardware industry." -- Henry Petroski

  • How to check from code in Excel Addin that Excel is embedded in Microsoft word

    We've developed an Excel Addin in C# for Excel 2010 and it works perfectly OK. But one issue is reported very recently as below.
    1. Microsoft word document is created with an embedded excel work sheet.
    2. Save the document and close.
    3. Open the word document and try to edit the work sheet there.
    4. Following error comes.
    "The program used to create this object is Excel. That program is either not installed on your computer or it is not responding.
    To edit this object, install Excel or ensure that any dialog boxes in Excel are closed."
    5. This is because, our Addin is initialized and one excel process is running.
    6. If the Excel Addin is disabled, above work flow works correctly.
    Please let me know how to determine from the Excel Addin that the excel worksheet is embedded in another applicatoin. Because I want to disable the Addin in those cases and enable it if the Excel is opened standalone. The Addin is developed in C#.

    Hi,
    Since the error message, please try to install this Hotfix test if it works:
    http://support.microsoft.com/kb/2596494
    Note: Delete the Excel instance running in the background(Go to your task manager and delete it) before opening your Word document and edit your embedded Excel.
    If the issue still exists, please see the article and try the solution which I copied here:
    "The basic simple answer is to place a Marshal.ComReleaseObject(Wb) at the end (or better, in the Finally block) of your event handlers. This will properly allow Word and excel to handle the OLE communication by not having VSTO hang on to an instance
    handle of the workbook, therefore causing the error.
    And this is not carte blanche to start placing ComReleaseObject() all over your code. I have found VERY VERY few limited cases where using ComReleaseObject() in an add-in necessary. And this is one of them."
    http://davecra.com/2012/10/09/vsto-and-comole/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • JDBC Receiver - how to increase Read Time

    Hi Experts,
    Please tell me how to increase the read time and response time in the JDBC receiver adapter.
    Thanks,
    Kalyani.

    hi,
    Check 2.3.5 section of this document:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c059d583-a551-2c10-e095-eb5d95e03747
    According to document:
    In the advanced mode table section of sender channel and receiver channel configurations, we can set driver properties for each DB connection. Any such property would have to contain prefix 'driver:'(with out quotes).
    For Oracle Database JDBC thin driver 10.2.0.3 version, the property oracle.jdbc.ReadTimeout helps to set read timeout while reading from the socket. Also for setting login time out in Oracle, we use oracle.net.CONNECT_TIMEOUT. To set these two properties use as follows: driver:oracle.jdbc.ReadTimeout 1000 driver:oracle.net.CONNECT_TIMEOUT 1000 The TimeOut Driver properties like ReadTimeout and CONNECT_TIMEOUT are in milliseconds.
    Refer note 1078420 for more details
    Thanks.

  • How to increase the time at the end of what aaa requeries the authentication of a client web

    Hi All,
    I configure ASA aaa to authentificate our internal web client to access to internet. It's check the username/password of client in our Active Directory.
    When the client initiate the first connexion, the ASA request the login connexion and when it's correct, it authorise the access. But after 10 min for exemple, it's request again the login, and so one and so one. Approximativelly, after each ten minute, it requeste an username/password.
    I want to know how can i increase the time between two authentifcation. Or increase the time of 10 min.
    Thanks.

    The authentication timeout is configurable via the "timeout uauth" command, and you can set either absolute or inactivity timeout.
    Here is the command for your reference:
    http://www.cisco.com/en/US/docs/security/asa/asa84/command/reference/t.html#wp1569874

  • How to Increase ring time before fowarding to voicemail

    Please can someone let me know where the setting are to Increase ring time before fowarding to voicemail.
    I've looked high and low and not able to find it.
    Thanks

    I don't know if it different in the states but I used this and it worked for me.
    http://iphoneguru.org/change-the-amount-of-rings-before-visual-voicemail-answers

  • How to increase ringing time before voicemail

    Can anyone tell me how to increase the number of times my x6 phone rings before voicemail cuts in please? At the moment it will only ring three times, approximately 15 seconds, before going to voicemail. 
    Thanks

    mary5898 wrote:
    Can anyone tell me how to increase the number of times my x6 phone rings before voicemail cuts in please? At the moment it will only ring three times, approximately 15 seconds, before going to voicemail. 
    Thanks
    Check out this old post from 2006...
    /t5/Hardware-Codes-and-Operator/Number-of-Rings-on-Incoming-Calls/m-p/5002/highlight/true#M307
    If you are on Orange or Vodafone then follow the codes, if you're on another network then phone up the network provider for the relevant code as mentioned above.
    steve_p wrote:
    ... If you are on Orange then try the following:
    Please bear in mind that the following code is only valid for phones on the Orange UK network.
    The code to set the length of time your phone rings is:
    **61*07973100123*11*??#
    Where ?? is the time in seconds, e.g. to set the ring time to 30 seconds you would type the following code at the standby screen then press the green send button:
    **61*07973100123*11*30#
    To make your phone ring for only 10 seconds:
    **61*07973100123*11*10#
    The code works in 5 second intervals, i.e. you can set 5, 10, 15, 20, 25 & 30 seconds.
    If you're on a network other than Orange then I'm afraid I can't help but you should be able to get some answers from your network provider.
    AND
    viw9419 wrote:
    If however you are on vodafone then you would need to type *#104# to give you your mailbox number and then
    **61* (YOUR MAIL BOX No).*11*(AMOUNT OF SECONDS) # SND
    Hope that helps.
    S.
    History: Motorola MR30, Nokia: 7110, 7650, N70, N80, N82, X6 (32GB), Samsung Galaxy SII
    Current: Samsung Galaxy Note3 Black

  • How to increase the time for threadstuck jdeveloper weblogic server

    Hi,
    This is a requirement for increasing the time for threastuck detection in jdeveloper weblogic server.
    Few of my threads take a longer time than the default value for threastuck detection.
    Could you please share the suggestions on how to do it?
    i have tried by creating workmanager from the administration console but not aware of how to apply it to application(in web.xml).
    Share inputs on this.
    Thanks,
    Devender

    You are posting this on the wrong forum. All this in one of the server forums.
    Timo

  • C2 -01 how to increase ringing time before going t...

    hi - can anyone please advsie how to increase the ringing time - before call goes to message bank- thanks 

    Though for S60, have a look at this thread ..Should be the same way it needs to be set..

  • How to increase the time period in Debugger

    Hi,
    If we put Debugging screen Idle for some time,we will get timed out Status bar message.Can we increase that time period.

    hi,
    A work process which is processing your task is set into a DEBUG mode.
    Debugging in general does requesting a huge memory consumption and system resources as well.
    This means that system is moving data to its extended memory in PRIV mode.
    In this mode normal request being processed by other work processes are located in local memory instead of extended. Extended memory is occupied by data for debugging user exclusively. However this cannot persist in system for a long time. So since you are not active in debugging session for some time system is canceling whole debugging with following messages:
    1) Transaction from "PRIV" session reset after timeout (Message no. 14048)
    2) Transaction from "DEBUG" mode (after timeout) reset (Message no. 14056)
    From basis point of view for production system there should not be a necessity to adjust profile parameters in order to allow debugging for a long time and for a so much users. If you wish to avoid this message anyway or you want to make debugging more comfortable on development or test system you need to consider following profile parameters:
    1)rdisp/max_priv_time # Standard value: 600
    2)rdisp/wppriv_max_no # Standard value: MAX(1, Anzahl Dialog-WPs)
    3)rdisp/max_debug_lazy_time # Standard value: 600
    thanks and regards
    chinnaiya

  • Satellite C660d-A2k - How to increase display backlight using battery mode

    I bought a new laptop, installed all the drivers and it works.
    How to turn on the backlight?
    It only works when I charge the laptop. turn off when it goes off.
    If add the screen brightness to maximum and turn charging the screen becomes even brighter.
    How to make led lights fixed, I have it switched on only when charging.

    Hi
    The display brightness can be changed using the key combination FN + F6 (increase) and FN + F7 (decrease).
    Did you read the user manual? This is mentioned in the manual preinstalled on the notebook.
    Furthermore you should also check the Win 7 Power Options.
    You can find this in control panel -> power options.
    I assume the notebook switches to another battery optimized power plant while you disconnect the AC adaptor. In such case the display brightness goes down to ensure longer battery working time. You can change the brightness level for this power plant too.

  • Problem while refreshing the data for the second time using excel services in sharepoint 2013...

    Hi,
    I have migrated my Sharepoint from 2010 to 2013.I am able to get the data at the first time of refresh when I click on refresh for the second time I am getting the empty the sheet.
    below find the flow of refresh
    First Refresh
    On Click of refresh open the workbook with excel services and return the session id.
    Using that session I am invoking RefrehAsync method of excel services
    After refresh completed I am setting the calculation of workbook as automatic(to calculate the formulas) using the same session id
    After setting the calculation as Automatic I am setting the calculation type as full(recalculate) using the same session id.
    Now I am able to see the data
    Second Refresh
    After clicking on refresh instead of opening the workbook I am using the session id(already opened workbook) and setting the calculation type as manual
    I am following the same process from refresh(RefreshAsync) as I have followed in first refresh.
    This time my formulas are not getting calculated because of that I am not able to see the data.
    Could you please let me know that am I missing anything here?
    Is this know issue in Sharepoint2013 excel services as same code is working fine with Sharepoint2010.
    If I close the workbook(session id null) and opens(new session id) for all the refreshes it is working and I am able to see the data.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

    I am able to see the data for the second refresh  if I change the data source.If I use the same data source which is used in the first refresh I am not getting the data.Excel services will contact the cubes and calculate the formulas in my workbook.
    Could you please let me know what could be the problem at second refresh while contacting the same data source with same session id?
    Please help me asap.
    Thanks,
    Meenakshi Nagpal
    N.Meenakshi

  • How Can I Open and Use Excel Spreadsheets on my Mac?

    I am trying to find out how to work with Excel (.xls) files on my Mac.  I have the latest updates on my OS but my Numbers is about 3 yrs old.
    I am able to work with the file on the Forum website, make adjustments.. but that is discouraged.  The owners encourage me to copy the .xls file to my computer and work with it there and finally submit it for critique.
    When I copy the file to the Mac, it seems to come in as a Numbers file.. at least that's what it is when I open it.  When I work with cells, none of the algorithms work.. IOW, nothing changes with the results.
    What have I tried..?
    I have put Open Office on the computer.  That supports Excel files.  But I guess my old mind doesn't know how to "import?" the .xls file on my desktop into OO.  So, I have not been able to make changes.  Possibly I am not seeing what needs to be done.
    I have also clicked on the file icon. Right clicked on it and selected "Get Info" and said to open the file in Open Office.  Nothing happened when I actually tried to open that file.
    I'm at a loss and this is pretty important.
    I'm quite surprised that Numbers doesn't seem to allow working with .xls files  I'm hoping I'm missing something

    Thanks for the rapid replies...
    I have NO problem opening the files.  As I stated in my OP, it is all about WORKING with the file.  IOW, this is a file to help me brew beer with changes in equipment size/configuration.. or simply changing a recipe.
    When I change the size of my brew kettle, the algorithms should modify parameters in different places to modify how much water I would have to use, how much boil off I should expect.. etc etc.  Or if I want to modify the batch size of the brew from 20 gallons to 5 gallons.. when I imput that data, the recipe should change accordingly.  When I do this on the forum site.. it works.  When I import it the algorithms don't change the numbers.
    What I get when I open the file, even as suggested by 'kkaufmann87" is that
    "Unsupported formulas were replaced by the last calculated value".... which were the values I had when I copied the file to my computer.
    Kolgrath.  This question was suggested by another person on that beer forum.. and Google Docs will not work either.

Maybe you are looking for

  • Transaction type 180 not possible (no affiliated company specified)

    Hi, I am trying to do the down payment Request in F-47 with Purchase order and asset. When I am trying to do this by giving the Asset number and Purchase order with Item 10. I am getting this error Transaction type 180 not possible (no affiliated com

  • SVG not handled properly

    Oversized SVG files are shown without scollbars, right? Test case: http://upload.wikimedia.org/wikipedia/commons/7/77/Unix_history-simple.svg

  • Adobe forms settings?

    hi experts....... I am using ECC 6.0. i am working on adobe forms in that layout part i have i have mentioned one text field name carrid. field caption i given carrid, value is read only, next coming to binding when i looking for the default binding

  • How to Modify the WD4J components of Compliance Calibrator

    Hi, I would like to modify the Mitigated Users WEBDYNPRO-JAVA Compliance Calibrator components(GRC). Please let me know the procedure for the same. If we have NWDI can we modify it? Is there a separate .sca file for Mitigated Users? Are there any dep

  • Non Tempo-event found in sync reference

    Hello everyone. I ran into a problem yesterday. I was working on a project and out of nowhere (I don't remember anything I was doing out of the ordinary) the tempo changed to 5bpm. I changed it back and kept working and when I was done I saved a new