10000 records resultset giving problem

Hello All,
I am using oracle database, windows 2000, OC4J(Oracle Containers for j2ee) Application Server. When I query a emp table which has 100000 records and store the 100000 records in resultset and using a while loop
if I iterates through the resultset to store each emp record in emp bean array then my application hangs at this point so I am unable to form a emp bean array of 100000 records. What is the reason ?
Also, I am getting 'OutOfMemoryError' exception at the client side(jsp) when I am trying iterate over a vector that stores each of 100000 emp records as inner vector. I tried to increase my system page file size(virtual memory) to 1GB but this didnt help. So how to avoid this error in windows2000 and on unix box.
Thanks and Regards,
Kumar.

I agree with all the above posts, you shouldn't never ever try to store 10K or more result objects in memory, let alone generate a web page containing all of those results. Filter it already in the database level, or if you'll showing unfiltered data, give the user a scrollable "window" into the results, just as pretty much every web page does.
If the data is pretty homogenous, you might even try using a pattern like Flyweight from GoF.
Anyway, if for some ungodly reason you decide to do it, try increasing the heap size of your JVM with the -Xms and -Xmx parameters. For example java -Xms100m -Xmx512m will set your minimum heap size into 100 megabytes and maximum into 512 megabytes.
.P.

Similar Messages

  • 10000 records Table giving problem ... ?

    Hello All,
    I am using oracle database, windows 2000, OC4J(Oracle Containers for j2ee) Application Server. When I query a emp table which has 100000 records and store the 100000 records in resultset and using a while loop
    if I iterates through the resultset to store each emp record in emp bean array then my application hangs at this point so I am unable to form a emp bean array of 100000 records. What is the reason ?
    Also, I am getting 'OutOfMemoryError' exception at the client side(jsp) when I am trying iterate over a vector that stores each of 100000 emp records as inner vector. I tried to increase my system page file size(virtual memory) to 1GB but this didnt help. So how to avoid this error in windows2000 and on unix box.
    Thanks and Regards,
    Kumar.

    You might want to see the responses to this post by some other person who seems to have exactly the same problem as you.

  • 100000 records resultset giving problem ?

    Hello All,
    I am using oracle database, windows 2000, OC4J(Oracle Containers for j2ee) Application Server. When I query a emp table which has 100000 records and store the 100000 records in resultset and using a while loop
    if I iterates through the resultset to store each emp record in emp bean array then my application hangs at this point so I am unable to form a emp bean array of 100000 records. What is the reason ?
    Also, I am getting 'OutOfMemoryError' exception at the client side(jsp) when I am trying iterate over a vector that stores each of 100000 emp records as inner vector. I tried to increase my system page file size(virtual memory) to 1GB but this didnt help. So how to avoid this error in windows2000 and on unix box.
    Thanks and Regards,
    Kumar.

    I'd guess the reason is memory related. The simple answer to your question is "don't do that!" Why would the user ever want to look at 100,000 records? If the result of a user request would give such a large number of hits, your app should ask the user to refine the search criteria.
    Even if browsing 100,000 rows really is a requirement (which seems doubtful), why read them all at one pass? You could store a reasonable number (e.g. 1,000) and request a new read every 1,000 records. Alternatively, store the 100,000 in a disk file and page from there.

  • 100000 records resuletset giving problem ?

    Hello All,
    I am using oracle database, windows 2000, OC4J(Oracle Containers for j2ee) Application Server. When I query a emp table which has 100000 records and store the 100000 records in resultset and using a while loop
    if I iterates through the resultset to store each emp record in emp bean array then my application hangs at this point so I am unable to form a emp bean array of 100000 records. What is the reason ?
    Also, I am getting 'OutOfMemoryError' exception at the client side(jsp) when I am trying iterate over a vector that stores each of 100000 emp records as inner vector. I tried to increase my system page file size(virtual memory) to 1GB but this didnt help. So how to avoid this error in windows2000 and on unix box.
    Thanks and Regards,
    Kumar.

    I think you need to close any connection to the db, before starting your while loop,
    while loop takes long time than the "for" loop, now while you are in "while" loop the dbConn is opened, this will couse out of memory when others trying to open new db conn,
    maybe you need to move your ResultSet to ann other object like Vector of class objects, then close the conn.
    hope this will help

  • Time to delete 10000 records

    i am putting a query to delete 10000 records but it is getting hanged in sqlplus and Toad. I was putting 4 conditions in the 'where' clause but then i made it into only 1 clause but still it is giving a feeling of getting hanged. The query is like :
    delete from ppbs_inv_sim_serial where sim_serial_no between '899105203112085000' and '899105203112094999'
    Please help in solving the doubt as it is urgent.
    regards

    As RAO said, you can check any locks before carry out the sentence. You can check if there is any lock with this
    script:
    col object_name format a20
    col username format a10
    col oracle_username format a10
    col process format a15
    col owner format a10
    prompt ****************************************************************
    prompt *** Object Lock Contention ***
    prompt ****************************************************************
    set pages 0
    set linesize 150
    select 'Date : '||to_char(sysdate,'DD/MM/YYYY')||' Time : '||to_char(sysdate,'HH:MI:SS') from dual;
    select 'Database Name : '||name from sys.v_$database;
    set pages 1000
    SELECT DISTINCT
    O.OBJECT_NAME,
    SH.USERNAME,
    SH.SID,
    SW.USERNAME,
    SW.SID,
    DECODE(LH.LMODE,
    1, 'null',
    2, 'row share',
    3, 'row exclusive',
    4, 'share',
    5, 'share row exclusive',
    6, 'exclusive')
    FROM DBA_OBJECTS O,
    V$SESSION SW,
    V$LOCK LW,
    V$SESSION SH,
    V$LOCK LH
    WHERE LH.ID1 = O.OBJECT_ID
    AND LH.ID1 = LW.ID1
    AND SH.SID = LH.SID
    AND SW.SID = LW.SID
    AND SH.LOCKWAIT IS NULL
    AND SW.LOCKWAIT IS NOT NULL
    AND LH.TYPE = 'TM'
    AND LW.TYPE = 'TM'
    prompt Press Enter to continue ...
    pause
    prompt ************************************************************
    prompt *** Object Lock Information ***
    prompt ************************************************************
    SELECT
    A.OBJECT_NAME,
    A.OWNER,
    C.SERIAL#,
    B.OBJECT_ID,
    B.SESSION_ID,
    B.ORACLE_USERNAME,
    B.OS_USER_NAME,
    B.PROCESS,
    DECODE(B.LOCKED_MODE,
         0,'None',
    1,'Null',
         2,'Row-S (SS)',
         3,'Row-X (SX)',
         4,'Share',
         5,'S/Row-X (SSX)',
         6,'Exclusive') LMODE
    FROM DBA_OBJECTS A, V$LOCKED_OBJECT B, V$SESSION C
    WHERE A.OBJECT_ID = B.OBJECT_ID AND C.SID = B.SESSION_ID
    ORDER BY A.OWNER, A.OBJECT_NAME, C.SERIAL#
    Joel P�rez

  • Master data query display limited to 10000 records

    Hi,
    When I run a query based on master data objects like 0CUSTOMER, the query displays only 10000 records instead of about 50000. This happens with all other master data items. This happens after the upgrade to 2004S. We still use frontend 3.5. Transaction data displays are correct. Has anybody faced this problem? Can someone suggest the solution for this?
    Thanks.
    Param

    Hi
    Check out note -
    <b>955487</b>- Master data InfoProvider reads only 10000 records
    Implement the advanced corrections as SP-09 is too far to be released.
    Hope it Helps.
    Chetan
    @CP..

  • RSA3 is extracting fine but in BI site Its extracting only 10000 records

    Hi Experts,
    h4.
    I made Generic data-source based on function module. When I am extracting data from this data-source in RSA3 itu2019s fetching all records. Its nearly are 7 lacks records.
    h4.
    But after replicating this data-source in BI site when I am extracting data from this data source its fetching only 10000 records. What mistake I might be did here or is there is any setting for FM based data source.
    Advance thanks

    My Issue is in RSA3 datasource is working fine and giving all records but when i am extracting data from same data source in BIW site its giving maximum 10000 records. I am using full load with n selection parameter.
    This datasource is based on function module. below is the code of data-source
    . * Auxiliary Selection criteria structure
      DATA: L_S_SELECT TYPE SRSC_S_SELECT.
    Maximum number of lines for DB table
      STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
    counter
              S_COUNTER_DATAPAKID LIKE SY-TABIX,
    cursor
              S_CURSOR TYPE CURSOR.
      STATICS: V1 TYPE I,
                      V2 TYPE I.
            TYPES: BEGIN OF ty_data,
               matnr       TYPE matnr,
               MTART       TYPE MTART,
               PARTCODE    TYPE IDNRK,
               WERKS       TYPE WERKS_D,
               quantity    TYPE BGESWERT,
               vrkme       TYPE vrkme,
             END OF ty_data,
             BEGIN OF ty_parts,
               mandt       TYPE mandt,
               matnr       TYPE matnr,
               werks       TYPE werks_d,
               spdpartcode TYPE matnr,
               partcode    TYPE matnr,
               parttext    TYPE maktx,
               quantity    TYPE BGESWERT,
               vrkme       TYPE vrkme,
             END OF ty_parts,
             BEGIN OF ty_partvalue,
               mandt       TYPE mandt,
               regio       TYPE regio,
               spdpartcode TYPE matnr,
               value       TYPE abgergeb,
               waers       TYPE waers,
             END OF ty_partvalue.
      DATA: it_mara TYPE STANDARD TABLE OF mara,
            wa_mara TYPE mara,
            it_data  TYPE STANDARD TABLE OF ty_data,
            wa_data  TYPE ty_data,
            it_t005s TYPE STANDARD TABLE OF t005s,
            wa_t005s TYPE t005s,
            l_index  TYPE sy-tabix,
            it_parts TYPE STANDARD TABLE OF ty_parts,
            wa_parts TYPE ty_parts,
            it_partvalue TYPE STANDARD TABLE OF ty_partvalue,
            wa_partvalue TYPE ty_partvalue,
            wa_makl  TYPE mkal.
      DATA: it_t001w TYPE STANDARD TABLE OF t001w,
            wa_t001w TYPE t001w.
      DATA: it_stb TYPE STANDARD TABLE OF stpox,
            wa_stb TYPE stpox,
            it_stb1 TYPE STANDARD TABLE OF stpox,
            wa_stb1 TYPE stpox,
            it_stb2 TYPE STANDARD TABLE OF stpox,
            wa_stb2 TYPE stpox,
            it_stb3 TYPE STANDARD TABLE OF stpox,
            wa_stb3 TYPE stpox.
      DATA: it_bom type standard table of EXTRACT_STRUCT,
            wa_bom type EXTRACT_STRUCT.
    Select ranges
    ranges: L_R_MATNR for MARA-MATNR,
             L_R_MTART for MARA-MTART.
    Initialization mode (first call by SAPI) or data transfer mode
    (following calls) ?
      IF I_INITFLAG = SBIWA_C_FLAG_ON.
    Initialization: check input parameters
                    buffer input parameters
                    prepare data selection
    Check DataSource validity
        CASE I_DSOURCE.
          WHEN 'Z_BOM'.
          WHEN OTHERS.
            IF 1 = 2. MESSAGE E009(R3).         ENDIF.
    this is a typical log call. Please write every error message like this
            LOG_WRITE 'E'                  "message type
                      'R3'                 "message class
                      '009'                "message number
                      I_DSOURCE   "message variable 1
                      ' '.                 "message variable 2
            RAISE ERROR_PASSED_TO_MESS_HANDLER.
        ENDCASE.
        APPEND LINES OF I_T_SELECT TO S_S_IF-T_SELECT.
    Fill parameter buffer for data extraction calls
        S_S_IF-REQUNR    = I_REQUNR.
        S_S_IF-DSOURCE   = I_DSOURCE.
        S_S_IF-MAXSIZE   = I_MAXSIZE.
    Fill field list table for an optimized select statement
    (in case that there is no 1:1 relation between InfoSource fields
    and database table fields this may be far from beeing trivial)
        APPEND LINES OF I_T_FIELDS TO S_S_IF-T_FIELDS.
      ELSE.                 "Initialization mode or data extraction ?
    Data transfer: First Call      OPEN CURSOR + FETCH
                   Following Calls FETCH only
    First data package -> OPEN CURSOR
        IF S_COUNTER_DATAPAKID = 0.
    Fill range tables BW will only pass down simple selection criteria
    of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
          LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'MATNR'.
            MOVE-CORRESPONDING L_S_SELECT TO L_R_MATNR.
            APPEND L_R_MATNR.
          ENDLOOP.
          LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'MTART'.
            MOVE-CORRESPONDING L_S_SELECT TO L_R_MTART.
            APPEND L_R_MTART.
          ENDLOOP.
    Determine number of database records to be read per FETCH statement
    from input parameter I_MAXSIZE. If there is a one to one relation
    between DataSource table lines and database entries, this is trivial.
    In other cases, it may be impossible and some estimated value has to
    be determined.
          SELECT werks INTO CORRESPONDING FIELDS OF TABLE it_t001w
                   FROM t001w
                   WHERE j_1bbranch NE '' AND
                         pkosa      = 'X'.
         DELETE it_t001w WHERE werks = 'HSPG'.
          SELECT matnr INTO CORRESPONDING FIELDS OF TABLE it_mara
                   FROM mara
                   WHERE matnr IN L_R_MATNR AND
                         mtart IN L_R_MTART AND
                         lvorm = ''     AND
                         mstae = ''.
            IF SY-SUBRC = 0.
        REFRESH: it_data.
         LOOP AT it_mara INTO wa_mara.
          LOOP AT it_t001w INTO wa_t001w.
            SELECT SINGLE * INTO wa_makl
                            FROM mkal
                            WHERE matnr = wa_mara-matnr AND
                                  werks = wa_t001w-werks.
              IF sy-subrc = 0.
              REFRESH: it_stb2.
              CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
                EXPORTING
                  capid                 = 'PP01'
                  datuv                 = sy-datum
                  mktls                 = 'X'
                  mehrs                 = 'X'
                  mmory                 = '1'
                  mtnrv                 = wa_mara-matnr
                  svwvo                 = 'X'
                  werks                 = wa_t001w-werks
                 werks                 = 'HSPG'
                  vrsvo                 = 'X'
                TABLES
                  stb                   = it_stb2
                EXCEPTIONS
                  alt_not_found         = 1
                  call_invalid          = 2
                  material_not_found    = 3
                  missing_authorization = 4
                  no_bom_found          = 5
                  no_plant_data         = 6
                  no_suitable_bom_found = 7
                  conversion_error      = 8
                  OTHERS                = 9.
              IF sy-subrc <> 0.
               MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ELSE.
                IF it_stb2 IS NOT INITIAL.
                 it_stb1 = it_stb2.
                IT_STB1 will have first level components
                 DELETE it_stb1 WHERE stufe NE 1.
                IT_STB2 will have second and higher level components
                 DELETE it_stb2 WHERE stufe EQ 1.
                 CLEAR: lv_flag.
                 LOOP AT it_stb1 INTO wa_stb1.
                   l_index = sy-tabix.
                   LOOP AT it_stb2 INTO wa_stb2 WHERE vwegx = wa_stb1-wegxx.
                     APPEND wa_stb2 TO it_stb3.
                     lv_flag = 'X'.
                   ENDLOOP.
                   IF lv_flag = 'X'.
                     DELETE it_stb1 INDEX l_index.
                     CLEAR: lv_flag.
                   ENDIF.
                 ENDLOOP.
                IT_STB2 will have only second level components
                 it_stb2 = it_stb3.
                 APPEND LINES OF it_stb1 TO it_stb2.
                  APPEND LINES OF it_stb2 TO it_stb.
                  REFRESH: it_stb1, it_stb2, it_stb3.
                ENDIF.
              ENDIF.
            ENDIF.
          ENDLOOP.
          LOOP AT it_stb INTO wa_stb.
            wa_data-matnr    = wa_mara-matnr.
            wa_data-mtart    = wa_stb-mtart.
            wa_data-werks    = wa_stb-werks.
            wa_data-partcode = wa_stb-idnrk.
            wa_data-quantity = wa_stb-MENGE.
            wa_data-vrkme    = wa_stb-MEINS.
            APPEND wa_data TO it_data.
          ENDLOOP.
          REFRESH: it_stb.
        ENDLOOP.
       ENDIF.
        V1 = 1.
        V2 = S_S_IF-MAXSIZE.
    ENDIF.
    Fetch records into interface table.
      named E_T_'Name of extract structure'.
       FETCH NEXT CURSOR S_CURSOR
                  APPENDING CORRESPONDING FIELDS
                  OF TABLE E_T_DATA
                  PACKAGE SIZE S_S_IF-MAXSIZE.
       IF SY-SUBRC <> 0.
         CLOSE CURSOR S_CURSOR.
         RAISE NO_MORE_DATA.
       ENDIF.
        CLEAR: wa_data.
        LOOP AT it_data INTO wa_data.
          IF SY-TABIX GE V1 AND SY-TABIX LE V2.
            APPEND wa_data TO E_T_DATA.
            CLEAR wa_data.
          ENDIF.
        ENDLOOP.
        S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
        IF E_T_DATA[] IS INITIAL.
          RAISE NO_MORE_DATA.
        ENDIF.
        V1 = V2 + 1.
        V2 = V2 + S_S_IF-MAXSIZE.
    ENDIF.
    *}   INSERT
    ENDFUNCTION.
    Edited by: damawat on Aug 26, 2011 2:20 PM

  • SHARED MEMORY AND DATABASE MEMORY giving problem.

    Hello Friends,
    I am facing problem with EXPORT MEMORY and IMPORT MEMORY.
    I have developed one program which will EXPORT the internal table and some variables to the memory.This program will call another program via background job. IMPORT memory used in another program to get the first program data.
    This IMPORT command is working perfect in foreground. But  it is not working in background.
    So, I have reviewed couple of forums and I tried both SHARED MEMORY AND DATABASE MEMORY.  But no use. Still background is giving problem.
    When I remove VIA JOB  parameter in the SUBMIT statement it is working. But i need to execute this program in background via background job. Please help me . what should I do?
    pls find the below code of mine.
    option1
    EXPORT TAB = ITAB
           TO DATABASE indx(Z1)
                FROM   w_indx
                CLIENT sy-mandt
                ID     'XYZ'.
    option2
    EXPORT ITAB   FROM ITAB
      TO SHARED MEMORY indx(Z1)
      FROM w_indx
      CLIENT sy-mandt
      ID 'XYZ'.
       SUBMIT   ZPROG2   TO SAP-SPOOL
                      SPOOL PARAMETERS print_parameters
                       WITHOUT SPOOL DYNPRO
          *_VIA JOB name NUMBER number*_
                       AND RETURN.
    ===
    Hope every bidy understood the problem.
    my sincere request is ... pls post only relavent answer. do not post dummy answer for points.
    Thanks
    Raghu

    Hi.
    You can not exchange data between your programs using ABAP memory, because this memory is shared between objects within the same internal session.
    When you call your report using VIA JOB, a new session is created.
    Instead of using EXPORT and IMPORT to memory, put both programs into the same Function Group, and use global data objects of the _TOP include to exchange data.
    Another option, is to use SPA/GPA parameters (SET PARAMETER ID / GET PARAMETER ID), because SAP memory it is available between all open sessions. Of course, it depends on wich type of data you want to export.
    Hope it was helpful,
    Kind regards.
    F.S.A.

  • HT1222 I have iphone 4 and the software is ios 7.0.2. I am facing problems with my phone. Since the last software update my phone has started giving problems. like it hangs sometime when i recieve an incoming call. The carrier status bar shifts down a bit

    I have iphone 4 and the software is ios 7.0.2. I am facing problems with my phone. Since the last software update my phone has started giving problems. like it hangs sometime when i recieve an incoming call. The carrier status bar shifts down a bit and sometimes it vanishes automatically. I,m confused.
    Secondly i have an update IOS 7.0.4 waiting in my Software Update menu. I have tried so many times to update my iphone but it always fails to update the IOS 7.0.4. Any body suggest anything regarding this

    Wow. Lots of help. Thanks apple

  • Fullname giving problem

    Hi,
    I am getting problem while setting the fullname attribute of the user while creating and assigning the resources [AD,Domino,LDAP]. i am using PeopleSoftActiveSync Resource, which is our Authoritative source. whenever a new entry comes to PeopleSoft, i have to create an Account in IDM and to all the resources. I am using Process Rule to call the create WorkFlow from where i am calling different Sub Process for creating resources. but some of the resources are giving problem and the error which i am getting using "WF_ACTION_ERROR" says "Missing required Attribute Fullname".
    Eventhough i am setting fullname attribute while creating the IDM account. But the resources are assigned properly.
    Please help me.....

    Hello Srinivasa
    Two years ago I had the very same problem when I added a new field to an already existing and filled customer table. I debugged the maintenance view and saw that the new field contained an undefined value but not the initial value.
    You could try and use the DB utility (<b>SE14</b>) and activate the table again (of course without deleting the table entries).
    Alternatively, you could write a simple ABAP to initialize the field value, e.g.:
    DATA:
      gs_mchb   TYPE mchb,
      gt_mchb    TYPE STANDARD TABLE OF mchb.
      SELECT * INTO TABLE gt_mchb.
      gs_mchb-zvbeln_inquiry = ' '. " space
      MODIFY gt_mchb FROM gs_mchb
        TRANSPORTING zvbeln_inquiry
        WHERE ( zvbeln_inquiry ne ' ' ).
      UPDATE mchb FROM TABLE gt_mchb.
    Regards
      Uwe

  • I am having Macbook Pro, I have recently tried updating my operating system to OS Yosemite, but after that its giving problem in connecting to Wifi. The error is "Connection Time out Occurred". Its getting connected by Ethernet cable.

    I am having Macbook Pro, I have recently tried updating my operating system to OS Yosemite, but after that its giving problem in connecting to Wifi. The error is "Connection Time out Occurred". Its getting connected by Ethernet cable.

    Take each of the following steps that you haven't already tried, until the problem is resolved. Some of these steps are only possible if you have control over the wireless router.
    Step 1
    Turn Wi-Fi off and back on.
    Step 2
    Restart the router and the computer. Many problems are solved that way.
    Step 3
    Change the name of the wireless network, if applicable, to eliminate any characters other than letters and digits. You do that on your router via its web page, if it's not an Apple device, or via AirPort Utility, if it is an Apple device.
    Step 4
    Run the Network Diagnostics assistant.
    Step 5
    In OS X 10.8.4 or later, run Wireless Diagnostics and fix the issues listed in the Summary, if any.
    Step 6
    Back up all data before proceeding.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Enter the name of your wireless network in the search box. You should have one or more "AirPort network password" items with that name. Make a note of the name and password, then delete all the items. Quit Keychain Access. Turn Wi-Fi off and then back on. Reconnect to the network.
    Step 7
    You may need to change other settings on the router. See the guidelines linked below:
    Recommended settings for Wi-Fi routers and access points
    Potential sources of interference
    Step 8
    Make a note of all your settings for Wi-Fi in the Network preference pane, then delete the connection from the connection list and recreate it with the same settings. You do this by clicking the plus-sign icon below the connection list, and selecting Wi-Fi as the interface in the sheet that opens. Select Join other network from the Network Name menu, then select your network. Enter the password when prompted and save it in the keychain.
    Step 9
    Reset the System Management Controller (SMC).

  • My previous Visa was giving problems. I introduced a new visa and still my account is blocked. Can you help me?

    Hello,
    My previous credit card (Visa) was giving problems.
    I introduced the details of a new card and still my account is blocked, so I can't use the programs.
    Can you help me solve this problem please?
    Thank you.

    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • Nokia 9500-Speaker giving problem

    I have Nokia 9500, 2 years old and its speaker has started giving problems. I have got it repaired from Nokia Care point about 7 times and it works fine for 2-3 days, then it goes bad. Care point guys are not able to figure out the problem. Let me know if anyone of you have experienced this. Also how do i directly report this to Nokia, since care point guys are clueless

    what is the exact problem can you let us know in detail
    tongue is too confused on what to speak

  • Shockwave flash keeps giving problems

    I have read all the articles about the shockwave flash problem but it keeps giving problems, saying it is busy or does nt react anymore, continue or stop.
    If I continue nothing happens, if I stop the web-page disapears.
    Should I use another browser ? I'm fond of Firefox but what to do?
    I'm using W 8.1 and the latest Flash (15.0.0.152)
    Thank you in advance for reacting.
    Jan M Reerink

    You can check for problems with current Shockwave Flash plugin versions and try this:
    *check for updates for your graphics drive drivers<br>https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    See also:
    *http://kb.mozillazine.org/Flash#Troubleshooting
    You can also try to uninstall and reinstall Flash
    *http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html
    Note that this will remove all installed Flash players.
    You can find the latest Flash player versions for Firefox on this page:
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html

  • New Record in Database problems

    Hi All:
    I am new to Appleworks, I have been building a Database and everything was working fine, but suddenly everytime I try to enter a New Record instead of giving me Blank Field it repeats a record I have entered before, and I can't seem to get a clean new record. I am sure I am not duplicating it. I am typing Command R
    Thanks a lot
    Alex Neuman

    Hi,
    As much as I use and appreciate Apple hardware and software products, I must say that the Database section of AppleWorks is flaky and needs work. I suspect this will never happen given that iWorks is now Apple's front-runner. As far as I know iWorks doesn't have a db module anyway. I use Appleworks (db) in my work as music contractor as well as for invoicing and other routine applications. Until recently everything was fine. Then I built a db that had a whole lot more fields and formulae and was designed to account for just about any variable that might crop up when paying an orchestra. It was very frustrating. The problem arose when trying to delete fields. I finally came up with a workable db but it's bloated since it contains many unused fields that have been converted to "text" fields. They simply can't be deleted or AW crashes.
    It's important to me to have a different db for each job I'm handling due to confidentiality, so it's imperative that I be able to open an existing db, delete all records, save under a new name, and then proceed to customize the new db to suit the needs of the new job. Appleworks hasn't been up to the task. I've mentioned this before on this forum.
    Enter Filemaker Pro. There's a demo available. It's a much more fully implemented db front end: multiple tables per file, easy (and very familiar to AW users) to use interface, and perhaps best of all, great options for importing and exporting data.
    That's where I'm spending my next few bucks.
    RW

