Performance issue of SAP with Oracle 10 on Sun SPARC T5240 server

Dear friends,

We have a performance issue after the migration of our basic system of SAP ERP 6.0. To new servers, we moved a month ago.
The report of EarlyWatchAlert SAP response time of CPU is too high, although the CPU utilization is never more than 5%,

The current system is:

Database server: Sun SPARC Enterprise T5240 Server - 2 CPU´s with 6 core wire 8, 1.2 Ghz 32 GB RAM
and we use a different identical server configured as an application server.

Database is Oracle 10.2.0 and Solaris 10 operating system.

The problem is CPU average response time is 450 ms and maximum CPU load is 5% percent.

Configuration prior to migration with the old servers, we got the answer of CPU: 150 ms and max CPU load: 50%.
Old configuration: 2 X HP rp3440, 2 X PA 8800 (2 core, 1.0 GHz) CPU.

You have experience with a similar situation, setting that could be bad for server CPU´s not making full use?
or you know any similar configuration for benchmark?

Thanks in advance

Uzan

The new server's processors in Niagara? If so you could run in the known performance issue identified in MOS Doc 781763.1 (Migration of fast single machine threaded CPU to CMT UltraSPARC T1 and T2 causes an increase in the CPU reports)

HTH
Srini

Tags: Database

