Re: BI Server very slow

Hi All,
Currently the BI server is very slow. Accessing the tcodes itself takes long time. Can anybody tell me the tcodes to monitor the server utilisation. How to improve the performance of BI system.
Regards,
Anand

Poor performance could be caused by many things.
Os level, check cpu utilization and memory usage with st06.  If you are cpu bound or paging excessively it will cause very poor response time.
Look at sm51/sm50 to check for free dialogs.  Are you running several data loads with parallel processing that could be tying up all your dialogs.
DB
st04, db02, Check that you are running runstats, that you have good buffer hit ratiios.  Backups are at off-peak times
db01 to check for lock waits/deadlocks

Similar Messages

  • Remote Desktop To Windows Server Very Slow

    I have OS X 10.6 running on a MBP and a problem that seems to be growing worse over time. I am using Remote Desktop (both CoRD and Microsoft Remote Desktop) to gain access to remote servers. One is a Windows Server 2008, the others are Windows Server 2003. Initially all was fine, but over the last 2 months access to the W2K server has crawled to a halt. Now, when accessing the other servers I'm having the same issue. I have tried different clients for remote access, used different high speed Internet connections (FIOS, a private network) and the result is the same. Very, very slow connections.
    I have also tried using a different login on the laptop to no avail.
    I booted Windows on my MBP using Parralels Desktop and tried using Windows RDC to the same servers; that works fine. In fact, I can access the servers very quickly using my iPhone's Remote Access software using the same Internet connection (home WiFi) as my MacBook Pro.
    So I can only assume it's an issue with OS X 10.6, since different devices using the same Internet connection can make a much faster connection. But I can't find any similar posts on the issue.
    Any ideas are appreciated!

    Hi Jason,
    From the error message, it seems that take time to load the user configuration properly from the server and then the network connection was slow. Please refer to following article
    and check if help you to troubleshoot slow logon.
    Troubleshooting
    Slow Logons
    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.
    Meanwhile, please refer to following thread and check if can help you.
    Remote
    Desktop Services has taken too long to load the user configuration from server Event ID 20499
    Hope this helps.
    Best regards,
    Justin Gu

  • Portal Server very slow!!

    Hi
    What's the best java compiler to use? javac is very slow!
    thanks
    willie

    You can also precompile your JSPs, dig into the WLS docs to find out how.
    Yahoo!
    Brad
    "Cameron Purdy" <[email protected]> wrote:
    Try jikes. Search the EJB, Servlet and JSP newsgroups for "jikes" for
    more
    info.
    Peace,
    Cameron Purdy
    Tangosol Inc.
    << Tangosol Server: How Weblogic applications are customized >>
    << Download now from http://www.tangosol.com/download.jsp >>
    "leslie.mampe" <[email protected]> wrote in message
    news:[email protected]..
    Hi
    What's the best java compiler to use? javac is very slow!
    thanks
    willie

  • DI SERVER very slow

    I have an application WEB that uses DI SERVER, with 150 users, and when data enter the site is put very slow, or collapse, the version that I have of SBO is 200Ä (6.80.318) SP:01 PL:14, somebody can help me

    ok

  • How to clear the cache clanup operations as the CE Server very slow?

    Hi,
    I am using SAP CE 7.1 on a Core2 Duo system(2.00Ghz with 2 GB of RAM), the server was working fine for the last 3 months but for the last 1 week or so it has turned very slow and its consuming a lot of my systems resources making my system dead slow though earlier my system was working fine.
    Can some one please provide me the proces to clear the cache for the CE server as this might increase the performance, or any other process for improving the preformance of the CE srever?
    Please reply ASAP.
    Thanks in advance.
    Regards,
    Manish

    Hi Manish,
    Instead of guessing, the better option would be to run a profiler that would help you spotlight the issues which might be causing such a decrease in performance. There are plenty of tools available, also from SAP.
    HTH!
    \-- Vladimir
    P.S. Please read the SDN Forums [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement], especially about using words like "ASAP" and cross-posting in multiple forums.

  • Initial RMI call to the server very slow

    I have an RMI client who is trying to connect to an RMI server.
    The server is behind a physical firewall, i think its netscreen, during the first call of the client, it is registering itself to the remote object in the server, the call takes up aroung two-three minutes to complete, after that, the succeeding remote method calls are fast, why is this happening?
    need help on this

    the call takes up aroung two-three minutes to
    completesorry, i meant the client takes two-three minutes before it was able to call the method, once called, the method proceeds normally, then the succeeding calls are not that slow anymore

  • Server very slow

    i have a database wiht following configuration. My procedure is taking about 2 hours
    Shared Pool: 2000 MB
    Buffer Cache: 128 MB
    Large Pool : 0 MB
    Java Pool : 80 MB
    Total SGA: 2223.568 MB
    SGA Max Size : 4000 MB
    Aggregate PGA Target : 300 Mb
    Current PGA Allocated : 127726 KB
    Max PGA Allocated : 323950 KB
    Cache Hit Percentage : 96.71%
    What setting can be done in the server to increase the speed

    What settings? Set MAGIKS to TRUE and change TURBO_BOOST to a 100.
    And yes, this is intended to be sarcastic Michael as there is no such thing as a magic button, silver bullet, special setting that can fix performance.
    Nor can a performance problem be identified by the few lines of detail you have supplied.
    It is like posting a photo of your car and telling us your car does not start - and we have to diagnose the problem and tell you how to fix it.
    I can however see several major problems with these settings you have posted. Some which will cause performance problems for the entire database.
    Shared Pool. A shared pool should never be that size. It is suppose to contain a set of sharable SQL. Do you have almost 2GB's worth of distinct SQLs? No.
    What you likely have is no sharable SQLs. Which means each and every SQL that hits the database is unique. Needs to be hard parsed (expensive). Needs to be stored in the shared pool (expensive).
    Make the shared pool smaller. A lot smaller. If you get memory errors on the shared pool, make it even smaller and create a job that flushes it every 60 seconds.
    Use that freed Shared Pool memory to increase the Buffer Cache. This will reduce physical I/Os.
    The cache hit ratio of the small buffer cache is close to a 100%. This is bad. A cache hit ratio that high usually shows that there is something very wrong with the logic of the code being executed. Why? 'cause that code is hitting the same rows (in the buffer cache) again and again and again. This drives up the hit ratio.
    Why hit the same rows so many times? Process a row once and once only. Do not make multiple passes over the same row. And this is exactly what people not familiar with Oracle Concepts and Fundamentals do.
    They write row-by-row processing code in PL/SQL. They do not use PL/SQL correctly, never mind applying SQL as it should be applied. Result? Very poor performing code that makes multiple passes against the same data set.
    From the looks of it, you need someone on board to show you guys how to correctly use Oracle. It seems to me that Oracle is being badly abused from the little that you have posted. I shudder to think what it looks like when that database's hood is popped.

  • OBIEE BI Server very slow to restart

    Guys,
    any ideas why restarting the the BI server service can take up to 2 hours to restart, the DB and RPD are not very big and dont see any performace alerts or issues on CPU, rem , VM etc...
    thanks

    Oracle BI Server connects to all the physical databases you are using when you start the server.
    Are you using OBI Apps rpd by any chance? If yes, there are many init blocks which are having queries and BI Server will connect to each one of them.
    Check your NQServer.log which will contain the log messages that your rpd is trying to connect when you start the service.

  • New VM Server - Very Slow Performance with QuickBooks

    Hello all,
    Oh the dreaded performance issues!
    Okay we currently have a virtual server hosted with a different company - it has two VPU's and 8GB RAM.  The contract is about to expire so we're switching to a Microsoft Azure VM.  This server is running Windows Server 2008 R2 - main purpose is
    to host QuickBooks Enterprise v15 - with 10 users connecting via RemoteApp and/or RD.
    So for the new Azure server we selected the A3 (4 cores/7GB RAM) option - running Windows Server 2008 R2 - I know old O/S - but still need for now.  We also attached a new 250GB disk for additional storage of data/programs.  The test users noticed
    performance issues right away so we temporarily upgraded it to the A4 option (8 cores/14GB RAM) and although it is better there are still performance issues.  For example to run a statement report in QuickBooks - viewing both connections side-by-side
    - it is 2x faster on the current "live" server we have hosted with the current hosting provider.  On the Azure VM we also tested installing QuickBooks on the C:\ drive and then on the attached 250GB disk - the F:\ drive - same performance results
    on both.  
    This is a new VM...fresh install....just so strange why it would be slower than the 8GB server.
    Does anyone have any ideas on where we can start to troubleshoot this?  
    Thanks so much!

    I understand the performance seen by end users are low. However, do you know what is really wrong? Do you see Azure VM using almost 80% of CPU & RAM, if not adding more RAM & CPU may not really help you.
    - How is the CPU usage of your on-premise node vs Azure VM
    - How is the memory usage of your on-premise node vs Azure VM
    Do you have any specific characteristics for Disk IO requirement? Can you check IOPS on on-premise vs Azure?

  • Mavericks Caching Server very slow on gigabit Microsoft Network

    Specs.  OS X 10.9.5 / Mac mini / 8 GB Ram - Connected to Gigabit ethernet, 2 TB Hard Drives, 2.3 Ghz i7
    Only a few days old.  I have done all available updates that Apple released.
    I had some difficulty getting the Mavericks caching server to work in the first place on our Windows Server 2012 network. Caching would work for the Server itself but none of my iPads or other Windows machines would cache or pull from the cache.
    My work around was to manually create a DNS Host Name and PTR on the Windows Server so that we could actually nslookup and ping the Mavericks Server by hostname.domain.local  This immediately fixed the issue and all hosts can cache and pull from the cache.
    Speed is an issue.  I currently cannot get any transfer speeds over 2 MB/s
    Using the caching server to deploy an app (I verified that the internet connection was not being used and that it was coming from the caching server)
    Connecting to a file share on the Windows Server and manually Copy/Paste files.
    I verified the slowness using Activity Monitor on the Mavericks Server.
    I have researched and found many similar complaints for the SMB2 protocol.  I did not find a good enough Terminal Command to paste that I felt comfortable doing and at a later date undoing when Apple fixes the slowness issue.
    Any help is greatly appreciated.
    Does anybody know the protocol that Mavericks uses by default to send out the cached updates etc (SMB)?
    If you know the correct command to paste into Terminal to force Mavericks to use SMB1 and also the command to undo this change I am willing to try that as well.
    Thank you in advance,
    TechJeff

    I tweaked the DNS a little bit more...Under DHCP IPv4 Properties --> DNS Tab.  I selected  "Dynamically update DNS A and PTR records for DHCP clients that do not request updates".  This allowed our DNS to register the Macintosh server and ipads etc.  My SMB2 speed is up to 300 mbps from 16 mbps.
    My caching server transfers are still maxing out at 2.1 MBps.  I have switched out my wireless unit to a 150 mbps unit that the iPad is connected to.  My next troubleshooting step will be to download an app in iTunes on a computer that is plugged in to our gigabit ethernet on the same switch as the Mac Server to elliminate any potential bottlenecks or wireless issues.
    Still looking for ideas if anybody has troubleshooting ideas.

  • RubyOnRails hosted with Oracle Appliation Server (very slow)

    Hi,
    i tried to host a rubyOnRails application on a oracle application server (more precisley: the included Apache).
    The test to use fastcgi stops with segmentation fault in the ruby framework....
    I am using Solaris 10 and installed ruby via www.sunfreeware.com
    rails with gem
    fcgi from www.fastcgi.com (compiled with gcc)
    fcgi package for ruby with gem
    Any experts out there?

    I'm sorry but currently I do not have SPARC hardware :-(
    Can you run "public/dispatch.fcgi" without error?
    Or, try Rails's FastCGI test case. The file name is "fcgi_dispatcher_test.rb". It should be in the railties/test directory under the installation directory of Rails. Run it with ruby and see if you can reproduce the segfault.
    If you can, try to get the stack trace with GDB, like this:
    gdb --args ruby fcgi_dispatcher_test.rb
    and you will see the stack trace when ruby gets the segfault. If there are not function names but only "??"s in the stack trace, you have to compile ruby with the debug symbols first, using gcc's "-g" option.
    By the way, there are lots of information about FastCGI in Rails on Rails's wiki:
    http://wiki.rubyonrails.com/rails/pages/FastCGI
    Also, FastCGI is not quite easy to configure. I recommend Mongrel or SCGI.

  • People soft HR server very slow

    Hi,
    I have successfully started people soft hr application server image. it working fine and i gor login prompt.
    But is is taking lot of time for login to application. Please tell me the solution..
    Thank you,
    GK

    What hardware are you on ?
    Nicolas.

  • Access Server through VIP (ACE 4710) but very slow

    Re:  Access Server through VIP (ACE 4710) but very slow
    Hi Shiva
    Kindly  Help .....Accessing the server very slow.., Plz check my real  configuration... this configuration is for application server and after  this i have to configure more serverfarm for different server like  webmail etc. in this ACE 4710. I have only one ACE 4710 .
    ACE Version A4(2.0) = is there supports Probe with this version.???  without probe server will work but very slow. And plz guide Nat-pool is required
    VIP :-- 172.16.15.8
    LB/Admin# sh run
    Generating configuration....
    no ft auto-sync startup-config
    logging enable
    logging host 172.29.91.112 udp/514
    resource-class RC1
      limit-resource all minimum 10.00 maximum unlimited
    boot system image:c4710ace-mz.A4_2_0.bin
    hostname LB
    interface gigabitEthernet 1/1
      description Management
      speed 1000M
      switchport access vlan 1000
      no shutdown
    interface gigabitEthernet 1/2
      description clientside
      switchport access vlan 30
      no shutdown
    interface gigabitEthernet 1/3
      description serverside
      switchport access vlan 31
      no shutdown
    interface gigabitEthernet 1/4
      no shutdown
    context Admin
      description Management
      member RC1
    access-list everyone line 8 extended permit ip any any
    access-list everyone line 16 extended permit icmp any any
    probe http probe1
      description health check
      interval 5
      passdetect interval 10
      request method head
      expect status 200 200
      open 1
    rserver redirect https_redirect
      description redirect traffic to https
      webhost-redirection / 302
      inservice
    rserver redirect maintenance_page
      description maintenance page displayed
      webhost-redirection /sry.html 301
      inservice
    rserver host web1
      ip address 192.168.10.3
      inservice
    rserver host web2
      ip address 192.168.10.4
      inservice
    rserver host web3
      ip address 192.168.10.5
      inservice
    serverfarm host http
      rserver web1
        inservice
      rserver web2
        inservice
      rserver web3
        inservice
    serverfarm redirect https_redirect_farm
      description Redirect traffic to https
    serverfarm redirect maintenance_farm
      description send user to maintenance page
    parameter-map type connection paramap_http
      description parameter connection tcp
      exceed-mss allow
    sticky ip-netmask 255.255.255.0 address source Sticky_http
      timeout activeconns
      serverfarm http
    class-map match-all REMOTE-ACCESS
    class-map type management match-any remote_access
      2 match protocol xml-https any
      3 match protocol icmp any
      4 match protocol telnet any
      5 match protocol ssh any
      6 match protocol http any
      7 match protocol https any
      8 match protocol snmp any
    class-map match-all slb-vip
      2 match virtual-address 172.16.15.8 tcp eq www
    policy-map type management first-match remote_access
      class class-default
        permit
    policy-map type management first-match remote_mgmt_allow_policy
      class remote_access
        permit
    policy-map type loadbalance first-match slb
      class class-default
        serverfarm http
    policy-map type inspect http all-match slb-vip-http
      class class-default
        permit
    policy-map multi-match client-vips
      class slb-vip
        loadbalance vip inservice
        loadbalance policy slb
        loadbalance vip icmp-reply active
        inspect http policy slb-vip-http
        connection advanced-options paramap_http
    interface vlan 30
      description "Client Side"
      ip address 172.16.15.24 255.255.255.0
      access-group input everyone
      service-policy input client-vips
      no shutdown
    interface vlan 31
      description "Server Side"
      ip address 192.168.10.1 255.255.255.0
      service-policy input remote_access
      no shutdown
    interface vlan 1000
      description managment
      ip address 172.29.91.110 255.255.255.0
      service-policy input remote_mgmt_allow_policy
      no shutdown
    ip route 0.0.0.0 0.0.0.0 172.16.15.1
    snmp-server contact "PHQ"
    snmp-server community phq group Network-Monitor
    snmp-server trap-source vlan 1000
    username admin password 5 $1$b2txbc5U$TA74D920oSdd2eOZ4hSFe/  role Admin domain
    default-domain
    username www password 5 $1$.GuWwQEK$r8Ub4OcE3l190d5GA4kvR.  role Admin domain de
    fault-domain
    username prem password 5 $1$8C7eRKrI$it3UV4URZ26X4S/Bh6OEr0  role Admin domain d
    efault-domain
    ssh key rsa 1024 force
    banner motd # "ro" #
    Regards,
    Prem

    Hi Shiva,
    plz guide i'm new with ACE LB, also find my n/w design for connected ace to server. but server accessing very very slow, but when i connect through my old server software LB (with two interface)then accessing very fast. I just replace my old serverLB(with two interface) to ACE4710 and connect the same scenario then why not server accessing smoothly with VIP .Reply soon only I connect ACE's two interface with switch.....
    Regards,
    Prem

  • Oracle 10g xe:  speed is very slow

    Hi
    I ve just migrated my application to oracle 10g xe but i found this small server very slow even not only slow but it holds all the resources of the pc that is running oracle 10g xe server. My application is a product and can be run on single pc. Can any body tell me how can i tune 10g xe to get my pc faster and what is the minimum requirement for 10g xe server because it is very problem for me to ask every customer to have 2.0 GHz pc with 1GB ram. At the moment i am use 1.7 GHz pc with 256 MB ram but it is horribly slow on it.
    Regards
    Faheem

    256 MB of RAM is the minimum that Oracle will even install in (512 MB if you're using Vista). Assuming that the installer defaults to reasonably minimal memory configurations in that sort of environment (which I've not tested but seems reasonable given the defaults I've seen it choose), are you running anything other than Oracle on this machine? Since you're so close to the lower limit on hardware resources, running other applications at the same time Oracle is running could well be forcing it to page RAM at a frantic clip. If you're seeing a log of swapping going on and you have to run the other applications that are consuming RAM, you may be able to decrease Oracle's RAM utilization by decreasing the cache size, though that may have its own set of negative performance implications.
    It's been a while since I've seen a business that had machines with only 256 MB of RAM in regular use. Heck, my web browser regularly uses 50 or 60 MB of RAM. If you are targetting that older hardware, though, you may want to consider other databases. Oracle Lite, for example is designed for small footprint applications.
    Justin

  • CQ5 server performance is very slow ?

    Hello,
    I deployed my project on publish server, but both the server responding very slow, Is it the CQ5 server the very slow?
    Please let me know how to make more faster performance of CQ5 server, please let me know is there any configration we have to do?
    For showing the page around it takes 10min, how to solve such issues.
    Please let me know any perfoamance tuning guide/tricks.
    Regards,
    Satish

    For starters answers to a few questions would help:
    1. What kind of hardware config is in place? (RAM, disk-space)
    2. Which OS are you running instances? Are both author and publish on same machine?
    3. Have you checked error logs?
    From the problem description you have provided 1st seems to be the main issue.
    - Ashish

Maybe you are looking for

  • Is there a way for skype to remove a certain user

    For a long while now, there is a skype user who has been harrasing me and my friends and we keep blocking him and he sends others to harras us and whenever we make new accounts he keeps finding them out and continues to do the same, we have reported

  • Crystal 2008 not showing a Hash Value correctly

    We are using a SQL database with Crystal 2008. The Problem: We are having some issues displays the hash value of a varchar(20) in our crystal reports. Every value in the field is either going to be a Null or 20 characters long. We are getting varying

  • Ignoring the DOCTYPE element while parsing the xml

    I am using JAXB parser to read from and write into my xml file using java code. My xml file contains a DOCTYPE element pointing to a .dtd file which does not exist, due to which I get a FileNotFoundException when JAXB tries to read the xml file. Henc

  • LDAP authorization problem in OC4J 10.1.3. using OID

    I'm attempting to secure a j2ee application using OID and SSO. I'm using the standard OID Security Provider.As long as my user in ldap is located within a group that is part of the cn=groups everything works fine. However, if the user is defined in a

  • Doubt in DUAL TABLE

    Hi, below is one query SQL> select * from dual; D XNow from the below Query I came to know that there is one field in the dual table DUMMY which is having VARCHAR2(1) SQL> desc dual; Name                                                  Null?    Type