Perfomance Improvement -urgent

Hello friends,
Could you please help me to improve the perfomace of the below code
Below is my code
  IF SO_MATNR IS INITIAL.
    SELECT MARCMATNR MARCWERKS MARCDISMM MARCLGFSB
           MARDLGORT MARDLABST MARD~LGPBE
          INTO CORRESPONDING FIELDS OF TABLE IT_DATA
          FROM MARC
          INNER JOIN MARD ON MARDMATNR EQ MARCMATNR
                         AND MARDWERKS EQ MARCWERKS
          INNER JOIN MARA ON MARCMATNR EQ MARAMATNR
          WHERE MARC~WERKS IN SO_WERKS
            AND MARC~DISMM IN SO_DISMM
            AND MARD~LGORT IN SO_LGORT
            AND MARA~MTART IN SO_MTART
            AND MARA~LVORM EQ SPACE
            AND MARA~MSTAE IN SO_MSTAE
            AND MARC~LGFSB IN SO_LGFSB.
  ELSE.
    SELECT MARCMATNR MARCWERKS MARCDISMM MARCLGFSB
           MARDLGORT MARDLABST MARD~LGPBE
           INTO CORRESPONDING FIELDS OF TABLE IT_DATA
           FROM MARC
           INNER JOIN MARD ON MARDMATNR EQ MARCMATNR
                          AND MARDWERKS EQ MARCWERKS
           INNER JOIN MARA ON MARCMATNR EQ MARAMATNR
           WHERE MARC~MATNR IN SO_MATNR
             AND MARC~WERKS IN SO_WERKS
             AND MARC~DISMM IN SO_DISMM
             AND MARD~LGORT IN SO_LGORT
             AND MARA~MTART IN SO_MTART
             AND MARA~LVORM EQ SPACE
             AND MARA~MSTAE IN SO_MSTAE.
  ENDIF.
The main internal table IT_DATA is having nerly 1million 90 thousand recordsin production server
IF SY-SUBRC IS INITIAL.
*- Filter: Lagerort nicht leer -
    DELETE IT_DATA WHERE LGORT EQ SPACE.
    SORT IT_DATA ASCENDING BY MATNR WERKS LGORT.
    DELETE ADJACENT DUPLICATES FROM IT_DATA
                    COMPARING MATNR WERKS LGORT.
    LOOP AT IT_DATA ASSIGNING .
      MOVE SY-TABIX TO LVA_TABIX.
*- Filter vorhandene Lagerfachkärtchen für alle Dispomerkmale -
      SELECT MANDT INTO SY-MANDT
                   FROM Z48M3_STOCKCARDS UP TO 1 ROWS
                   WHERE MATNR EQ -MATNR.
        CONTINUE.
      ENDIF.
*- Filter Lagerbestand -
      PERFORM LAGERBESTAND IN PROGRAM Z48M_LFK_DRUCKEN
                        USING -DISMM.
*- Filter VB -
        WHEN 'VB'.
          PERFORM MAKTX USING -GTXT1.
          CONTINUE.
*- Filter VK -
        WHEN 'VK'.
          PERFORM MAKTX USING -GTXT1.
          CONTINUE.
*- Filter V1 -
        WHEN 'V1'.
          PERFORM MAKTX USING -GTXT1.
          CONTINUE.
*- Filter PD -
        WHEN 'PD'.
          SELECT SINGLE MANDT INTO SY-MANDT
                 FROM Z48M_UEBRIGMAT
                 WHERE MATNR EQ -GTXT1.
            CONTINUE.
          ENDIF.
*- Filter VP -
        WHEN 'VP'.
          IF  DELETE -
      DELETE IT_DATA INDEX LVA_TABIX.
    ENDLOOP.
  ENDIF.
ENDFORM.                    " daten_lesen
In side the loop of internal table it_data so many caliculations are going on and finally if the quantity is (menge) is 0 they are deleting the record from the it_data.
The output is to display the final it_data after the above caliculations in the loop.
Its taking nearly 2 or 3 days without giving any ouput .
I have avoided 1) Select * statments
2) select statments inside the loop.
But due to above million records its not showing any improvementCould you please suggest me some important points to improve the performance of the above program.
Shall i go for sorted internal table ,the how the code will be by using sorted itab 
waiting for replies,
Points will be awarded for  your help.
Arvind.

HI ,
i tried the above points as u mentioned by using for all entries than join i tried but still the problem is there .
The total time consumption is inside the loop .
i forgot to paste some code ,below is my code..
  IF SY-SUBRC IS INITIAL.
*- Filter: Lagerort nicht leer -
    DELETE IT_DATA WHERE LGORT EQ SPACE.
    SORT IT_DATA ASCENDING BY MATNR WERKS LGORT.
    DELETE ADJACENT DUPLICATES FROM IT_DATA
                    COMPARING MATNR WERKS LGORT.
    LOOP AT IT_DATA ASSIGNING .
      MOVE SY-TABIX TO LVA_TABIX.
*- Filter vorhandene Lagerfachkärtchen für alle Dispomerkmale -
      SELECT MANDT INTO SY-MANDT
                   FROM Z48M3_STOCKCARDS UP TO 1 ROWS
                   WHERE MATNR EQ -MATNR.
        CONTINUE.
      ENDIF.
*- Filter Lagerbestand -
      PERFORM LAGERBESTAND IN PROGRAM Z48M_LFK_DRUCKEN
                        USING -DISMM.
*- Filter VB -
        WHEN 'VB'.
          PERFORM MAKTX USING -GTXT1.
          CONTINUE.
*- Filter VK -
        WHEN 'VK'.
          PERFORM MAKTX USING -GTXT1.
          CONTINUE.
*- Filter V1 -
        WHEN 'V1'.
          PERFORM MAKTX USING -GTXT1.
          CONTINUE.
*- Filter PD -
        WHEN 'PD'.
          SELECT SINGLE MANDT INTO SY-MANDT
                 FROM Z48M_UEBRIGMAT
                 WHERE MATNR EQ -GTXT1.
            CONTINUE.
          ENDIF.
*- Filter VP -
        WHEN 'VP'.
          IF  DELETE -
      DELETE IT_DATA INDEX LVA_TABIX.
    ENDLOOP.
  ENDIF.
