A suggestion about statspack...

Hi ,
I need a suggestion in statspack and sql tuning/db performance when an application runs......
Imagine that I run some forms/reports e.t.c. developed with Developer Suite 10.2 , say form1 , form2 , form3 , form4 .... form15 in a time of 10 minutes...
Next examining the statpack report , i try to alter a db parameter let's say DB_CACHE_SIZE ......
Should I run exactly the same forms (form1 , form2 , form3 , form4 .... form15) in about 10 minutes and compare the two statspack report... or should I run other forms in the same (or about the same) amount of time?????
Something else.... Which is best of the following.. to alter one - by - one db parameter and compare the new statspack report to the older or alter two,three... db parameters at once and compare the new statspack report to the older....one.
Thanks , a lot
Simon

Click here and fill out the form.
(40845)

Similar Messages

  • Suggestion about Report Generation Toolkit

    I'm adding report generation capabilities to a labview product test application.  The report will be 2-4 pages long with text and plots.  For other applications, I've used Word Templates in the past using VBA and Visual Basis 6.   I had been planning to use the Report Generation Toolkit, but when I tried to run the examples Labview doesn't find the installation of Office, (I'm using Windows Vista).  I've already read other posts about this particular problem and other issues with the Report Generation Toolkit for Microsoft Office, including upgrading to Office 2007 and beyond and I'm beginning to wonder if there might be a better longterm solution than the Report Generation using Microsoft Office.
    The two alternatives that I'm considering are HTML, and Simplicity AI's PDF toolkit (free),
       http://www.simplicityai.co.uk/products_services/products/pdftoolkit/
    which I still have to investigate.  I figure I could always generate in HTML and then print to PDF using something like PDFcreator (free). 
    If anyone has any comments/reviews/suggestions about the report generation from Labview, I'd appreciate hearing them.

    Hello PointOnePa,
    What examples were you trying to run? Here's a good example on how to create report in Excel
    http://zone.ni.com/devzone/cda/epd/p/id/1001
    Which version of LabVIEW and Report Gen you do you have? For Reort Gen 2009, it offers support for MS Office 2007/2003/XP
    http://digital.ni.com/public.nsf/allkb/45E349F79A55EAE6862575EF00614134  
    Andy Chang
    National Instruments
    LabVIEW Control Design and Simulation

  • How to a make a suggestion about new features i'd like to see in itunes

    how to a make a suggestion about new features i'd like to see in itunes?
    I can't find any link to do this. I found a page where you can request songs or an album to be added, but i can't find a page to submit my suggestions for itunes i have for new features i'd like to see

    As of now there is no good, direct link for feedback on iTunes itself. Writing Apple might be the best option, with the website feedback page perhaps the next best.

  • I need some detail solutions and suggests about below these problems ?

    I need some detail solutions and suggests about below these problems:
    Problem 1: SAP Management Console cannot start successfully
    • Problem 1.1: Click on SAP Management Console, but yellow light continues for a long period of time.
    • Problem 1.2: In DOS, startsap command cannot start SAP R/3.
    • Problem 1.3: Oracle 9i database automatically shutdown by itself.
    • Problem 1.4: There is very low disk storage left (say less than 50MB) in the hard disk where Oracle 9i database is installed in the server.

    3.1 - If you client copy from client 000, you need to go to SCC4 and set the client to customizing chnages allowed;
    3.2 - If you do a client copy from client 800 (the one that SAP delivers data in) you should have data. Client 000 is empty (almost).
    3.3 - You should be able to change the password of SAP* PASS user.
    I am not sure which version you are dealing with, but ERP2004 and ERP2005 allow you to change the password suring installation.
    Also, there is a parameter that can be maintained that allows you to log on as SAP*. If you set as not available, no one can log on.
    Hope it helps,
    Leonardo De Araujo

  • Your opinion - suggestions about my website

    I have published my website http://www.pcnetworks.gr (κατασκευή και φιλοξενία ιστοσελίδων) and I would apreciate your opinion and suggestions about the design of it and any ideas on how to make it more attractive. Thank you in advance

    pcnw,
    You might elaborate on the present use of colours, particularly the triple colours used on the first page at the top and at the bottom for the three levels, and also used elsewhere. In this connexion, you might consider designating a colour to each level and use that in the further pages, where the red appears for all as it is now, and to have a fourth general colour for other aspects/purposes.
    The (final) colours chosen could reflect and give an impression of the levels: what they offer and what they require.

  • Suggestions about query optimization

    Hello,
    i have the following query i would like to write in the other way or add indexes/hints/pin in memory if it's possible so it could be better optimiized.
    Query is :
    SQL> explain plan for
      2  with a as
      3  (select * from
      4  (select msisdn,valid_from
      5  from prepaid_options_option
      6  where active =1 and option_id in (1,2) )a )
      7  select count(*) from [email protected], a
      8  where transaccessflag=6
      9  and cgpacallingparty=a.msisdn
    10  and optionid IN (16,17,18)
    11  and timestamp > a.valid_from
    12  and callcharge=0
    13  and internalcause='254';
    Explained.
    SQL> r
      1* select * from table(dbms_xplan.display)
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name                   | Rows  | Bytes | Cost  | Inst   |IN-OUT|
    |   0 | SELECT STATEMENT     |                         |     1 |   148 |   529K|        |      |
    |   1 |  SORT AGGREGATE      |                         |     1 |   148 |       |        |      |
    |*  2 |   HASH JOIN          |                         |     1 |   148 |   529K|        |      |
    |   3 |    REMOTE            |                         |    82 |  9922 |   529K| WENT   | R->S |
    |*  4 |    TABLE ACCESS FULL | PREPAID_OPTIONS_OPTION  |  4506 |   118K|    10 |        |      |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       2 - access("CALL_RECORD"."CGPACALLINGPARTY"="PREPAID_OPTIONS_OPTION"."MSISDN")
           filter("CALL_RECORD"."TIMESTAMP">"PREPAID_OPTIONS_OPTION"."VALID_FROM")
       4 - filter("PREPAID_OPTIONS_OPTION"."ACTIVE"=1 AND ("PREPAID_OPTIONS_OPTION"."OPTION_ID"=1
                  OR "PREPAID_OPTIONS_OPTION"."OPTION_ID"=2))
    Note: cpu costing is off
    20 rows selected.
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    PL/SQL Release 9.2.0.7.0 - Production
    CORE    9.2.0.7.0       Production
    TNS for HPUX: Version 9.2.0.7.0 - Production
    NLSRTL Version 9.2.0.7.0 - Production
    SQL> select * from [email protected];
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    PL/SQL Release 9.2.0.7.0 - Production
    CORE    9.2.0.7.0       Production
    TNS for HPUX: Version 9.2.0.7.0 - Production
    NLSRTL Version 9.2.0.7.0 - ProductionI think that the main problem could be in the remote partitioned table that is quite big .
    SQL> SELECT SUM (BYTES) / 1024 / 1024 / 1024 GB
      2    FROM [email protected]
      3  WHERE segment_name = 'CALL_RECORD';
            GB
    181.453125
    SQL> select num_rows,last_analyzed
      2   from [email protected]
      3   where table_name='CALL_RECORD';
      NUM_ROWS LAST_ANA
    928646610 12.03.09Can some suggestion about making changes in this query/objects be given based on this informations ?
    Thank you very much.

    Thans for the reply Urs,
    by changing that query as you suggested, i got different plan, although i can't fully understand if it means that it's better in the mean of faster execution time because i can't(yet) run those queries to see.
    new plan is :
    SQL> explain plan for
      2  with a as 
      3  (select msisdn,valid_from
      4  from prepaid_options_option
      5  where active =1 and option_id in (1,2) )
      6  select /*+ driving_site(c) */count(*) from [email protected] c,a
      7  where transaccessflag=6
      8  and cgpacallingparty=a.msisdn
      9  and optionid IN (16,17,18)
    10  and timestamp > a.valid_from
    11  and callcharge=0
    12  and internalcause='254';
    Explained.
    SQL>
    SQL>
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    | Id  | Operation              |  Name        | Rows  | Bytes | Cost  | Pstart| Pstop | Inst   |IN-OUT|
    |   0 | SELECT STATEMENT REMOTE|              |     1 |    78 |   529K|       |       |        |
    |   1 |  SORT AGGREGATE        |              |     1 |    78 |       |       |       |        |
    |   2 |   NESTED LOOPS         |              |     1 |    78 |   529K|       |       |        |
    |   3 |    PARTITION RANGE ALL |              |       |       |       |     1 |   128 |        |
    |*  4 |     TABLE ACCESS FULL  | CALL_RECORD  |     1 |    42 |   529K|     1 |   128 | WENT   |
    |   5 |    REMOTE              |              |     1 |    36 |    10 |       |       | !      |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       4 - filter("A2"."TRANSACCESSFLAG"=6 AND (TO_NUMBER("A2"."OPTIONID")=16 OR
                  TO_NUMBER("A2"."OPTIONID")=17 OR TO_NUMBER("A2"."OPTIONID")=18) AND "A2"."CALLCHARGE"=0 AND
                  "A2"."INTERNALCAUSE"=254)
    Note: fully remote operation, cpu costing is offas we can see the cost remained the same but there are some new columns as pstart and pstop.
    what do they mean?
    I think that it would be good to make statistics on that table , do you guys agree ?
    Also shoud i consider parallel hint option for that query ?

  • Suggestions about the best tool for quality check for an ADF application

    Hi All,
    I need a few suggestions about the best tool for quality check in our ADF applicaiton.
    ours is a small size WebCenter Portal application which neither uses any task flows nor consumes any portlets.
    It has many jspx pages that use ADF components like table etc, consume web services using web service clients, and has some java classes.
    We have come across below option to implement the code quality tools.
    1. Jdeveloper inbuilt Staus option in View tab
    2. PMD extension for Jdeveloper
    3. Red Samurai
    Few more suggestions or best practices would be really helpful.
    Thanks,
    Usha

    Some general ADF / Webcenter coding standards -
    http://umeshagarwal24.blogspot.com/2012/06/adf-coding-standards-check-points.html
    You can use JAudit as well as mentioned in the blog.

  • I am novice to LabView programmin​g. Any suggestion about the the good programmin​g style will be of great help. Thanks.

    I just wrote a small program for reading a ASCII file and writting the numbers to Arrays. Files are enclosed for reference. Any suggestion about the programming style quality or what is the best way for LabView programming will be of great help. Thanks in advance.
    Attachments:
    Reading_Text_File_into_Array.vi ‏32 KB
    37a8176a.cr5 ‏1 KB

    I'm home from work today so ... here's my modification to your VI. Use it with you existing data. As you get more exposed to LV's existing tools, you'll discover the shortcuts. No loops are necessary for your task.
    Hope this helps.
    - Kevin
    Attachments:
    Reading_Text_File_into_Array_New.vi ‏47 KB

  • My ipad was stolen today in China today. Any suggestions about police report?

    They haven been connected to a wireless network. Ialready sent the wipe order. Any suggestions about police report with serial ?

    It's doubtful you'll get it back.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • Iphoto causes half my screen to be reversed (screen split with the right side half now on the left side) and computer freezes. Any suggestions about a fix?

    iphoto causes half my screen to be reversed (screen split with the right side half now on the left side and the left hand side on the right.) and screen gets multiple blurry copies. Also the computer freezes. Any suggestions about a fix? Can I delete iphoto and reinstall? If so, will I lose my photos?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • IPhone music will not respond to Play button after being paused. The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    iPhone music will not respond to Play button after being paused.
    The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Provide some suggestion about items max volumn

    Hi experts
    I would like to know the max items number for B1.
    My customer have about 20,000 items, and every item have about 35 WH.
    Is this volumn OK for B1?
    could you provide some suggestion about items max volumn?
    Glen

    Hi,
    there is a MS. Excel file whose file name is database size estimator. The file is used to calculate the database size, growth per year and also it is useful to use before buy server and its component, I mean before installation.
    I use the file before implementing SAP B1 in a certain company that have 150,000 items and 30 whses. It is okay until present and the database still run smooth
    Rgds,

  • A suggestion about ipod touch

    Please pardon me ,I don't very goog at English ,I'm a chinese.I want to make a suggestion about ipod touch's "home"key,I think it is bad in the future if we often useing it.I hope APPLE Company can adding a new key instead now the "home" key on the screen in the next firmware!Thanks a lot!

    Click here and fill out the form.
    (40845)

  • I've read a lot of comments/suggestions about camera issues that it turns black when opening the phone camera but nothing is worked for me. I'm so frustrate on my iPhone 5s im using it like for a month, I thought its more better than Samsung but I failed.

    I've read a lot of comments/suggestions about camera issues that it turns black when opening the phone camera but nothing is worked for me. I'm so frustrate on my iPhone 5s im using it like for a month, I thought its more better than Samsung but I failed. Please help!!! I hope apple has something to do about this. Thanks.

    I would have had the phone looked at long before a month of problems.
    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support. You phone is under warranty and someone at an Apple store can help you.

  • I just upgraded my laptop from windows 7 to windows 8.1 and did not realise I had to deactivate and reload Acrobat 9. Any suggestions about what I can do to get Acrobat 9 back and working?

    I just upgraded my laptop from windows 7 to windows 8.1 and did not realise I had to deactivate and reload Acrobat 9. Any suggestions about what I can do to get Acrobat 9 back and working?

    Hi Jon,
    Were you using Acrobat IX standard or pro version? Is Acrobat currently installed on your system?
    You can download Acrobat using one of these Links:
    https://files.acrobat.com/a/preview/1677e343-25c3-409b-a89b-d324552e07ce - Acrobat IX Standard
    https://helpx.adobe.com/acrobat/kb/acrobat-8-9-product-downloads.html  - Acrobat IX Pro
    Please revert back if you face any challenges after Downloading and installing Acrobat IX.
    Regards,
    Rahul