Maybe you are looking for

  • Export metadata

    I am using the web center portal framework. I have added portals during runtime. I have deployed this application on a standalone server and I donot see the portals I created during runtime. As far as my knowledge is concerned, these portals are save

  • Sony SR7 Mpeg support

    Hi Two question: I Captured footage through a camcorder using Edius and a Canopus capturing card. It saved my file as a .avi on a pc... I now want to open it in FCP but it only gives me sound and no image... When I try to render it it tells me I ned

  • How can we maintain tetxs in webdynpro insted of hardcode

    Hi Experts,                 i am new for this webdynpro abap.how can we maintain tetxs in webdynpro insted of hardcode like text symbols in abap.we are using freaquently texts in message manager.in best practice we should not maintain hard code. guys

  • Replicating Products/Catalog from SRM to MDM

    I am implimenting SRM and MDM on 7.1 and SRM-MDM Catalog 3.0 I wanted to replicate catalog data from SRM. As we know each catalog record in MDM contains Product, Supplier, Info record data. I am not sure if we have to map all these in MDM or It will

  • Java.lang.IllegalStateException: IMW-00008

    Hi, I built a JSP application (based in BC4J) with JDeveloper 9.0.3) which was working well, but now, when I try to update rows I get the following Error: java.lang.IllegalStateException: IMW-00008: information not available; request was released by