ENDFORM.                    " daten_lesen
****the below code is of the performs inside the loop.
FORM LAGERBESTAND USING UPA_MATNR TYPE TY_DATA-MATNR
                        UPA_WERKS TYPE TY_DATA-WERKS
                        UPA_LGORT TYPE TY_DATA-LGORT
                        UPA_DISMM TYPE TY_DATA-DISMM
                        URA_BWART TYPE TABLE
               CHANGING UPA_XOK TYPE FLAG.
  DATA: LWA_MARD TYPE MARD,
        LWA_MSEG TYPE MSEG,
        LIT_MSEG TYPE STANDARD TABLE OF MSEG,
        LIT_HBGK TYPE STANDARD TABLE OF Z48M_HBGK.
  MOVE 'X' TO UPA_XOK.
  CHECK UPA_DISMM EQ 'PD'
     OR UPA_DISMM EQ 'VP'.
  SELECT SINGLE * INTO LWA_MARD
         FROM MARD
         WHERE MATNR EQ UPA_MATNR
           AND WERKS EQ UPA_WERKS
           AND LGORT EQ UPA_LGORT.
  IF SY-SUBRC IS INITIAL.
    SELECT * APPENDING TABLE LIT_MSEG
             FROM MSEG
             WHERE MATNR EQ UPA_MATNR
               AND WERKS EQ UPA_WERKS
               AND LGORT EQ UPA_LGORT
               AND BWART IN URA_BWART
               AND SOBKZ EQ 'Q'
               AND XAUTO EQ SPACE.
    PERFORM DEL_STORNO_BELEGE IN PROGRAM Z48M_ZAEHLISTE
                              TABLES LIT_MSEG.
    REFRESH LIT_HBGK.
    LOOP AT LIT_MSEG INTO LWA_MSEG.
      SELECT * APPENDING TABLE LIT_HBGK
               FROM Z48M_HBGK
               WHERE MBLNR EQ LWA_MSEG-MBLNR
                 AND MJAHR EQ LWA_MSEG-MJAHR
                 AND ZEILE EQ LWA_MSEG-ZEILE.
    ENDLOOP.
    PERFORM GET_VORAB_BESTAND IN PROGRAM Z48M_ZAEHLISTE
                          TABLES LIT_HBGK
                           USING UPA_MATNR UPA_WERKS UPA_LGORT
                        CHANGING LWA_MARD-UMLME.
    IF LWA_MARD-UMLME IS INITIAL
    AND LWA_MARD-LABST IS INITIAL.
      CLEAR UPA_XOK.
    ENDIF.
  ENDIF.
ENDFORM.                    " lagerbestand
FORM del_storno_belege TABLES   pt_mseg STRUCTURE mseg.
  DATA: lwa_mseg TYPE mseg.
Stornierte Belege
  LOOP AT pt_mseg INTO wa_mseg.
Wurde Beleg storniert?
    READ TABLE pt_mseg INTO lwa_mseg
           WITH KEY  sjahr  = wa_mseg-mjahr
                     smbln  = wa_mseg-mblnr
                     smblp  = wa_mseg-zeile.
    IF sy-subrc = 0.
Stornierter Beleg und Stornobeleg löschen
      DELETE pt_mseg WHERE mblnr = wa_mseg-mblnr
                       AND mjahr = wa_mseg-mjahr
                       AND zeile = wa_mseg-zeile.
      DELETE pt_mseg WHERE mblnr = lwa_mseg-mblnr
                       AND mjahr = lwa_mseg-mjahr
                       AND zeile = lwa_mseg-zeile.
    ENDIF.
  ENDLOOP.
FORM get_vorab_bestand    TABLES   pt_z48m_hbgk
                          USING    p_matnr
                                   p_werks
                                   p_lgort
                          CHANGING p_menge.
  DATA: lt_z48m_hbgk TYPE TABLE OF z48m_hbgk,
        lwa_z48m_hbgk TYPE z48m_hbgk.
  DATA: lf_sbdkz LIKE marc-sbdkz,
        lf_sum411 LIKE z48m_hbgk-rest,
        lf_sum412 LIKE z48m_hbgk-rest.
Initialisierung
  REFRESH: lt_z48m_hbgk.
  CLEAR: p_menge, lf_sbdkz, lf_sum411, lf_sum412.
  SELECT SINGLE sbdkz
  INTO   lf_sbdkz
  FROM   marc
  WHERE  matnr = p_matnr
  AND    werks = p_werks.
sc88wa2-15.11.05 angepaßt an ZPRUEF_HBGK
HBGK auslesen (Nicht physisch entnomme Mengen)
  SELECT *
  FROM   z48m_hbgk INTO TABLE lt_z48m_hbgk
  WHERE  matnr      = p_matnr
  AND    werks      = p_werks
  AND    lgort      = p_lgort.
AND    zzdruck_kz = space
AND    mblnr_v    = space
AND    kz_vorab   = space
AND    bwart     <> c_bwart_411.
CHECK sy-subrc = 0.
SORT lt_z48m_hbgk BY erdat.
LOOP AT lt_z48m_hbgk INTO lwa_z48m_hbgk.
  Nicht physisch entnommene Menge
   ADD lwa_z48m_hbgk-rest TO p_menge.
ENDLOOP.
sc88wa2-15.11.05 angepaßt an ZPRUEF_HBGK
  LOOP AT lt_z48m_hbgk INTO lwa_z48m_hbgk.
    CASE lwa_z48m_hbgk-bwart.
      WHEN 411.
      Offene Menge der 411er Datensätze
      bei Einzelbedarf muß das DruckKz. noch beachtet werden
        IF ( lf_sbdkz = 2 ) OR
           ( lf_sbdkz = 1 AND lwa_z48m_hbgk-zzdruck_kz IS INITIAL ).
          lf_sum411 = lf_sum411 + lwa_z48m_hbgk-rest.
        ENDIF.
      WHEN 412.
      Offene Menge der 412er Datensätze
      nur für initiales Druckkennzeichen
        IF lwa_z48m_hbgk-zzdruck_kz IS INITIAL.
          lf_sum412 = lf_sum412 + lwa_z48m_hbgk-rest.
        ENDIF.
    ENDCASE.
  ENDLOOP.
gebucht nicht entnommen berechnen
  p_menge = lf_sum412 - lf_sum411.
ENDFORM.                    " get_vorab_bestand
Could you please suggest some points for the above code to improve perfomacnce.
Thanks in advance,
Arvind.