Maybe you are looking for

  • UC Software

    Hi Everyone I'm in the process of upgrading our cucm software from 8.6.2 to 9.1.1 and I can't find the software on the website. the software that I'm looking for is CUCM,UCCX,CUC,CUPS, and CUEAC. If anyone can point me to the download links I would g

  • Snapshot alternatives?

    Snapshot hasn't been updated for a couple years (the 6.5 version comes with ZEN 7) and it always seems to crash w/ a memory error on large applications w/ a lot of registry entries. We are having to resort to 3rd-party packaging utilities (like the "

  • OAS 10.1.2 Java Edition

    Does anyone know where I can download the OAS 10.1.2.0.0 "Java Edition" in a single download? I cannot find it on the download page of the OAS. Only the full "Enterprise Edition" is available there in 4 cd's... Regards, Stan

  • URL Based Transaction Launcher not loading

    Hi All, There is a URL based transaction launcher configured to display a crm opportunity report. All the settings seem to be fine. The configuration is done correctly in the wizard. The URL is defined in view CRMV_IC_LTX_URL. The logical link and Tr

  • Nokia 5610 - how to make calls ring only on headph...

    Nokia 5610 - how to make calls ring only on headphone and not on phone??? Could someone help me out please??? I tried everything... Nothing works!!!