Web Perfomance Issue

i have problem with Web Performance issue with Application server 10g
is their any parameter need to be adjust

Hi,
when i find some problem related to performance, my first check is the database, is there locks in the database when these perfomance issue arise ? are tables analyzed ? optimizer_mode = choose ? have you try to check the querys that ADF e "lauching" to dabase ?
Also, are you using Connection Pool in application server ?
Just some ideias
Best Regards
Rui Madaleno

Similar Messages

  • Office Web Apps Issue - "Sorry, something went wrong" message when opening a document (any MS docx,ppt etc) in IE. With Chrome, it pops (Microsoft Office needs your permission) message and on RUN, it opens the document.

    When opening any Microsoft documents ( docx, ppt etc) in SharePoint 2013,
    Internet Explorer behavior : "Sorry, something went wrong" An unexpected error has occurred message and then nothing happens. 
    In Chrome : Pops (Microsoft Office needs your permission) message and on clicking RUN, it opens the document.
    In Firefox : the documents opens, after asking which application do you want to use to open it.
    The feature (Open Documents in Client Applications by Default) is not activate.
    Why the MS documents are not working in IE 10?

    Hi,
    According to your post, my understanding is that you failed to open Microsoft documents in SharePoint 2013.
    I recommend to Run the following PowerShell in OWA Server :
    Remove-OfficeWebAppsHost # To Remove any restriction
    Or
    New-OfficeWebAppsHost -Domain <String> # To allow specific domain Name
    In addition, you can allow OAuth via HTTP using the following commands:
    $config = (Get-SPSecurityTokenServiceConfig)
    $config.AllowOAuthOverHttp = $true
    $config.Update()
    Here are two similar articles for you to take a look at:
    http://blogs.msdn.com/b/fabdulwahab/archive/2013/10/30/office-web-apps-with-sharepoint-2013-issues.aspx
    http://stevemannspath.blogspot.in/2013/03/sharepoint-2013-office-web-apps-issue.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Upgrade to ECC6 & Unicode: IE Web Browser Issues?

    Has anyone experienced web browser issues at display time? We are on IE7. We are now using the internal ITS. Our carriage returns are totally being ignored by the browser. Thus, we have a dropdown box to pick one of the businesses multiple partners, and because the HTML is not formatted correctly in the browser, the dropdown doesn't work, and we get an "array not created" error messsage in IE7.
    I know that there are options in the IE 7 browser under the menu item "view". I've tried changing these to some different Unicode settings, but without luck.
    Has anybody some experience with this issue?
        Thank-You

    Hi Tim,
        this might be problem with Support package, by default Sap neweaver 2004s application comes with SP6, u can upgrade to higher SP to solve these type of problems.patch your system up to SP12 or SP13 and try.
    Thanks & Regards,
    Manikandan Dhanakoti
    Edited by: Dhanakoti.M on Oct 23, 2009 7:45 PM

  • Change pointer perfomance issue(bd22)

    Hi,
    we are using message type HRMD_A to transfer the employee change data using the program RBDMIDOC. we are checking two table BDCP n BDCPS, but because of large number of data we r facing a perfomance issue here. I read in one forum about transaction BD22 which deletes the change pointer from these tables, but is it safe to use? and also what is the obsolete change pointer?
    Thanks in advance for ur inputs.

    Hey,
    It is advisable to reorganize change pointer tables at regular intervals for better performance of programs accessing the BDCP* tables.
    BD22 is a standard report delivered by SAP and it is absolutely safe to run this report. It also has o test run option. You could always run the report in test mode to analyze the data the report had selected for deletion.
    Obsolete change pointers are those which have been created up to the specified date and time. In BD22, if this checkbox is marked, obsolete change pointers will be reorganized regardless of whether they have yet been processed.                                                           
    Processed change pointers are those which have been processed in the specified period (date and time). If this checkbox is marked, the processed change pointers are reorganized.                          
    -Kiran
    *Please mark useful answers

  • Web Query issues

    Hi All,
    I have created a web query and assigned it to a role. I have moved the role, web templete and the query from dev to QA was able run the query fine without issues.
    The problem I am having is when I make changes to the query and transport it to QA...when I run the query from the role menu it still shows the old query instead of the changed query.
    Can someone please explain what are the steps I need to take when I make changes to exsisting web query in dev and move to QA and be able to see the changes. What are all the objects I need to collect. Also would like to know if there are any settings on the role menu or web templete that need to be changed and also any buffers that I need to cleared??
    Any help is appriciated and will give max points.
    Thanks

    BWdesi,
    please avoid reposts - it could be that due to network issues the post got posted twice... close one of them as answered and then proceed with the other one...
    Web Query issues
    Arun

  • Guest Anchor - Web Passthrough - Apple device web redirect issue

    Hi All,
    I've setup a Guest Mobility Anchor at DMZ with 5508 WLC. I've setup the EoIP mobility tunnel and everything works so far.
    Now, I was testing multiple clients to connect to the Guest SSID and observed that Apple devices are not redirecting url, resulting unsuccessful connection.
    I looked Cisco docs and added the command "config network web-auth captive-bypass enable" on the Anchor as recommended.
    Even after executing the command, I'm still facing web redirect issue with Apple Devices. I don't have any issues with other devices, except Apple.
    My controller running code AirOS 7.6.130.0. I'm using DMZ controller as DHCP server for Guests and public DNS servers as 8.8.8.8 & 8.8.4.4
    How to solve this web redirect issue? Will a Third-party generated CSR solves the problem?
    Thanks,
    CJ

    Hi All,
    The issue was with WISPr Protocol with iOS Clients. After upgrading the AirOS Code on the controller to 8.0.100.0; the issue with Web Redirect is resolved.
    Jagan

  • Ajax4JSF Perfomance Issues

    Me & my team have used Ajax4JSF extensively in our application very recently we have been observing perfomance problems.
    Here is the situation
    We have following dropdown defined with ajax4jsf event onchange
    <h:panelGrid columns="3" styleClass="detail" columnClasses="label">
                     <h:outputText value="Manufacturer" />
                     <h:selectOneMenu id="manufList" value="#{manufacturerBean.selectedManufacturer}" > 
                       <f:selectItem itemLabel="New" itemValue="New" />
                  <f:selectItems value="#{manufacturerBean.manufacturerList}" />  
                  <a4j:support action="#{manufacturerBean.loadManufacturerDetails}" event="onchange" reRender="manufName,manufDescription,manufSource,btnSave,btnDelete" />          
               </h:selectOneMenu>           
                </h:panelGrid> The perfomance issue is whenever we pick a different value from the dropdown list Ajax4JSF onchange event is fired & the action method "loadManufacturerDetails" is invoked in the backing bean. This is perfect & expected behaviour. But prior to invoking onchange action method it invokes f:selectItems value binding method i.e. getManufacturerList in the backing bean which leads to perfomance issues as it goes thru Spring & Hibernate and hits the database & fires the query to get the List of Manufacturers everytime onchange event occurs & we were very much suprised with the wait time to populates other fields in the form
    Any pointers/suggestions will be highly appreciated
    Regards
    Bansi

    Me & my team have used Ajax4JSF extensively in our application very recently we have been observing perfomance problems.
    Here is the situation
    We have following dropdown defined with ajax4jsf event onchange
    <h:panelGrid columns="3" styleClass="detail" columnClasses="label">
                     <h:outputText value="Manufacturer" />
                     <h:selectOneMenu id="manufList" value="#{manufacturerBean.selectedManufacturer}" > 
                       <f:selectItem itemLabel="New" itemValue="New" />
                  <f:selectItems value="#{manufacturerBean.manufacturerList}" />  
                  <a4j:support action="#{manufacturerBean.loadManufacturerDetails}" event="onchange" reRender="manufName,manufDescription,manufSource,btnSave,btnDelete" />          
               </h:selectOneMenu>           
                </h:panelGrid> The perfomance issue is whenever we pick a different value from the dropdown list Ajax4JSF onchange event is fired & the action method "loadManufacturerDetails" is invoked in the backing bean. This is perfect & expected behaviour. But prior to invoking onchange action method it invokes f:selectItems value binding method i.e. getManufacturerList in the backing bean which leads to perfomance issues as it goes thru Spring & Hibernate and hits the database & fires the query to get the List of Manufacturers everytime onchange event occurs & we were very much suprised with the wait time to populates other fields in the form
    Any pointers/suggestions will be highly appreciated
    Regards
    Bansi

  • Perfomance Issue: FORALL - LIMIT

    Hi,
    Is LIMIT clause mandatory for FORALL DML Operations for Perfomance Issue?
    I have searched in google, but i didn't get a correct answer.
    Suresh.

    Suresh Mohan wrote:
    Hi,
    Is LIMIT clause mandatory for FORALL DML Operations for Perfomance Issue?
    I have searched in google, but i didn't get a correct answer.
    Suresh.It's not even a syntactical option
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10472/forall_statement.htm#LNPLS01321

  • Perfomance issue between Sun-Fire-V445 & SUNW,T5240

    my application owners is complaining abt the perfomance issue with between V445 and T5240
    5.10 Generic_118833-33 sun4u sparc SUNW,Sun-Fire-V445
    bash-3.00$ psrinfo
    0 on-line since 01/10/2009 01:55:45
    1 on-line since 01/10/2009 01:55:45
    2 on-line since 01/10/2009 01:55:45
    3 on-line since 01/10/2009 01:55:42
    bash-3.00$ top
    load averages: 0.96, 1.11, 1.14; up 101+15:04:35 16:59:45
    237 processes: 231 sleeping, 5 zombie, 1 on cpu
    CPU states: % idle, % user, % kernel, % iowait, % swap
    Memory: 32G phys mem, 21G free mem, 2052M swap, 2052M free swap
    but t5240 is having 128 processor and
    load averages: 0.56, 0.33, 0.27 tbw1.prod1.idc1.level3.com 17:01:53
    58 processes: 57 sleeping, 1 on cpu
    CPU states: % idle, % user, % kernel, % iowait, % swap
    Memory: 128G real, 57.0G free, 697M swap in use, 51.7G swap free
    both the application are on zones. But the processing time for the app is less in v445 when compared to t5240

    System Configuration: Sun Microsystems sun4u Sun Fire V445
    System clock frequency: 199 MHZ
    Memory size: 32GB
    ==================================== CPUs ====================================
    E$ CPU CPU
    CPU Freq Size Implementation Mask Status Location
    0 1592 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 on-line MB/C0/P0
    1 1592 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 on-line MB/C1/P0
    2 1592 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 on-line MB/C2/P0
    3 1592 MHz 1MB SUNW,UltraSPARC-IIIi 3.4 on-line MB/C3/P0
    ================================= IO Devices =================================
    System Configuration: Sun Microsystems sun4v T5240
    Memory size: 130848 Megabytes
    ================================ Virtual CPUs ================================
    CPU ID Frequency Implementation Status
    0 1165 MHz SUNW,UltraSPARC-T2+ on-line
    1 1165 MHz SUNW,UltraSPARC-T2+ on-line
    2 1165 MHz SUNW,UltraSPARC-T2+ on-line
    3 1165 MHz SUNW,UltraSPARC-T2+ on-line
    4 1165 MHz SUNW,UltraSPARC-T2+ on-line
    5 1165 MHz SUNW,UltraSPARC-T2+ on-line
    6 1165 MHz SUNW,UltraSPARC-T2+ on-line
    7 1165 MHz SUNW,UltraSPARC-T2+ on-line
    8 1165 MHz SUNW,UltraSPARC-T2+ on-line
    9 1165 MHz SUNW,UltraSPARC-T2+ on-line
    10 1165 MHz SUNW,UltraSPARC-T2+ on-line
    11 1165 MHz SUNW,UltraSPARC-T2+ on-line
    12 1165 MHz SUNW,UltraSPARC-T2+ on-line
    13 1165 MHz SUNW,UltraSPARC-T2+ on-line
    14 1165 MHz SUNW,UltraSPARC-T2+ on-line
    15 1165 MHz SUNW,UltraSPARC-T2+ on-line
    16 1165 MHz SUNW,UltraSPARC-T2+ on-line
    17 1165 MHz SUNW,UltraSPARC-T2+ on-line
    18 1165 MHz SUNW,UltraSPARC-T2+ on-line
    19 1165 MHz SUNW,UltraSPARC-T2+ on-line
    20 1165 MHz SUNW,UltraSPARC-T2+ on-line
    21 1165 MHz SUNW,UltraSPARC-T2+ on-line
    22 1165 MHz SUNW,UltraSPARC-T2+ on-line
    :

  • Perfomance Issue on Windows Server 2003 Cluster

    Hello,
    we have a strange perfomance issue:
    we have a single Windows 2003 Server for the XI Quality System and a Windows 2003 Server on production (both of them 32 bit).
    When we transport an integration scenario 1:1 from quality to production we have to face serious performance issues. Perfomance on the productive cluster is approx. 50% lower than on the quality environment.
    How could this be? Do you have any ideas?

    Hi,
    It has been a while since the last time we heard from you, so I assume this issue is solved by now.
    I will mark a reply as answer, please feel free to unmark it if it’s not helpful, and we will be happy to continuously support you.
    Have a nice day!
    Amy Wang

  • Perfomance issue after update to 10.7.3

    Hello everyone,
    I have recently experienced major perfomance issues when it comes to graphical applications. I can't recall if it happened when 10.7.2 or 10.7.3 was released, but somewhere around then. And I can't determine if it was happening directly afterwards when the upgrade was done.
    Watching a flash movie takes a lot of system resources and scrolling within the window the flash movie is barely possible. Before this hasn't been a problem at all. Playing a game, i.e Team Fortress 2, has gone from wonderful to non-playable. From having 60-80 fps to around 25-45 fps.
    I am having a MBP 15.4 early 2011/8GB/2.0GHz. Running latest version of Lion 10.7.3
    Anyone else that had the same problem? Anyone having a suggestion of what the problem might be?

    Maybe it's Chrome. Maybe your update to 10.7.2 or 10.7.3 needs help. You could consider reinstalling Lion:
    Reinstalling Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • SharePoint 2013 Office Web App issue

    We met an issue on Office Web App with SharePoint 2013.
    Error message on the page:
    Sorry, there was a problem and we can't open this document. If this happens again, try opening the Microsoft Word.
    There is no related log in Windows Event viewer.
    In SharePoint ULS log, related message as below:
    08/12/2014 06:42:45.49 w3wp.exe (0x2C90) 0x2FE0 SharePoint Foundation Claims Authentication ahds8 Unexpected SPJsonWebSecurityBaseTokenHandler: Issuer name in token '00000003-0000-0ff1-ce00-000000000000@testrealm' doesn't match any of the registered issuer names for trusted sts 'collaboration metadata'. 7ba9aedb-4658-4a32-aaaa-20bcd0d52be6
    08/12/2014 06:42:45.49 w3wp.exe (0x2C90) 0x2FE0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Application Authentication Pipeline). Execution Time=7,5254676222816 7ba9aedb-4658-4a32-aaaa-20bcd0d52be6
    08/12/2014 06:42:45.49 w3wp.exe (0x2C90) 0x2FE0 SharePoint Foundation Application Authentication ajezu Unexpected SPApplicationAuthenticationModule: Failed to authenticate request, unknown error. Exception details: System.IdentityModel.Tokens.SecurityTokenException: Issuer name is not registered at Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityBaseTokenHandler.ValidateTokenIssuer(X509SecurityToken signingKey, String tokenIssuer) at Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityBaseTokenHandler.ValidateToken(SecurityToken token) at Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityTokenHandler.ValidateToken(SecurityToken token) at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.TryExtractAndValidateToken(HttpContext httpContext, SPIncomingTokenContext& tokenContext) at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.ConstructIC... 7ba9aedb-4658-4a32-aaaa-20bcd0d52be6
    08/12/2014 06:42:45.49* w3wp.exe (0x2C90) 0x2FE0 SharePoint Foundation Application Authentication ajezu Unexpected ...laimsPrincipalAndSetThreadIdentity(HttpApplication httpApplication, HttpContext httpContext, SPFederationAuthenticationModule fam) at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.AuthenticateRequest(Object sender, EventArgs e) 7ba9aedb-4658-4a32-aaaa-20bcd0d52be6
    08/12/2014 06:42:45.49 w3wp.exe (0x2C90) 0x2FE0 SharePoint Foundation General 8nca Medium Application error when access /sites/111/_vti_bin/wopi.ashx, Error=Issuer name is not registered at Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityBaseTokenHandler.ValidateTokenIssuer(X509SecurityToken signingKey, String tokenIssuer) at Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityBaseTokenHandler.ValidateToken(SecurityToken token) at Microsoft.SharePoint.IdentityModel.SPJsonWebSecurityTokenHandler.ValidateToken(SecurityToken token) at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.TryExtractAndValidateToken(HttpContext httpContext, SPIncomingTokenContext& tokenContext) at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.ConstructIClaimsPrincipalAndSetThreadIdentity(HttpApplication httpApplication, HttpContext httpCont... 7ba9aedb-4658-4a32-aaaa-20bcd0d52be6
    The farm is having 2 WFE. There is NLB setting up for them.
    AAM has been set to Default.
    OWA binding set to -AllowHttp, zone set to internal-http. AllowOAuthOverHttp set to true.
    The strange thing is when days ago we finish the installation, we try the link http://{server_name}/somefolder/document.docx to do the test, it works fine.
    But today we try the link http://{NLB_link}/somefolder/documnet.docx, above error occur.
    We are not sure whether AAM setting cause this issue or some other reaone. But even we remove the AAM to use the Server Name in link, still above issue.
    Any idea/comments would be appriciated.

    What is the default AAM? Is it the server_name, or the NLB_Link? Might want to try having the NLB_Link as the primary (default) AAM if you haven't already?
    Not sure if you have seen the Troubleshooting steps here:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx#tshoot
    it discusses use of the PowerShell command:
    New-OfficeWebAppHost (http://technet.microsoft.com/en-us/library/jj219459(v=office.15).aspx) which might be required for your NLB_Link.
    Gavin.

  • BO WebI Report Issue

    Hi ,
    We are using Greenplum + BO , We can able to connect the BO with greenplum in Universe.
    While we connect to the Webi we are getting the below attached issue , Please help us to resolve.

    Hi,
    Please post this question in SAP Webi Intelligence space for quick response.
    Here is the link....>SAP BusinessObjects Web Intelligence

  • Webi report: Issue Cannot retrieve dimensions from Cube

    Hello Experts,  We're facing an issue with a partical set of Webi reports in Quality environment. The reports are BW reports based on OLAP BICS connectivity on top of Bex queries.y  Below is the scenario and the issue:  1. The backed Bex queries have been trasported to Quality BW system and they're running fine when run from RSRT or Bex analyzer. 2.The Webi reports along with the BICS connections have been migrated to the Quality box and the BICS connections have been editied so that they point to the Quality BOX bex queries and they're testing and responding to the connection successfully. 3. The Webi reports pointed to the Dev Box in the Dev BOBJ system are working fine, but when the same reports for which the connections were repointed in Quality as above, are giving the error "Cannot Retrieve Dimensions from Cube".  Steps taken: a. Deleted the reports and the BICS connection from Quality environment and remigrated the reports,connecitons and changed the connecitons but still the issue persists. b.Tried finding the root cause and got the following issue in the Bex query in Quality: There are filters put in the Bex query . All other filters are working fine except 0CALMONTH. We tried putting all sorts of variables on 0CALMONTH, but the moment a variable is put on 0CALMONTH, this issue occurs. But when we tried removing the variable from 0CALMONTH in filters and restricted it to a single value, the Report works fine.  However the same is not an issue in the Dev Box and all queries with similar variables are working fine.  So we're thinking this might be an issue on the BW backend and the cube might have to be transported again to the Quality Box.  ANy quick suggestions or inputs on this would be greatly appreciated.  Thanks and regards, Abhishek

    Hi Abhishek,
    I am facing same issue.Have you resolve this issue?
    Regards,
    Rajesh

  • Webi report issue(BO Infoview)

    Hi Gurus,
    I created a webi report in BO infoview using an universe. But when I run the report it does not display any data , it shows only blue and yellow color table in the report display panel. Any help I would appreciate it.
    Thanks
    Liza

    It appears to be a java version issue:
    The specified item was not found.

Maybe you are looking for