Similar Questions

  • Performance issues for iOS with high resolution.

    I did an application with a resolution of 480 x 320 for iOS. It works very well.

    I remade it with a resolution of 960 x 640. In the AIR for iOS settings I set the resolution to 'High '.

    The great app looked at, but there is a noticeable decrease in performance.

    The app worked in the same way as the original app of lower resolution, but it had been delayed.

    Does anyone else have this problem?

    I'm doing something wrong?

    With my game, I got about 60 images per second on the 3GS and nearly 50 on the iPhone 4, with the keen. I had about 10 frames per second additional using: stage.quality = StageQuality.LOW;

    2.6 air. I tried with Air 2.7, but it seems that this command cannot be used here (?)

  • abandonment of Oracle 8i on sun solaris platform server

    Greetings

    I have a database of oracle 8.1.7 sitting on a sun solaris Server 8 I have to let go. can someone give me the steps?

    On the unix database do not depend on any service from the OS. It save it yourself in the registry. Droping the database on any UNIX flaver is so very simple, just delete all files in database, Redolog files, control file, spfile, password file

    You can find the files of data dba_data_files v$ datafile
    Redolog v$ logfiles
    controlfiles v$ controlfiles

  • Is there a performance issue associated with SPARQL property path?

    Is there a performance issue associated with SPARQL property path?

    When we use paths property is our SPARQL queries, the queries never ends. I have a general problem, or do you have a problem with Jena and jena adapter version?

    We run Oracle 12 c. The Jena adapter has version 12.1.0.1.

    Thank you

    By Oyvind

    None of these requests ends. We have 300000 tuples in the model.

    SELECT subclass, superClass

    TABLE (SEM_MATCH)

    "SELECT? subclass? superclass WHERE {? rdfs:subClassOf + subclass? superclass} LIMIT 10'.

    SEM_Models ('isall1_x'),

    NULL, null, null, null,

    (= T, timeout = 100, qid = 123, STRICT_DEFAULT = F'));

    SELECT subclass, superClass

    TABLE (SEM_MATCH)

    "SELECT? subclass? superclass WHERE {graph? g {? subclass rdfs:subClassOf +? superclass}} LIMIT 10'.

    SEM_Models ('isall1_x'),

    NULL, null, null, null,

    (= T, timeout = 100, qid = 123, STRICT_DEFAULT = F'));

  • Performance issues with large number of nodes

    I am creating an application to display graphics (large), for example:

    graph.png

    But I ran into some performance issues, even for a relatively small number of nodes in the scene graph (+-2000 in the picture above). The graph is built, step by step, adding circles and paths to a StackPane. Circles and paths can be semi-transparant. For a small number of nodes, I get a solid 60 FPS, but this decreases over time to about 5 frames per second. As soon as I stop adding new nodes, the framerate shoot again up to 60 images per second. The framerate drop even when all the nodes are outside the viewport.

    My questions are:

    * Is Platform.runLater () call to 2000 times a minute too?

    * This might just be a problem with my graphics card? (I have an Intel HD Graphics 3000)
    * JavaFX pulse recorder says such things, are there meaningful information in that I'm missing?

    PULSE: 1287 [163MS:321MS]

    T14 (0 + 0ms): col of CSS

    T14 (0 + 5ms): layout pass

    T14 (6 + 152ms): waiting for the minutes of the previous

    T14 (158 + 0ms): copy the State for graphic rendering

    T12 (159 + 0ms): dirty opts calculated

    T12: Path of the slow form for null

    T12 (159 + 160ms): painted

    T12 (319 + 2ms): Presentable.present

    T12 (321 + 0ms): completed the presentation of painter

    Counters:

    Background image of the region used cached: 14

    NGRegion renderBackgroundShape slow path: 1

    Nodes displayed: 1839

    Nodes visited during rendering: 1840

    Kind regards

    Yuri

    Basically, try some optimization of performance ranging from the simple to the complex.   Each of the changes below may provide you with an increase in performance.  Some will probably increase performance much more that others (depending on where is the real bottleneck).  I would probably start by replace the paths to the lines and reduce the number of Platform.runLater calls (as adding nodes that fall within the viewport can be difficult only).

    > The framerate drop even when all the nodes are outside the viewport.

    Place the nodes in the graph, which fall inside the viewport.

    > Is Platform.runLater () call to 2000 times a minute too?

    Yes, there is no reason to call it more than 60 times a minute when the framerate of JavaFX is capped at 60 frames per second by default.

    > This might just be a problem with my graphics card? (I have an Intel HD Graphics 3000)

    Yes, it's a graphics system relatively low-end.  But, look at the comment of developer below - your CPU and choice of graphic primitives can also affect rendering speed.

    > Adding circles and the paths to a StackPane

    You don't need a StackPane to this, a group is a container easier and probably better.

    > may be semi-transparant

    Remove transparency * may * cause acceleration.

    ----

    You run may be:

    https://JavaFX-JIRA.Kenai.com/browse/RT-20405 : improve the rendering of path performance

    Maybe if you use lines rather than the paths, performance might improve.

    A comment by a developer on this performance tweak application is:

    «It is quite normal for applications that use arbitrary paths (if the node path objects, SVGPath, polyline, or polygon) because these paths are rendered in software.» As card circle, Ellipse, line and Rectangle very primitive forms easily to the operations that can be performed entirely on the GPU, which makes them essentially cheap. There is no need to compare the rendering of a complicated shape for rendering of simple primitives for this reason. »

    ----

    Setting the cache indicators can help, but probably only if you animate nodes.

    ----

    Present level of detail of your graph functionality so a chart with zoom out is not make as many nodes as a part of zoomed in.

    ----

    You run any code important calculation on the JavaFX application thread that could stall it?

    Can make you available a ftom so that others can reproduce your problems?

  • Performance issues with Photoshop CS6 64-Bit

    Hello-

    Issue at hand: in recent weeks, I noticed significant problems with performance since the last update PS CS6 using the Adobe Application Manager, from the unexpected shut downs to bring my computer to a crawl (literally, my cursor seems to crawl on my screens). I'm curious to know if anyone knows these issues, or if there is a solution I have not yet tried. Here is a list of actions that give rise to these performance issues - there are probably more that I have not experienced due to my frustration, or were not documented as occurring several times:

    • Opening files - results by hanging processes, takes 3-10 seconds to solve
    • Paste from the Clipboard - results by hanging processes, takes 3-10 seconds to solve
    • Saving files - takes 3-10 seconds to open the dialog box, another 3 to 10 seconds to return to the normal window (saving an image PNG compressed)
    • The eyedropper tool - will crash Photoshop on the desktop, or take 5 to 15 seconds to load
    • Try to navigate any menu - Photoshop crash on the office or take 5 to 15 seconds to load

    Attempts I took to solve this issue, which failed:

    • Uninstalled all fonts I have added since the last update (it's a pain in the *, thanks to be glitch Windows Explorer)
    • Uninstall and reinstall the application
    • Edition 32-bit use
    • Change process priority to above normal
    • Confirm the process for all available cores of the processor affinity
    • Change the configuration of the performance of Photoshop options
      • 61% of memory is available to Photoshop to use (8969 MB)
      • History States: 20; Cache levels: 6; Tile cache size: 1024K
      • Records of work: active on the production of SSD, ~ 10GB of available space
      • Dedicated graphics processor is selected (2 x nVidia cards in SLI)

    System information:

    • Intel i7 2600 K @ 3.40 GHz
    • 16 GB of RAM Dual Channel DDR3 memory
    • 2 x nVidia GeForce GTS 450 cards, 1 GB each
    • Windows 7 Professional 64 bit
    • Adobe Creative Cloud

    This problem is cost me time that I work every day, and I'm about to start looking for alternatives and cancel my subscription if I can't get this resolved.

    Have you tried to restore your preferences to set the parameters of performance return to their default values and restart Photoshop? http://blogs.Adobe.com/Crawlspace/2012/07/Photoshop-basic-troubleshooting-steps-to-fix-MOS t - issues.html #Preferences

  • Performance issues with built-in security and ODP

    Hello

    During the performance test for opening a database connection, I noticed that there is a problem of performace huge when using externally identified users and ODP with Oracle 11.1.0.6 client and .net 3.5. The test runs 30 times slower with an external user identified compared to a database of identified user.

    I also noticed that System.Data.OracleClient does not lead to alterations in the significant performance for users of database identified outside vs.

    The test environment is Vista 64 and VS2008 and I see no significant difference by using 32-bit vs 64-bit Oracle client.

    Is this a known problem and is - it a solution for this?

    Kind regards
    Oyvind

    It just occurred to me that you are on x 64. If you use 64-bit software, you need to apply 11107 RDBMS patch to the client because there are currently no group ODAC 11106.20 for x 64, but patch 11107 customer will give the same functionality that is in ODAC 11106.21.

  • Performance issue with the submodels

    Hello
    I'm working on submodels and my requirement needs only one main calling location several specific submodels (a location may have several own submodels, e.g.: US_subtemp1, US_subtemp2, US_subtemp3... in the same way to other locations).
    I would like to know is there any performance issue associated with calls in the submodels and on how this decrease in performance can be minimized.

    Kind regards
    Arvind

    Use of the submodels with components imported alongside repeated sections in the main template layout is not recommended when the number of repetitions is high and the size of the document is large. BI Publisher optimize the xsl transformation internally, but it is not applied to xsl inside models of void.
    One of the extreme scenario is a main model set only a repeating section that matter a submodel of the header and the footer.
    A body of the repeating section is defined in the subtemplate. In this scenario, there is no xsl optimization made and you can easily see some differences in performance.

    As long as you don't need to repeat the layouts of submodels, you don't need to worry about this performance issue.

    Thank you
    Shinji

  • Performance issues at the opening of business rule

    Hello

    We work in collaboration with Hyperion version 9.2.1 and we have performance issues when opening the business rules. I have analyzed the issue and discovered that it has something to do with the assignment of access privileges to the rule.

    The authorisation scheme looks like as follows:

    User A is assigned to the group G1
    User B is assigned to the Group G2
    Group G1 is assigned to the XYZ group
    Group is assigned to the XYZ group G2
    Group XYZ is the owner of the 'basic user' delivery to the planning application.

    Without attributing any unrestricted access the rule company opens immediately.
    By assigning the privilege to access the group G1/G2 (post or get) the business rule opens immediately.
    By assigning access privilege to the XYZ group the business rule opens after 2-5 minutes.

    Anyone has an idea why this happens and how to fix this?

    Kind regards
    ULI

    Edited by: user13110201 the 12.05.2010 04:31

    This was a problem with the business rules for quite some time. Oracle made front and rear markets in later versions than yours; and they have issued patches address, if it is not completely solved the problem. Finally things seem to be much better in 11.1.1.3, although YMMV.

  • DB performance issue

    Hi friends,

    We know the performance issue with our applications/database oracle.

    I run the OEM and I got the following charts in the report:
    http://farm3.static.Flickr.com/2447/3613769336_1b142c9dd.jpg?v=0
    http://farm4.static.Flickr.com/3411/3612950303_1f83a9f20.jpg?v=0
    http://farm4.static.Flickr.com/3411/3612950303_1f83a9f20.jpg?v=0

    Is there evidence that these cards can give re: performance problem?
    What other charts in OEM who can help solve or give assistance performance problem?

    Thank you very much in advance

    ytterp2009 wrote:
    Thank you Charles,.

    The server has 16 GB of Ram... way means that, due to limitations of 32-bit on windows only 4 GB of Ram was used and the 12 remaining GB is inactive?
    What is the proper way to tune?

    There are restrictions on how the memory beyond 4 GB can be used by Oracle. As far as I know, the memory is reserved for the buffer cache.

    Not all memory below the 4 GB limit is available for programs. Some of this memory is laid out in memory of the device, such as the video cards, RAID cache on board, etc., and some of the memory Windows is needed to track the objects window, icons, etc. Although it is possible to back up 2 GB per process limit to 3 GB, making Windows limit to use for its own purposes the memory that remains after the memory is drawn to embedded devices, and I think that the Oracle Metalink site does not recommend trying to go up the by the limit process completely to 3 GB. And this low by the process boundary should be reserved for the memory window. Your current value of pga_aggregate_target should be checked, because there is no way that the apparent present value could enter into the available memory.

    I agree with Martin - the best way to take full advantage of the memory is to pass on a 64-bit platform. Most, if not all the memory limit headaches disappear on a 64-bit platform. Of Windows 2003 Standard edition supports up to 32 GB of memory, this could be an option for you. It may or may not be a huge effort, but this means system loss of time (which can be considered a reason to call it a huge effort). You will probably find that the server, if less then three years, will support a 64 bit version of the operating system, but check the 64-bit versions of all the drivers are available and consider replacing hard disks containing the operating system if you need to return to the current operating system.

    Charles Hooper
    IT Manager/Oracle DBA
    K & M-making Machine, Inc.

  • R12 performance issue

    Salvation;

    I need to take some advice user forums. If the instance of r12 as so slow someproblem, html page just so latelty etc... but cpu normal usege and dbf file has sufficient space.

    1. what should be the way forward?
    2. what timetable should be apply (e.g. exec fnd_stats.gather_schema_statistics ('ALL');)
    3. What tools can be used for her

    Thanks a lot for the wizard

    concerning

    Helios,

    The following documents/links provide guidelines for the implementation of the JVMs (groups/OC4J instances Jserv) for online applications in 11i and R12 applications:

    Note: 362851,1 - instructions for installation of the JVM in applications e-Business Suite 11i and R12
    https://MetaLink.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=362851.1

    Note: 462550.1 - dump of the heap JVM to generate E-Business Suite 11i and R12
    https://MetaLink.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=462550.1

    Last JVM Tuning recommendations for Apps 11i
    http://blogs.Oracle.com/schan/2007/03/01

    Setting of Java virtual machines with 11i applications
    http://blogs.Oracle.com/schan/2007/02/16#A1230

    Configuration FMV of mid-layer for Apps 11i
    http://blogs.Oracle.com/schan/2006/08/01#A494

    For the adjustment of the other components of the application (CM, settings initialization, the top of the SQL statements page, application layer... etc), the following documents should be useful:

    Note: 169935,1 - Troubleshooting Oracle Applications performance issues
    https://MetaLink.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=169935.1

    Note: 244040.1 - Oracle eBusiness Suite patches recommended for performance
    https://MetaLink.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=244040.1

    Note: 744143.1 - performance Tuning on e-Business suite
    https://MetaLink.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=744143.1

    Kind regards
    Hussein

  • Performance issues when you build a large crossroads

    Hello

    I have a performance issues when you build a large crossroads.

    So here's my situation:

    We use Discoverer Plus 10.1.2.45.46c
    Database Oracle 9.2.0.6 on Windows 2003
    OAS 10.1.0.3
    1.5 GB of RAM on my PC

    -J' planned a workbook with 1 single worksheet that takes 2 minutes to run. The table generated in the database to store the results from 19 columns and rows to about 225000 (I know that's a lot, but it is what the customer needs).

    -When I opened the workbook, it takes about 2 hours to recover the data. The data is retrieved in groups of 1000 and at the beginning, the lines are read much faster than at the end. There are also 15 minutes more to build the crosstab. So overall, it takes 2 hours and 15 minutes for the crosstab display on my screen.

    Can someone explain to me:
    -Why does take so long?
    -What can I do to improve the execution other than changing the application or displaying the results in a regular tab? Is there some setting that I can do on the database of the Oracle Application Server?

    Note: I have reproduced the worksheet in a simple tab and demand it. The table generated in the DB to store the results is the same and it takes only 2-3 minutes to open this spreadsheet and extract all lines.


    Thank you!

    Mary

    Hi Mary
    If you have 225 000 lines in your basic spreadsheet, then it will take a lot of time to produce a crosstab. The reason is that Finder can not calculate how many buckets he needs until he has read all the data. I can almost guarantee that with 225 000 lines to read and manipulate that you are short of memory.

    You might be better suited someone create and populate a table with the results you need rather than try to get the discoverer to calculate values in crosstab on the fly. If the final result of the crosstab is a few lines of aggregated data, then this is what is right for your table. The advantage of using a table and a few SQL (or PL/SQL) is that you will not be using your local computer during the aggregation / sorting phase. Don't forget a crosstab also sort based on the values in the left columns, the columns you have aggregations (buckets) you will have and most necessary sort. Using a table, you can index or even partition the results that will make for a much faster recovery.

    As a tip, recommend Oracle, confirmed by myself during the exhaustive tests, no do not build large paintings to double entry due to the performance of touch that you will have. The tables are much more efficient because you can pull back x lines at once. You can't do that with a crosstab and all values must be read before that whatever it is is displayed.

    Does that help?
    Concerning
    Michael

  • HP Elitebook 8570p - Windows XP USB very slow and the transfer rate performance issues.

    Hello. I was wondering if anyone else knows some performance issues with the HP Elitebook 8570p and Windows XP Pro - SP3.

    I get a VERY slow start, general poor performance (waiting time when opening files and programs).

    I asked to burn in tests that show that everything is good.

    USB transfer rates are VERY slow (tried all ports of a Seagate FreeAgent USB drive, which works fine on other laptops etc.) for example a 30-minute transfer a 7gig single file of the USB HD on the desktop. Only 3 minutes to do the same on another laptop.

    I think there are problems with the drivers, like Windows 7 works very well and does boot from a bootable USB.

    USB transfer rate are also good when starting from a Windows boot environment.

    I installed HP SoftPaq Download Manager, and all the drivers are up to date.

    Hello:

    I think outside of the box here... Select the Intel (r) 7 Series Chipset Family SATA AHCI Controller instead.

    If it does not, I raise the white flag.

    Paul

  • Smartphone blackBerry Storm performance issues (and suggestions)

    I want to start and say that I don't like my phone.  When it works (which is most of the time), it works fine.

    But there are certainly problems of software.  As a software engineer, the OS has some memory serious management problems.  This seems to cause most of the problems I'm having with the phone.  I'm running the latest Verizon S/W (v4.7.0.148).

    Problem #1:

    I am a paranoid person.  There are a lot of personal information on my phone, I have currently international calls helped that I need this feature.  So to protect me my phone is locked when it is the case or after a period of inactivity time.  It is a good practice.  Part of the draw to the fate of the Blackberry is the security that you can configure on the device (I'm not paranoid enough to allow all the protections of encryption - yet).  Problem of the storm is that it can take 1 to 5 minutes to get the phone unlocked when unholstering.  It is not an exaggeration.  As the performance of the memory gets worse, time takes more time.  If I had to make an emergency call, it could be the difference between life and death.  5 minutes is a long time to wait to call 911.  This must be corrected!

    Problem #2:

    The phone must be "reset" once a day to remember "lost."  It is just poor programming.  I don't know if this problem of BB OS or Apps I'm running, but in both cases, this isn't fair.  After the reboot if I go to the display of memory under options I could have about 3-5 MB of free memory.  After a few hours of use, this will almost always '0 '.  I installed MemoryUp Pro, which seems to have extended the period of time between the battery grips, but I still don't think we should ask all owners of BB Storm to pull there battery once a day.  The other answer I get is "do not run so many Apps.  I get all my applications when finished.  Are the only ones that I continue to turn: Blackberry Messenger, Yahoo Messenger, Google Talk and Google Maps (Latitude).  Other applications running, you can't get out (phone, browser).  I tried doesn't work is not the 'optional' tricks and performance has not really much better.

    Problem #3:

    Missed calls.  This is probably related to problems of memory above, but if the storm can be used as a phone, then I should buy something else.  Although the occurrence of this problem has gone down because I installed MemoryUp Pro and perform the reset once a day, sometimes still about 1 to 5 times.  It takes so long for the phone to 'wake up' when a call comes in (especially if it is holstered), at the time where I hit "Answer", a call has been Messaging voice or even worse, the phone doesn't ring at all.  All I get is a notification of appeal lacks the 'unknown number '.

    Problem #4:

    Battery performance could be improved.  The battery that comes with the storm has about 24 hours on 24 with the Radio and Bluetooth.  Really, this isn't a problem if you know it.  I solved the problem by buying a 2700 mAh battery for extended life of BoxWave I use when traveling.  Makes the storm bit bulky, it will give me 2-3 days of life.  I don't know how this could be improved if not

    I hope that the developers of RIM are trying to solve some of these performance issues.  Certain tasks should be a higher priority as they seem to have (like phone & Unlock).

    Sean

    Here is the link...

    http://www.BlackBerryForums.com/General-9500-series-discussion-storm/196496-latest-9530-OS-4-7-0-208...

  • Need help to unlock the user account HR in the example (rich Web Applications with Oracle ADF development)

    I am very new to Java development and have tried to launch the sample application (Development of Web Applications with Oracle ADF rich) in the start-up, the author of this app has advised developers to unlock the HR user account.

    What I did to connect to Oracle as user = system/password = system and running this SQL command 'ALTER USER HR IDENTIFIED BY NewPwd ACCOUNT UNLOCK"in Sqlplus and with a return code 2.

    Don't code 2: success or failure?

    However, the HR user is always unlocked after issuing this command, and can someone please tell me what I'm doing wrong?

    Thank you.

    Timo,

    Thanks for confirming. The essential difference is that the command must be run as

    SYS AS SYSDBA

    instead of such as SYSTEM

Maybe you are looking for

  • HP Envy hinge problem

    Have the same problem of hinge like so many others. Model laptop is HP Envy 1006ea 6 - Sleekbook Hinge began to crack, so before it is gone completely, a small amount of glue had been applied to other damage preent. It does not, the two hinges have n

  • Exception in DisplayRunMap.runMap problem

    I have a HP Pavilion a705W PC running on XP.  Although I get sound from two speakers, I don't get stereo, what makes some songs to play in the background only...  When I try to run a speaker test I get the message "Web page Message.  Exception in Dis

  • OfficeJet Pro L7555: Officejet Pro L7555 complete software will not add printer

    I installed the complete software of features on an Alienware laptop.  The printer is connected to my router wireless via an ethernet cable.  When I try to add the printer, the software identifies the printer, contact the printer, but after completin

  • How can I fix a STOP: 0x0000008E error?

    A few minutes after I start my labtop, I get the show above error code or an error such as 0x00000007a code. I have not installed Vista service packs. I tried to install Service Pack 1 and 2 but I got and error message when I tried to install service

  • The last call wins - Lesson 3-5

    In the 3-5 lesson is taught (as in Lesson 2) If a stream is parallel or sequential:"The last call wins."I remember from Lesson 1 which, in the order of operations of programming functional don't display the contract / meaning of the code.What exactly