Similar Messages

  • SELECT FROM AUSP perfomance improvement

    Hi!
    Generally speaking our problem is long runtimes for transactions dealing with configuration (CU50, VA01/VA02/VA03).
    ABAP runtime analysis (SE30) and performance trace analysis (ST05) clearly show that 85% percents of total execution time is spent on single SELECT statement of standard FM (CLSE_SELECT_AUSP), which is called many thousands of times:
              select * from ausp appending table x_ausp
                                 for all entries in ix_objek
                     where objek  eq ix_objek-low
                     and   mafid  in ix1_mafid
                     and   klart  eq klart
                     and   atwrt  in x_wertc
                     and   atflv  in x_wertn
                     and   atcod  in ix1_atcod
                     and   datuv  <= key_date.
    In spite of database specific request always looks like:
    SELECT * FROM AUSP
    WHERE MANDT = :A0
    AND "OBJEK" = :A1
    AND "MAFID" = :A2
    AND "KLART" = :A3
    AND "DATUV" <= :A4
    and access is done based on index AUSP~N3 range scan we have an unacceptable runtimes.
    Can anybody suggest any perfomance tuning? We tried to create custom index based only on fileds from previous select, but improvment is too small. Is it possible to activate some type of table buffering for AUSP? Any help appreciated.
    Regards,
    Maxim.

    Hello Maxim,
    Are the database statistics up to date for this table ?
    You can do this using program RSANAORA (if you have an oracle database). This should ensure you the right index is chosen. You might want to check with your BC people first, as this is normally their job.
    kind regards
    Pieter

  • BAdI code review - for perfomance improvements

    Hi,
    I've a BAdI implementation to enhance a BW datasource which will extract additional fields for the datasource. The pseudo code for the extractor is as below. Can some one please review and let me know the opportunities (which I'm sure there will be) to improve the performance of the BAdI?
    Thanks a lot.
    Regards,
    Sri.
    Pseudo Code:
    loop at ct_data assigning <ls_data>.
      case <on_a_field>.
        when <value_1>.
           if <condition1>.
           elseif<condition2>.
           elseif<condition3>.
           endif.
        when <value_2>.
           <execute a function module by exporting value_2>        
           if <condition1>.
           elseif<condition2>.
           elseif<condition3>.
           endif.
      endcase.
    <extraction logic for other fields continue>
    endloop.

    Hi
    Two suggestions:
    First, use tcode ST05 to do traces and diagnose the bottleneck.
    Second, tcode ABAP_TRACE, go to tips and tricks, and in internal tables /  using the assigning command see samples and run them to evaluate the times. But in my opinion you are doing well.
    I hope this helps you
    Regards
    Eduardo

  • Which perfomance improvements will JavaFX 8 deliver to us?

    Hi there,
    my whole company consists already of fans of JavaFX 2 - it's fun to work with it and slowly but steady, the team seems solves on the most annoying bugs. But one thing in the 2.x versions seems to be a problem for us. Even on recommended combinations of hard- and software, performance isn't really predicable yet. Sometimes, our applications perform well on 2-year old hardware while we have issues using high-end desktop components. Generally, i think that there is some potential to improve the performance of JavaFX.
    For example, i read in Jira that the developers where thinking of pre-rendering nodes as bitmaps and cache those to gain some performance wins. I didn't find this discussion again, but i think that this hasn't been implemented yet.
    So what i really would like to know is if there are upcoming performance improvements in JavaFX 8 and if the answer is yes, what will they look like?
    Best regards,
    David
    Edited by: TheJeed on 04.02.2013 02:49

    There are some preliminary performance numbers for JavaFX 8:
    http://fxexperience.com/2012/09/preliminary-performance-numbers-in-javafx-8/
    The fxexperience post also includes descriptions of some of the work to improve performance in JavaFX8.
    Also there is a note on memory consumption:
    I would have to check our performance numbers to be certain, but I believe actually we have also reduced
    the memory usage over the same period, primarily due to making Control a Region and removing one extra
    node for most Controls (for example, a Button is now a Button -> Text, instead of Button -> StackPane -> Text).I think some of the major work involves allowing the JavaFX rendering thread and JavaFX application thread to execute concurrently.
    i read in Jira that the developers where thinking of pre-rendering nodes as bitmaps and cache those
    to gain some performance wins.
    I didn't find this discussion again, but i think that this hasn't been implemented yet. Perhaps it has. Have you tried out the Node setCache and setCacheHint APIs?
    http://docs.oracle.com/javafx/2/api/javafx/scene/Node.html#setCache%28boolean%29
    http://docs.oracle.com/javafx/2/api/javafx/scene/Node.html#setCacheHint%28javafx.scene.CacheHint%29
    Additionally, you can manually do this by using node.snapshot and then rendering the resulting image in an ImageView rather than the original node.
    http://docs.oracle.com/javafx/2/api/javafx/scene/Node.html#snapshot%28javafx.scene.SnapshotParameters,%20javafx.scene.image.WritableImage%29
    Depending on the usage situation, the caching APIs can make a huge difference to application performance.
    Running a grep for the word performance on the JavaFX 8 issue tracker gave =>
    RT-5130     Mechanism to report FPS of an arbitrary app (app doesn't call PerformanceTracker) in Prism
    RT-5475     RT-5474 Optimize picking performance
    RT-6475     Need new hints to control how Text node is rendered
    RT-8037     Need to complete a temporarily performance fix on filter effects (DropShadow, InnerShadow and SepiaTone)
    RT-8243     Memory Leak (sun.awt.geom.CurveLink)
    RT-10753     prism-sw: ColorfulCircle bm performance drop in case circle radius is equal 2 or 4 for Inner & Outer Stroke positions
    RT-13324     Text needs to support letter spacing
    RT-13365     poor performance running "colorful circles"
    RT-14065     DirtyRegions: different performance results for equivalent dirty regions
    RT-14122     Camera Style Transform
    RT-14867     b35: 20% (-2.47 fps) performance regression in TextBox-text100k run with hw pipeline comparing to b34
    RT-15566     too big area repainted if the test updates more than 12 checkboxes
    RT-15687     TreeItem expand/collapse performance in hardware pipeline is almost 20 fps worse than in j2d pipeline
    RT-16725     API to manipulate scrollbar on TableView
    RT-16853     TextArea: performance issue
    RT-16924     WebNode reload test can't work in sandbox mode
    RT-17510     Improve performance of rendering a TRANSPARENT stage on Windows 7
    RT-17551     MacOS: Optimize using of lockFocusIfCanDraw
    RT-17960     Transparent stage resize flickers on Mac
    RT-18067     fx2.1-15 (b01): up to 90% regression in Controls.TextArea-select_all-255x1000 in j2d pipeline
    RT-18354     Animation perform down observably when i add the dropdown effect to root
    RT-18612     Glass Mac: ClipboardAssistance.actionPerformed()
    RT-19106     LCD text blending isn't accounting for over-lapping glyphs.
    RT-19271     J2D pipeline does not implement proper handling of the subimage "isolate mask" control
    RT-19305     Animation performance may be very unstable on Mac
    RT-19605     The fix for RT-19532 results in 65% (317 fps) performance regression in Controls.Buttons-adhoc-mouse-nodes1008-skipAll in fx2.1-controls-scrum-b345 build
    RT-20356     PresentingPainter and UploadingPainter disregarding dirty clip rect
    RT-20405     Improve Path rendering performance
    RT-20475     Allow to select videocard (or choose the best one automatically)
    RT-20616     TreeView creates new cells every time root is changed
    RT-20978     fx2.2-graphics-scrum-h175: performance regression on Mac (initially 50% but now unknown)
    RT-21672     Implement Occlusion Culling
    RT-22076     CSS: Treat style class as a bit mask in Selector for better performance on selector matching.
    RT-22244     Pisces Renderer shows huge performance win when coded in C
    RT-22422     Cannot sign JAR files
    RT-22567     Minor tweaks to FX/Swing painting
    RT-22913     Implement and enable accelerated compositing to improve WebView rendering performance
    RT-23413     FXMLLoader should be able to cache imports and properties between to load() calls
    RT-23450     Improve performance of Prism rendering and clipping
    RT-23458     Improve ellipses performance
    RT-23459     Reduce node count in Controls by allowing a Skin to manipulate the Control's children and layout directly
    RT-23463     Implement Region image based caching
    RT-23467     Evaluate Native Text Engines
    RT-23469     Analyze Layout Performance
    RT-23562     Optimize Region by using immutable State, caching on CSS level
    RT-23574     Add support for tiled rendering of textures (both for performance and functional reasons)
    RT-23582     Update Caspian CSS to use better performing selectors
    RT-23588     Investigate using less precise but faster min, pref, max size computations for controls
    RT-23616     Avoid processing CSS for VirtualFlow cells that are CSS clean
    RT-23621     Check use of HIGHP with es shaders.
    RT-23704     Use DirectX 9Ex mechanism to avoid calling cv.save()
    RT-23725     Beagleboard: Execute fragment shader on the GPU causes significant drop in performance
    RT-23738     fx3.0-graphics-scrum-h45: Webkit synchronization for 3.0 caused -55% performance regression in WebNode.ColorfulShapes-Blur2Circle
    RT-23743     Evaluate the performance of computing and uploading individual glyphs one at a time versus in a batch
    RT-23746     Consider optimizing libjepg for performance rather than quality (using already existing build flags)
    RT-23773     Improve caspian.css to use child selectors where possible, rather than require css engine to perform needless busy-work
    RT-23839     Lists,Trees and Tables do not work with wrapped text
    RT-23873     Investigate (and improve) ListView / TreeView / TableView performance
    RT-23879     Mac: Clicking in a Popup/ContextMenu/ComboBox steals the focus from the primary stage in applet
    RT-23905     SQE: Provide JavaFX CSS3 support
    RT-23913     SQE: Optional FX Packages
    RT-24010     WebNode.GUIMark2-Vector fails with NullPointerException in multithreaded mode
    RT-24012     Text performance of the hardware pipeline must be equal or better than the software pipeline
    RT-24013     Multi-Core scalability
    RT-24017     3.0-controls-scrum-58: 100% regression in NodeMemory.TreeItem and 96% in Controls.TreeView-Expand
    RT-24018     3.0-controls-scrum-60: Controls.ListView-Keyboard and Controls.TableView-Keyboard benchmarks are broken
    RT-24143     Ant task fx:deploy expectes all JARs to have a MANIFEST.MF and fails with NPE if at least one doesn't
    RT-24148     Private controls Weak* classes should clean up in more situations
    RT-24298     3.0-graphics-scrum-h142: memory usage of ColorfulShapes.Blur2Circle-Transparent has been increased by 625% (246,890.67 kb)
    RT-24320     WebView draws entire back buffer on screen upon every repaint
    RT-24437     X11Pixels and LensPixels are ill-implemented wrt managing the native object
    RT-24480     Use FilteredList for Parent.unmodifiableManagedChildren
    RT-24557     ImagePattern is slow on embedded systems
    RT-24582     High frequency refresh and Heavy but low priority updates in the same app (multithreading render, multiinstance...)
    RT-24587     Changing a single child of FlowLayout is slower than changing all children
    RT-24624     prism-sw pipeline is up to 90% worse than j2d pipeline
    RT-24741     WebView is not using accelerated compositing for http://javaweb.sfbay.sun.com/~epavlova/Performance/JavaFX2/mexsantos opacity transitions
    RT-24965     8.0-graphics-scrum-h82: Controls.TableView-XmasTree and DirtyArea performance regressions caused by RT-23725 fix.
    RT-24966     8.0-graphics-scrum-h99: up to 30% regression in Guimark2.Bitmap
    RT-24992     8.0-controls-scrum-h51: Controls.CheckBox and Controls.RadioButton benchmarks are broken
    RT-24997     8.0-controls-scrum-h44: up to 35% regression in Controls.TableView and Controls.Buttons benchmarks
    RT-25036     8.0-h26-b56: Controls.TableView-XmasTree benchmark crashes with SIGSEGV on MacOS in sw pipeline
    RT-25078     Mac: dirChooser.showDialog() returns immediately "null" but somehow remains open and appears to work (...when being executed from a Button onAction Eventhandler in new Stage)
    RT-25118     8.0-controls-scrum-h51: -23% performance regression in Controls.TreeView-Expand.adhoc-items1000-wide benchmark
    RT-25120     8.0-graphics-scrum-h99: up to -24% performance regression in Controls.ListView and Controls.TableView
    RT-25166     Path updates in a ScrollPane where content has a Scale transform are 100 times slower
    RT-25233     Javafx applet with preloader crashes under Windows / Java7u7 / Chrome
    RT-25350     poor animation performance on PathTransition when part of the Stage sits outside of desktop screen
    RT-25382     8.0-h38-b58: up to 30% performance regression in Image rendering in sw pipeline
    RT-25403     8.0-h38-b58: 67% (-21.7 fps) performance regression in Charts.Bubble in hw pipeline on MacOS-Low end machines
    RT-25486     Debian policy requirement for 'Installed-Size' not set -- users get warning when installing: NetBeans built JavaFX .deb package for Ubuntu
    RT-25684     GridPane.layoutChildren() hangs when wrapText is true
    RT-25685     GridPane.layoutChildren() hangs when wrapText is setup in CSS style class
    RT-25801     8.0-controls-scrum-h81: 25% performance regression in Controls.RadioButton on mac-low end machine
    RT-25864     New "shared textures" do not share pixel update flags as well as they should
    RT-25919     8.0-graphics-scrum-h242: 48% (16.70 fps) performance regression in GUIMark2.Bitmap on MacOS
    RT-26024     Scene Builder hangs when adding column
    RT-26113     8.0-graphics-scrum-h278: disabled accessibility feature triggers dependency on uiautomationcore.dll
    RT-26140     Node Orientation - API issue: Should effective orientation be a property?
    RT-26221     8.0-graphics-scrum-h276: 33% regression in NodeMemory.TableColumn-rendering-on benchmark
    RT-26438     8.0-graphics-scrum-h342: up to 30% of memory usage increase in bunch of performance benchmarks
    RT-26537     8.0-graphics-scrum-349: deadloack in WebNode.GUIMark2-Bitmap benchmark
    RT-26702     Poor DisplacementMap effect performance on Mac
    RT-26716     Performance of scrolling TreeView tail is much more slowly when scrolling TreeView head
    RT-26894     String rendering is less performant than java2D one
    RT-26909     Regions are being cached even when extremely tall
    RT-26999     8.0-controls-scrum-h122: up to 20% regression in some Controls.TableView benchmarks
    RT-27073     8.0-graphics-scrum-h458: more than 50% regression in Controls.TextField benchmark
    RT-27079     8.0-graphics-scrum-h449: RT-25055 caused up to 80% regression in Charts.Bubble benchmark
    RT-27111     8.0-controls-scrum-h138: up to 30% regression in Controls.TreeViewExpand benchmarks
    RT-27143     8.0-graphics-scrum-h471: TableView-Keyboard fails with NullPointerException
    RT-27508     8.0-h96-b68: 68% regression in SpiralText in hw pipeline caused by enabling DirectX 9Ex
    RT-27667     [TreeTableView] Multiple cell selection issue.
    RT-27982     Mac: 8.0-graphics-scrum-h595: JavaFX crashes on MacOS
    RT-27985     8.0-graphics-scrum-h595: 42% performance regression in Guimark2.BitmapCanvas on Windows-Mid-Range machine
    RT-28064     A new Scene accumulates all PointLight's from previous Scene's     

  • Palm T|X Upgrade to Treo 700p and Revert Back to T|X Due to 700p Problems. Now I Can't Update the T|X

    Here's the story. I am a long-time Palm power user and I have rarely been stumped but I am very stumped right now. I have used my Palm T|X for several years without any sync problems. I upgraded to a new Palm Treo 700p (Verizon) so I can carry one device instead of a PDA and a cell phone. I initially migrated my data from the T|X to the Treo 700p with no major issues. The Treo 700p worked fine for a couple of weeks until I started using the camera. After I started taking pictures and storing them in the on-board memory, wierd things started happening such as screen freeze-ups, screen white-outs, and processor delays. After talking with other Palm users, I was informed that this behavior is typical of the 700p when pictures are stored in on-board memory and that I should move the pictures to my SD card.
    I moved the pictures to the SD card and perfomance improved. However, after another week or so, the freeze-ups started again. Everyone that I know who has a 700p or 700w reports the same issues so I'm starting to believe that the 700p has design flaws or bugs that were never fixed. Due to the frustration and productivity losses that I sustained with the Treo 700p, I decided to revert to my trusty T|X.
    I initially started using the Treo on 8/12/2009 and I synchronized the T|X to the desktop before synchronizing the data to the 700p. On 09/16/2009 I started trying to re-synchronize the T|X. I did a hard reset and memory clear on the T|X so all of the updated data in the desktop could come over to the T|X without duplicates. However, when I synchronized the T|X, my data was only updated as of 8/12/2009 even though the palm desktop has data updated up to 9/16/2009!!
    Please explain what is keeping all of the updates from coming over to the T|X. Thanks for the help.
    Post relates to: Treo 700p (Verizon)

    Are you sync'ing the 700p to the same username in Palm Desktop as the TX?
    If you are, this will cause problems on the new device. When you sync the device, it saves the device settings, 3rd party apps, preferences, etc. in the backup folder in the username folder on the PC. When you sync the new device it copies the contents of the backup folder for the old device to the new device. This will cause corruption in the settings for the new device thus causing erratic behavior of the new device. The TX does not have a camera and you are sync'ing the backup folder for theTX that does not have a camera app. to the 700P.
    Click on the following link to the kb.palm.com webpage for the article regarding Upgrading from a previous Palm OS handheld.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=12926
    I would suggest exporting the data from the current username, create a username for the TX and import the data to that username and only sync the TX to that name. You will need to rename the backup folder in the current username to backup.old, hard reset the 700P and sync to the current username. You will need to hard reset the TX once you have the data in Palm desktop in a seperate username to remove the backup folder contents on the TX.
    The best way to preserve your data is to export the data in each category in Palm Desktop to a seperate folder on your PC.
    Create a new folder on your PC somewhere that is convenient. Name it something like Palm Desktop Data. Click on the link below and follow the instructions on that page for the export procedure.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=28734
    Make sure you select all for the range in the export window.
    With the data saved in the folder you created, make a copy of that folder and save to a flash drive, cd-rw or external hard drive.
    Anytime you make a change in Palm Desktop, export the data that was changed to that folder and save again to the external media.
    With this process you can always import the data back into Palm Desktop anytime you have a problem with the data in Palm Desktop or if your computer/hard drive/device crashes.
    For reference purposes, click on the following link for the support page for your 700P device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/na/treo/700p/verizon/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    For reference purposes, click on the following link for the support page for your TX device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/na/treo/700p/verizon/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Message Edited by cygnusX1 on 09-18-2009 03:33 PM

  • HIGHLIGHTING WORDS AND DICTIONARIES SUPPORT - Search and highlight words in the PDF documents

    One of the things that Adobe people don't understand very well, is they focus and focus and focus constantly in adding new "cool" features to the product... as more flash support... etc. etc.
    But Adobe still pending to make easier the life of people that work with tons and literally tons of PDF documents.
    Students, researchers, law professors, academics... they all need a solution to search and highlight in different colors, for certain words in a lot of documents.
    So here we have a challenge for the Adobe folks.
    Let's imagine you are working in a Law Office, ok? (you're lawyer, not programmer)
    You have a trial tomorrow...
    The trial is about robbery (for example)
    Now you are looking for Jurisprudence (other similar cases that were judged before)...
    And let's imagine you have a folder with 200 cases in 200 PDF files, talking about robbery, between the years 2005-2009
    Now, let's imagine you are interested to search the words:
    CONVICTION
    KIDNAPPING
    ASSAULT
    FAILURE
    CRIME
    SUBPOENA
    How do you do that Adobe folks?
    Reading the 200 documents? one by one, having to drink all the ink of the documents, line by line...
    Or, could you, please, allow Adobe Acrobat 10 can handle dictionaries of words, and allow the users, to search and highlight those words in folder of PDF documents.
    Of course!!! you'll tell me, oh, you can accomplish a search of the desired words and Acrobat will search them for you in a lot of documents in a folder...
    And I'll reply you! oh! that is not enough!
    And do you know why?
    Just simpley because I need to see all the information highlighted in a context...
    If I see the word CRIME in red close to FAILURE... also in red I can see that something wrong is happening with that trial, for example...
    Do you understand now that searching single words in a lot of documents is not enough, and you have to improve URGENTLY this feature?
    Highlighting the words the users need to search in a folder of documents, allow INTENSIVE RESEARCH AND SAVE HOURS AND DAYS AND EVEN MONTHS OF HARD WORK TO THE USERS.
    In that way, you don't have to read the whole document, you just go directly to the highlighted parts.
    I've been submitting this feature since Adobe Acrobat 6!!!! No one in Adobe listened to me!!!
    I sincerely don't know why these forums are opened, must be an idea of someone from marketing, because finally, Adobe don't implement any specification from the users.
    I am absolutely sure, Adobe folks will present the 10 version as something pretty cool, with more flash support and more graphic stuff.
    But, as always, withouth helping the real people that work extensively with large amounts of documents.
    So I hope, Sirs, Madams of Adobe, please, now yes, you give support to this feature once and for all !!!
    Thanks

    Adobe does listen to users, but it listens to 10 users more frequently than 1 user. It listens to 1000 users more frequently than 10. Get everyone you know that works for lawyers to post the request in the Adobe wish form (where Adobe tabulates user requests).
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Then maybe it will appear in Acrobat 11. If it is not in Acrobat 10 by now it is probably too late in the upgrade cycle for it to get in.

  • I686 or x64?

    Was using Arch i686 for last couple years. Now i got new desktop with Quad Q6600/4GB RAM... so now im thinking if i should install Arch i686 again or go for x64.
    Will i get noticeble perfomance improvement on x64?
    So far i get i686 system wont be able to use all 4GB of memory?
    I use wine often. I found wiki page describing how to compile it on x64, but how stable it actually works?
    Sorry for noob questions

    Evzin wrote:Will i get noticeble perfomance improvement on x64?
    Maybe.  It will be a bit faster. If you will notice it, that's a different story.
    Evzin wrote:I use wine often. I found wiki page describing how to compile it on x64, but how stable it actually works?
    I think all the open source software out there works just as well on 64bit as on 32bit.
    Closed source things like Flash are a bit harder to configure on 64bit but it's actually still quite simple.  By coincidence I did it today but it was pretty easy.  Just follow the wiki and you should be fine ( http://wiki.archlinux.org/index.php/Ins … _on_Arch64 )

  • Archiving the entries of  table BBP_PDVIEW_BUP in EBP 3.0 System

    Hi SRM Gurus,
    I want to Archive the entries of  table "BBP_PDVIEW_BUP " in EBP 3.0 system. Is there any provision to archive, as our EBP system performance is very slow.
    And what are means to improve the performance of EBP system
    please help me.
    Thanks,
    Ramesh

    Hi
    <b>Please go through the following SAP OSS Notes, which definitely will help.</b>
    <u>Note 981876 BBP_PDH_TRANSFORM_LOCATION - performance problems
    Note 868382 SRM Sourcing Cockpit
    Note 625344 Status change not possible because follow-on docs exist
    Note 840028 EBP 3.5-5.0: Performance improvement for scorecard monitor
    Note 721358 Perfomance improvements for list displays
    Note 650592 Performance improvements in list displays
    Note 766354 Name formatting for requester in sourcing cockpit
    Note 696854 BBP_BW_SC_SELECT_1: Vendor / Preferred vendor
    Note 726168 search for contracts does not work with multicompany scen.
    Note 711277 Documents found in which the searched partner is deleted
    Note 375330 Performance problems BBPPU99 - Collective note
    Note 501921 Search for confirmations/invoices according to PO number
    Note 568781 Performance improvement of search modules (GetList)
    Note 585844 Search also takes deleted partners into account
    Note 460000 Incorrect selection of shopping baskets
    Note 514218 - EBP 3.0-3.5: Maximum number of hits in local SC reporting
    Note 511181 Unprocessed exception when sourcing cockpit is called up
    Note 501048 Dump SAPSQL_STMNT_TOO_LARGE with search for purchase order</u>
    Regards
    - Atul

  • Fx5200 Td128

    HI, I just bought a MSI FX5200 TD128 and i´m very disapointed with it. The card has almost the same perfomance of the G4 MX440 64MB. I know that this card is a low budget card, but come on! It costs twice the G4 MX440. It has to be at least 30 or 40% perfomance improvement!
    I have another question too! How can i know if my graphics card memory is 64bit or 128 bit? I heard that only the TDR128 has 128bit DDR memory. Is it true?
    Pentium 4 2.6GHz 800MHz FSB HT enabled
    Motherboard Intel 865PERL
    2X256 RAM DDR400
    MSI FX5200 TD128

    Brunomcr,
    Caveat Emptor.
    Do your research before you buy. If you are looking for a good budget GeForce, go with the GeforceFX 5700 Ultra. It is currently the best bang for the buck.
    Take Care,
    Richard
    P.S. About the 64bit or 128 bit, who cares? It is an FX 5200, 128Bit and a huge overclock will not help that chipset.

  • Tag-switching mtu

    Hi All,
    We are wondering ,what would be the effect on performance of the traffic,where higher tag-switching mtu values are set (for example 4470 bytes).
    I guess we should be fine with a maximum value of 1516 bytes instead of 4470.We are currently set with Tag-switching mtu value of 4470 and considering to change to 1520,is there any perfomance improvement by doing that. Any help would be appreciated.
    Thanks
    Regards
    Anantha Subramanian Natarajan

    Hello Anantha,
    4470 is the default MTU size on WAN links like ATM (every speed) and POS or serial (T3 or E3).
    But usually on the path of user data the first and the last hop are LAN segments (and there can be intermediate hops when moving data inside a Provider POP).
    So a so high MTU is not used actually by user data: at least on the user side the IP MTU is 1500 bytes.
    On the server side you can enable jumbo frames for server-to-server communication.
    And what is important to take in account is that MPLS frames cannot be fragmented or they can go out a link or they are discarded.
    The size can be calculated by thinking of:
    an IP MTU of 1500 bytes needs to be carried in any case.
    a L3 MPLS VPN would require a two label stacks.
    More complex scenarios involving MPLS TE used to carry MPLS VPN traffic require a deeper stack.
    Then if you offer Carrier Supporting Carrier sevices for example the stack is longer.
    If you provide a EoMPLS service to someone using it to carry an MPLS VPN you may need 1534 bytes MTU (I did some calculations for a merge of two providers)
    It is also important to increase the MTU on intervening L2 switches inside your POPs this has to be considered and implemented too.
    This can be part of the problem a L2 switch on the path not configured to handle the added MPLS overhead and so causing some packets to be dropped.
    The benefit of using an MPLS MTU of 1520 is that you don't leave space to possible ambiguities on what can travel on the MPLS backbone end-to-end.
    Hope to help
    Giuseppe

  • 16bit CGImage problems

    Hello,
    I'm working on 2D support for our framework and we're having framerate "issues". The framerate won't go any higher then 30fps on a simple program and it drops fast to 20fps.
    At the moment I have a 32bit CGImage on which I draw everything.
    To get some perfomance improvements I want to create a 16bit CGImage but I get some errors. I use the following code to create the 16bit CGImage:
    CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB();
    CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, buffer, yres * lpitch, NULL);
    surf = CGImageCreate(xres, yres, 5, 16, lpitch, colorspace, kCGImageAlphaNoneSkipLast, provider, NULL, FALSE, kCGRenderingIntentDefault);
    CGColorSpaceRelease(colorspace);
    CGDataProviderRelease(provider);
    The problems I have are:
    - red and green are swapped
    - I can only draw the image once to the screen. It's is not possible to draw the image again. It does draw the stuff on the image and it does call the drawRect method where it is drawn to the screen but it isn't updated.
    As soon as I change it back to 32bits it works again.
    Because OpenGL uses 16bits I assume the colors are internally converted back to 16bits. To avoid this I want to create a 16bits CGImage, hoping for a little performance increasement.

    It sounds like you have several issues confused.
    EXR allows many depths of data to be embedded in it - but Photoshop uses EXR for HDR data, which needs to be 32 bit floating point.
    Also, the most common data depth in EXR is 16 bits/channel floating point -- which is not the same as the 16 bit/channel integer format in Photoshop, and has to be converted up to 32 bit/channel floating point to prevent data loss.
    Yes, 32 bit/channel data is always gamma 1.0 in Photoshop (and should be elsewhere) and that changes the values when converting colorspaces for 8 and 16 bit/channel.
    A gamma 1.0 profile can be set as a working space profile - but it just isn't a good idea in 8 or 16 bit/channel.

  • RichEditableText: extend and some bugs

    I have the following question for Flex 4.0.0.7219:
    1. How can I assign a IFormatResolver to richtEditableText.textFlow.formatResolver?
    The RichEditableText class does not handle format resolvers. So I need to assign it directly to textFlow like:
            override protected function commitProperties():void {
                super.commitProperties()
                textFlow.formatResolver = new CustomFormatResolver()
    I think dispatching an event when the instance of textFlow changes was an improvement over this hack. The event also allows for perfomance improvements in custom components that use RichtEditableText.
    2. Is supporting html import/export on the roadmap?
    3. Bug 1: Export ignores spaces:
        <ns:RichEditableText
            id="spaceEditor"
            text=" hallo "
            />
            spaceEditor.export.toString() should render "...<span> hallo </span>..." but does "...<span>hallo</span>..."
    Fix: Use XML.ignoreWhitespace = false; etc as describe in http://forums.adobe.com/thread/230089 . Though maybe the TLF team might fix it in their code: http://forums.adobe.com/message/2030394#2030394 .
    4. Bug 2: Setting the content causes a second return.
    5.1 Set e.g. <ns:RichEditableText content="hallo" /> (content=<TextFlow .... </TextFlow> has the same effect)
    5.2 Click into the richEditableText and add a return on your keyboard.
    5.3 Effect: there are 2 returns. The result of an export is "...<p><span></span></p><p><span></span></p>..." instead of "...<p><span></span></p>..."
    5. Bug 3: richEditableText.autosize="true";richEditableText.percentWidth=100; is broken but there was a refactoring since 4.0.0.7219. So I hope the current build is working...
    If somebody confirms the bugs, I'll file them.
    Marc

    Thanks Gorden, I created some work for you
    1. Please file an enhancement request asking that this be made easier.
    http://bugs.adobe.com/jira/browse/SDK-21838
    2. TLF's TextFilter class supports importers and exporters for HTML_FORMAT, but I haven't tried them and don't know how robust they are.
    I think the HTML export in TLF is not yet stable. The thing is that once
    it is stable there is pretty much no way to insert the import
    functionality into RichEditableText without rewriting most of the
    component. In my opinion, it should be either integrated into
    RichEditableText even at this early stage or RichEditableText should be
    refactored to allow extending it in an easier way.
    3. I'm aware of this bug but I'm not sure a bug has been filed for it. Could you please file one?
    http://bugs.adobe.com/jira/browse/SDK-21834
    4. Ditto with 3.
    http://bugs.adobe.com/jira/browse/SDK-21836
    5. I'm not aware of this. Please be sure to file a bug.
    http://bugs.adobe.com/jira/browse/SDK-21837
    BTW, there is a another major refactoring coming this week. Adobe's Platform API Review Board has reviewed all new Spark APIs and suggested a number of changes.
    Thanks for the insight, I appreciate.
    Marc

  • BIOS Collection(modded) for Socket A and Socket 754

    Modded BIOS Use At your own Risk!
    MSI K7N2 Delta 2 LSR/FSR/Platinum:
    Recommended BIOS:
    Download B72c
    password for instalation is "T9-246ED", enter it when asked. instruction is included due instalation. after simple extraction proceed as regular BIOS flash.
    do not forget to Enable APIC in BIOS its disabled by default..
    If B72c isnt fit well(work well) that depend of your memory here B62 mod which your memory should work fine if B72c refuse:
    <a href="http://www.ukshazam.com/download/bosskiller/W6570NMS B.62.rar">Download B62[/url]
    Latest Version Beta by MSI named also B72(newest release):
    Download B72 Latest MSI Beta, Floppy Image
    Download B72 Latest MSI Beta, flash util and BIOS only
    B62 and B72c information and discuss here: https://forum-en.msi.com/index.php?topic=84715.0
    MSI K7N2 Delta ILSR:
    Info:
    MSI K7N2 Delta ILSR Modded BIOS based on Official v. 7.80 BIOS
    Version History:
    version 1.1 add-on
    - Added Mobile Barton Support
    - Added full RAID support and latest firmware for Fastrack 376
    - Add Cpu Vcore selection to 1.85(original was 1.80)
    - ICPA Function Activated
    - CAS Latency Auto Option added
    - Super Stability Option Activated, can be turned off.
    - Small EPA Logo Added
    - CPU Internal Cache can be enabled/disabled
    - Power Status Led Activated
    - Reset Configuration Data Activated
    - Added Shutdown Temperature
    - Added DRAM 2.8Vcore
    ver 1.0 add-on
    Description:
    - Add Halt On Error option
    - Fix problem where some hard drives are sometimes not detected
    - Better Stability and perfomance improvement
    <a href="http://www.ukshazam.com/download/bosskiller/k7n2deltaILSR mod.7.80 F RAID + CPU VCORE.rar">Download 7.8 mod[/url]
    MSI K8N Neo3 F:
    Info:
    BIOS has the PCI and SATA lock which is restoring OC potencial.
    Minor USB problem fixed.
    Added 183 Memory Devider.
    Download 183 mod

    temp link for:
    MSIP965 Neo BIOS ver. 1.62(Date: 08/30/06) :
    http://rapidshare.de/files/33337455/7235v162.rar.html
    MSIP965 Neo BIOS ver. 1.67(Date: 09/08/06) :
    http://rapidshare.de/files/34366659/7235v167.rar.html
    MSIP965 Neo BIOS ver: 16A(Date: 10/17/06)
    MSIK8N Diamond Plus BIOS ver. 1.33:
    http://rapidshare.de/files/35454120/K8NDP133.exe.html
    MSIK8N Diamond Plus BIOS ver. 1.00:
    http://rapidshare.de/files/35711075/K8NDP100.exe.html
    MSIP965 Platinum(ID 7238):
    BIOS ver. 1.22 (Date: 10/24/06)
    MSIP965 Neo BIOS ver. 1.67(Date: 09/08/06) :
    http://rapidshare.de/files/34366659/7235v167.rar.html
    MSIP965 Neo BIOS ver: 16A(Date: 10/17/06)
    MSIK8N Diamond Plus BIOS ver. 1.33:
    http://rapidshare.de/files/35454120/K8NDP133.exe.html
    MSIK8N Diamond Plus BIOS ver. 1.00:
    http://rapidshare.de/files/35711075/K8NDP100.exe.html
    MSIK9N Platinum(ID 7250):
    BIOS ver. 1.51 (Date: 01/05/07)
    MSIP965 Neo BIOS ver. 1.62(Date: 08/30/06) :
    http://rapidshare.de/files/33337455/7235v162.rar.html
    MSIP965 Neo BIOS ver. 1.67(Date: 09/08/06) :
    http://rapidshare.de/files/34366659/7235v167.rar.html
    MSIP965 Neo BIOS ver: 16A(Date: 10/17/06)
    MSIK8N Diamond Plus BIOS ver. 1.33:
    http://rapidshare.de/files/35454120/K8NDP133.exe.html
    MSIK8N Diamond Plus BIOS ver. 1.00:
    http://rapidshare.de/files/35711075/K8NDP100.exe.html
    MSIP965 Platinum(ID 7238):
    BIOS ver. 1.22 (Date: 10/24/06)
    MSIP965 Neo BIOS ver. 1.67(Date: 09/08/06) :
    http://rapidshare.de/files/34366659/7235v167.rar.html
    MSIP965 Neo BIOS ver: 16A(Date: 10/17/06)
    MSIK8N Diamond Plus BIOS ver. 1.33:
    http://rapidshare.de/files/35454120/K8NDP133.exe.html
    MSIK8N Diamond Plus BIOS ver. 1.00:
    http://rapidshare.de/files/35711075/K8NDP100.exe.html
    MSIK9NGM(ID 7252):
    BIOS ver. 3.23 (Date: 09/21/06)
    temp link for
    MSI  NX6600GT-VTD128 with temperature monitoring feature unlocked:
    BIOS details:
    MSI GeForce 6600 GT (VTD) BIOS - Rev 01
    Card : MSI GeForce 6600 GT VTD
    Chipset : NVIDIA GeForce 6600 GT
    Version : 5.43.02.35.07
    Memory : 128MB
    Download
    latest flash program included in archive. how to use:
    download and extract file from archive. rename MSI.6600GT.VTD.128MB.Rev.01.rom to more sensitive short DOS name example: NX6600GT.ROM copy all files from extracted folder into your DOS bootable device(USB flash is recommended). reboot machine and boot from corespond device.(boot from your USB Drive)
    after booting finished navigate to folder which contain VGA BIOS and your flash program and excute from there:
    nvflash_-4_-5_-6_NX6600GT.ROM         and press "ENTER" await a few seconds and program will requre confirmation. you will need to press "Y" key to proceed. after that after 10 seconds (CAPS,NUM,SCROLL LOCK will be blinking during update) after compelete procedure should see output message from program: Update complete successfully.
    Shutdown PC. await 20 seconds, (to avoid capacitors shock) turned on. you have done.
    NOTE: Replace symbol "_"(without quotes) with space in command line.
     

  • Firmware Update for N96 model type RM-247

    HI,
    I have Nokia N96 since last 1.5 years in INDIA, TYPE- "RM 247", I have updated this phone with version V30.033 version date 18-06-09.
    This update have made really good Improvements in my Phone Performance and Display but stil Speed of the Phone is not upto the satisfaction Level. The phone Hangs a lot and Get restarted for many times a day, speed is very slow and makes me disappointed.
    This is been around 1 year and few months Nokia has not launched any Firmware Update to Improve N96 performance & Speed.
    I am Expecting major Phone Perfomance Improvements.
    Any Body from Nokia Support, Please Reply
     Regards, S.K.

    satishN96 wrote:
    OK, so is it possible to Upgrade / Change the symbian OS for My N96. I want to switch to New OS which also belongs to Symbian.. Please tell me how could i upgrade my Phone ..
    Thank You
    Satish
    No
    The hardware cannot run a newer version,
    It's an old phone that is past it's time, software and the required spec has moved on

  • How to improve perfomance in database operations

    In my programme i do some select, insert operations many time. so when i run my program with atlease 80000 customer data it takes 1 hrs to complete the task.
    So i switched to use threads. So i use n number of threads and gave a new connection to each thread and splited my customer data for each threads. so each thread contain 80000/n data.
    when i check the perfomance both (with and without thread) are equal
    so help me to improve the perfomance :)

    s friend. most of the time it invokes the database operations. i use addbatchs to execute the code. wait i will give the timelines,
    :AbstractRuleBasedScenario:run:test2---- is the time to execute the query
    :pool-1-thread-1:KYCScenarioTask:call:pool-1-thread-1---- is the time to run a thread
    with 1 thread
    01/04/07 10-33:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 62
    01/04/07 10-33:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 0
    01/04/07 10-33:pool-1-thread-1:KYCScenarioTask:call:pool-1-thread-1 ::: 94
    01/04/07 10-33:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 63
    01/04/07 10-33:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 31
    01/04/07 10-33:pool-1-thread-1:KYCScenarioTask:call:pool-1-thread-1 ::: 125
    01/04/07 10-33:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 63
    01/04/07 10-33:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 0
    01/04/07 10-33:pool-1-thread-1:KYCScenarioTask:call:pool-1-thread-1 ::: 109
    with 5 threads[
    01/04/07 10-29:pool-1-thread-3:AbstractRuleBasedScenario:run:test2 Time:::: 125
    01/04/07 10-29:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 125
    01/04/07 10-29:pool-1-thread-2:AbstractRuleBasedScenario:run:test2 Time:::: 62
    01/04/07 10-29:pool-1-thread-2:KYCScenarioTask:call:pool-1-thread-2 ::: 266
    01/04/07 10-29:pool-1-thread-4:AbstractRuleBasedScenario:run:test2 Time:::: 32
    01/04/07 10-29:pool-1-thread-3:AbstractRuleBasedScenario:run:test2 Time:::: 63
    01/04/07 10-29:pool-1-thread-1:AbstractRuleBasedScenario:run:test2 Time:::: 47
    01/04/07 10-29:pool-1-thread-4:KYCScenarioTask:call:pool-1-thread-4 ::: 281
    01/04/07 10-29:pool-1-thread-3:KYCScenarioTask:call:pool-1-thread-3 ::: 312
    01/04/07 10-29:pool-1-thread-1:KYCScenarioTask:call:pool-1-thread-1 ::: 250

Maybe you are looking for

  • Adding new region to Standard page

    Hello, I need to add new region to display added details to the Paid Off Balance Screen. In Jdev, i was able to create a new messageComponentLayout Region and added the correspnding datapoints. Should i always create it as flexibleLayout only, i read

  • Web Part with Flash Content is not working in IE only

    Hi All,     I have created on Visual WebPart its contain a flash embed object i am trying load this flash component inside the Iframe. unfortunatly its not working in IE 11 version but its working fine with other browser like Mozila and Chorme. I ref

  • I restored my ipod settings to my iphone by mistake. How do I revert this change?

    (Sorry for the caps in advance! )I set up my iPOD with itunes a few years ago. My boyfriend has his iphone set up on itunes as well. When I plugged my iPHONE into the computer for the first time it gave me a drop down menu to as to which phone I want

  • How to Index a XMLTYPE table

    I am using a xmltype table for parsing the xml file and then storing the tag values into someother tables. The table syntax CREATE GLOBAL TEMPORARY TABLE ATLAS.XML_PROCESS XML_DATA XMLTYPE ON COMMIT DELETE ROWS; At a time i will parse only one xml fi

  • Is application Express what I need?

    Hi I wonder if you can offer any guidance. I have a 9i database which is used weekly to load data into it from csv files. This is done using sql loader kicked off using windows batch files. Before, during and after the loading of the csv files certai