Tried to delete a particular row and out of memory

dear all,
hi. i have one physical primary and one logical standby. both are of the same processing power and configuration.  however, whenever i tried to delete one specific table row in the logical standby,it went thru the whole table and ended up gimme a out of memory error.  Any one hv the same experience?

857009 wrote:
dear all,
hi. i have one physical primary and one logical standby. both are of the same processing power and configuration.  however, whenever i tried to delete one specific table row in the logical standby,it went thru the whole table and ended up gimme a out of memory error.  Any one hv the same experience?
Not without an actual error message.  ORA-nnnnn

Similar Messages

  • How to delete a particular row in ALV table

    Hi,
    How to delete a particular row in ALV table based on some condition(by checking value for one of the columns in a row)
    Thanks
    Bala Duvvuri

    Hello Bala,
    Can you please be a bit more clear as to how you intend to delete the rows from your ALV? By the way deleting rows from an ALV is no different from deleting rows from a normal table. Suppose you have enabled selection property in ALV & then select multiple rows and click up on a button to delete the rows then below would be the coding: (Also keep in mind that you would have to maintain the Selection property of the context node that you are binding to your ALV to 0..n)
    data : lr_table_settings  TYPE REF TO if_salv_wd_table_settings,
                 lr_config          TYPE REF TO cl_salv_wd_config_table.
      lr_table_settings  ?= lr_config.
    ** Setting the ALV selection to multiple selection with no lead selection
      lr_table_settings->set_selection_mode( value = cl_wd_table=>e_selection_mode-multi_no_lead ).
    Next delete the selected rows in the action triggered by the button:
    METHOD onactiondelete_rows .
      DATA:  wd_node TYPE REF TO if_wd_context_node,
             lt_node1 TYPE ig_componentcontroller=>elements_node,
             wa_temp  TYPE REF TO if_wd_context_element,
             lt_temp  TYPE wdr_context_element_set,
             row_number TYPE i VALUE 0.
      wd_node = wd_context->get_child_node( name = 'NODE' ).
      CALL METHOD wd_node->get_selected_elements
        RECEIVING
          set = lt_temp.
      LOOP AT lt_temp INTO wa_temp.
        wd_node->remove_element( EXPORTING element = wa_temp ).
      ENDLOOP.
      CALL METHOD wd_node->get_static_attributes_table
        EXPORTING
          from  = 1
          to    = 2147483647
        IMPORTING
          table = lt_node1.
      wd_node->bind_table( new_items = lt_node1 ).
    ENDMETHOD.
    If in case this isn't your requirement please do let me know so that I can try come up with another analysis.
    Regards,
    Uday

  • How to make a particular row and column field editable in ALV

    Hi Experts,
    I have a requirement to make a particular row and column field editable in ALV output. Like i need to make 2nd row - 4th column editable of ALV output.
    Kindly help me out to solve this.
    Any help would be appreciated.
    Thanks,
    Ashutosh

    Hi Ashutosh,
    please check below, explained by some experts.
    In the below link  editing two columns MOD_RANK and TECH_RANK.
    These two columns will be in edit mode once after selecting the required record
    Editing single cell in a row of ALV table
    And also look for more info
    http://scn.sap.com/thread/884976

  • How do I add a new number to my iMessage? I have tried resting my phone signing in and out of apple ID and turned it on an off what do it do?

    How do I add a new number to my iMessage? I have tried resting my phone signing in and out of apple ID and turned it on an off what do it do?

    It won't allow me to do it, only says I can add an email I've search all over here for ways to do it and not one way has worked.

  • I just bought an iPhone 4 a few weeks back. I tried to delete their icloud account, and add mine but it's asking for a password to delete it. I have no way to get in contact with them. Is there any way around it?

    I just bought an iPhone 4 a few weeks back. I tried to delete their icloud account, and add mine but it's asking for a password to delete it. I have no way to get in contact with them. Is there any way around it?

    There's no way around it.  The former owner needs to erase the phone and remove it from their account as explained here: http://support.apple.com/kb/TS4515.  No one else can help with this, including Apple.

  • I am having problems with my droid incredible 2 loading texts and so I thought maybe I had too many saved, I tried to delete some of them and it wont seem to delete either?

    I am having problems with my droid incredible 2 loading texts and so I thought maybe I had too many saved, I tried to delete some of them and it wont seem to delete either?

    Did you pull the battery?

  • HT1926 I have tried to delete the latest itunes and get back to 10.7. Now I have nothing in my library. How do I get the freshly installed itunes 10.7 to sync with the itunes STORE, and get me computers library back?

    I just tried to delete the new itunes (Hate it & could figure out how to sync iphone any more), and I reverted back to itunes 10.7 64-bit. When I tried to use itunes, it couldnt read the library because it had been created by the newer version (why it didn't get deleted when I removed itunes I do not know), so I deleted a few itune library files that I found still on my computer. Now I have the 10.7, but nothing in it... no library items. How do it get the itunes to sync with the itunes store

    This is what you should have done...
    To roll back to iTunes 10.7 first download a copy of the installer from here, uninstall iTunes and suppporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • Updating the particular row and column in a JTable

    Hi,
    I have a JTable which is having fixed number of columns. When i am trying to update a particular cell in the table
    during programm execution i am not able to do it.
    I am getting the row number and column number correctly. But when i am going to set the data it is not setting at the same row. It is setting some other row according to the m_index (according to the sorting).
    i am doing :
    JTableModel model = (JTableModel) m_TablePan.getTableModel();
    model.setValueAt(savedData, row, column);

    See the convertXxxIndexToView and convertXxxIndexToModel methods.
    db
    Edited by: Darryl.Burke -- wrong methods suggested
    Edit2: Evidently lipumama doesn't follow up on many questions posted.
    One for the blacklist.

  • Delete millions of rows and fragmentation

    Hi Gurus,
    i have deleted 20 lak rows from a table which has 30 lak rows,
    and i wanted to release the fragmented space , please tell me the procedure other than exp/imp or alter table move
    and also the recommended way to do this prod env... (coalesce /alter move etc.. )
    db version is 11.2
    Thanks for great help
    Raj

    870233 wrote:
    Hi Gurus,
    i have deleted 20 lak rows from a table which has 30 lak rows,
    and i wanted to release the fragmented space , please tell me the procedure other than exp/imp or alter table move
    and also the recommended way to do this prod env... (coalesce /alter move etc.. )
    db version is 11.2
    Thanks for great help
    RajInstead of Deleting 2 Million rows out of 3 Million, I would suggest Creating a Temporary table with data that should be retained and Dropping the original table.
    I believe, this will amount to lesser work.
    Steps would be like below:
    1. Create table your_table_temp as select * from your_table where condition to retain records;
    2. Drop table your_table;
    3. Alter table your_table_temp rename to your_table;
    You might as well want to exploit the advantage provided by the NOLOGGING while loading your temp table.

  • How do I delete the zoom in and out effect on my slideshow?

    I have installed this widget to my website but I only want the fade in and out effects on the transitions. The zooming is not something I'm interested in since i am showcasing pieces of my portfolio. I need the images to come in and out at 100% of their size and not zoom in or out at all.
    Is this possible? I don't know js and going throught the plugin scripts was confusing enough.
    Is there a plugin or anything I can just delete on my page that will just cancel this particular effect out?
    Thank you!

    Hey Gramps
    Thank you for the help. It stopped the effect but it also made the slideshow an unordered list going from top to bottom so the images were not in the slideshow itself.
    Here is what my code looks like
    <script type="text/javascript">
    // BeginOAWidget_Instance_2141543: #ImageSlideShow
    var ImageSlideShow = new Spry.Widget.ImageSlideShow("#ImageSlideShow", {
        widgetID: "ImageSlideShow",
        widgetClass: "BasicSlideShowFS",
        injectionType: "replace",
        autoPlay: true,
        displayInterval: 8000,
        transitionDuration: 2000,
        componentOrder: ["name", "title", "view", "controls", "links"],
        sliceMap: { BasicSlideShowFS: "3slice", ISSSlideLink: "3slice" },
        plugIns: [ Spry.Widget.ImageSlideShow.ThumbnailFilmStripPlugin, Spry.Widget.ImageSlideShow.TitleSliderPlugin, Spry.Widget.ImageSlideShow.PanAndZoomPlugin ],
        TFSP: { pageIncrement: 8, wraparound: true }
    // EndOAWidget_Instance_2141543
          </script>
    You asked me to remove it from the constructor.
    Exactly what do I need to change from this code so it will cancel the plugin?
    Thank you again, it feels like I'm getting closer.
    Guillermo

  • Searching for a string in the xml present in a particular row and column.

    Hi All,
    We have a table in which in one of the column a complete payload xml is getting stored.
    Is there any way to search for a particular string in the stored xml of a particular row?
    Thanks in Advance,
    Bob

    Here is a simple example of what Blu is saying
    I have create a table temp_dept like this
    SQL> desc temp_dept
    Name                          Null?    Type
    DEPTNO                                 NUMBER
    DNAME                                  VARCHAR2(10)
    LOC                                    VARCHAR2(8)
    EMP_XML                                XMLTYPE
    I have loaded employee detail from emp table into emp_xml as xml data. here is a sample
    SQL> select * from temp_dept;
        DEPTNO DNAME      LOC      EMP_XML
            10 ACCOUNTING NEW YORK <?xml version="1.0"?>
                                   <ROWSET>
                                    <ROW>
                                     <EMPNO>7782</EMPNO>
                                     <ENAME>CLARK</ENAM
            20 RESEARCH   DALLAS   <?xml version="1.0"?>
                                   <ROWSET>
                                    <ROW>
                                     <EMPNO>7369</EMPNO>
                                     <ENAME>SMITH</ENAM
            30 SALES      CHICAGO  <?xml version="1.0"?>
                                   <ROWSET>
                                    <ROW>
                                     <EMPNO>7499</EMPNO>
                                     <ENAME>ALLEN</ENAM
    Now i can convert the emp_xml into a table and query like this
    SQL> select d.deptno
      2       , d.dname
      3       , d.loc
      4       , e.*
      5    from temp_dept d
      6       , xmltable
      7         (
      8              '/ROWSET/ROW' passing d.emp_xml
      9              columns empno          number        path 'EMPNO'
    10                    , ename          varchar2(100) path 'ENAME'
    11                    , job            varchar2(100) path 'JOB'
    12                    , mgr            number        path 'MGR'
    13                    , hiredate       varchar2(100) path 'HIREDATE'
    14                    , sal            number        PATH 'SAL'
    15                    , com            number        PATH 'COM'
    16         ) e
    17  /
        DEPTNO DNAME      LOC           EMPNO ENAME      JOB               MGR HIREDATE          SAL     COM
            10 ACCOUNTING NEW YORK       7782 CLARK      MANAGER          7839 09-JUN-81        2450          0
            10 ACCOUNTING NEW YORK       7839 KING       PRESIDENT             17-NOV-81        5000          0
            20 RESEARCH   DALLAS         7369 SMITH      CLERK            7902 02-APR-81        2975          0
            20 RESEARCH   DALLAS         7566 JONES      MANAGER          7839 02-APR-81        2975          0
            20 RESEARCH   DALLAS         7788 SCOTT      ANALYST          7566 19-APR-87        3000          0
            20 RESEARCH   DALLAS         7876 ADAMS      CLERK            7788 23-MAY-87        1100          0
            30 SALES      CHICAGO        7499 ALLEN      SALESMAN         7698 20-FEB-81        1600        300
            30 SALES      CHICAGO        7521 WARD       SALESMAN         7698 22-FEB-81        1250        500
            30 SALES      CHICAGO        7654 MARTIN     SALESMAN         7698 28-SEP-81        1250       1400
            30 SALES      CHICAGO        7698 BLAKE      MANAGER          7839 01-MAY-81        2850          0
            30 SALES      CHICAGO        7844 TURNER     SALESMAN         7698 08-SEP-81        1500          0
    11 rows selected.
    SQL>
    You can apply filter for the necessary value that you are searching.

  • Trying to delete specific pages inpdf and with some get message "bad parameters". What does that mean

    I'm trying to delete specific pages in a pdf document but I get the message "bad parameters" on some of them (not all).  What does that mean & how do I get past that to delete the page?

    My bad, this was not Adobe Reader - employee was just in an Adobe document which we edit/delete all the time but in this particular document she got the "bad parameter" message on certain pages.

  • Data structure and out of memory error

    I have a program need to load data files and store the float data values in 3 two dimentional array. These data files are generated from biological experiments and are quite large. For e.g., when I tried to load 59 files, each file has 409,600 rows and store these data in 3 Float[][] arrays, like following
    pixel: Float[59][409600]
    signal: Float[59][409600]
    std: Float[59][409600]
    I know the variables of float data type occupy 4 bytes in memory, is this true for the object of Float data type(the wrapper class for float)?
    After cacluation, the total memory needed for the three 2D arrays are:
    4 * 409600 * 59 * 3 = 276.6 (MB)
    I'm using JBuilder 9 Personel and already set the parameter of -XmX as 800 MB, but I still get out of memory error in the middle of loading. Could you give a hand on this issue?
    thanks a lot!

    ok, you mean the Float object will take 24 bytes to
    store in memory instead of 4 bytes needed for float
    variable, right?Yes it's about 20 bytes per Float object. 4 for the actual float and about 16 in overhead. And then 4 bytes for the reference to the object in the array. So each float will occupy a total of about 24 bytes whereas a float just takes 4.
    Would you please give me a clue where
    you get this information?Well an object stores the actual data and has an overhead of about 16 bytes so it's just to add it up -:) I use this as a rule of thumb. I don't remember anymore where I got it in the first place.
    The purpose to store in
    Float object is to display these data directly in
    JTable to reduce the overhead for displaying data in
    table.Yes but it's better to minimize the storage of the raw bulk data. You can always have getter methods that return Float objects to the rest of the program "on demand".
    I've a class to create the table model by
    subclassing the AbstractTableModel. Based on these
    loaded raw data, I've to do other expensive operation
    using different analysis methods. So maybe using the
    built in data type is more effcient in my later
    calcuations.It's always a tradeoff. Use float for fast calculations and raw storage, and Float otherwise for maximum object orientation.

  • General Error (34) and Out of Memory Msgs

    I've been editing footage for a video for quite some time (several weeks). I have several folders in my media browser depicting different scenes. However, there is only one folder with media clips that yield the message (General Error {34} followed by the Out of Memory message)..
    However, when I go to other clips and click on them, I do not get those messages. Everything's fine...I can see them in the Viewer, no problem and I can edit as appropriate. It only seems to be with that one set of media clips...So (and I'm afraid to ask) am I staring at a corrupt set of media clips in this folder? What's a way to remedy this?
    Thanks,
    Henri
    Powerbook G4, 1.67Ghz Superdrive 2GB RAM   Mac OS X (10.4.7)   2 LaCie Firewire Drives
    Powerbook G4, 1.67Ghz Superdrive 2GB RAM   Mac OS X (10.4.7)   LaCie Firewire Ext HD's - 200 and 250 GB (1st FW HD is the scratch disk)

    Yes... Yet there is so much information around this and so many different iterations to the solutions that the right solution for my particular case is not that easily discernible. Some suggest removing old preferences, others suggest memory and/or corrupt file issues. I've already run Diskwarrior to see if partition/drive problems exist, which was another discussion thread...
    I'm not sure if my situation, being that only one browser media file that has this problem could be directly addressed.
    I simply want some 2nd opinions regarding it.

  • "File Error" and "Out of Memory" when rendering FCE

    Dear all,
    I imported a 2 hour holiday video into FCE.
    When rendering the video, a message appears that the rendering process will last about 15 minutes to complete.
    However, frequently I am warned by the following message:
    "File Error: The specified file is open and in use by this or another application"
    When activating Rendering again, the render time is now increased to about 45 minutes.
    I now either receive a couple of times the message: "File Error: The specified file is open and in use by this or another application" >>or even worse: "Out of memory"<<.
    Today I purchased an addition 2GB of memory to increase my memory form 750 MB to 2.5GB !!!
    Can anyone please tell me what could be the cause of these messages and how to solve them?
    BTW, no other programs are running while I use FCE.
    Thanks in advance,
    Hans E.<br>
    PowerMac G5-Dual 1.8GHz, Memory 2.5GB, iMac G3-600MHz, Airport, Airport Express Mac OS X (10.3.9)
    PowerMac G5-Dual 1.8GHz, Memory 2.5GB, iMac G3-600MHz, Airport, Airport Express Mac OS X (10.3.9)
    PowerMac G5-Dual 1.8GHz, Memory 2.5GB, iMac G3-600MHz, Airport, Airport Express   Mac OS X (10.3.9)  

    Is it happening when you're rendering, or exporting?
    The error message means FCE is trying to rewrite a file that it is currently using. It could be mistakenly trying to save a render file, if you're only rendering, or if you're trying to re-export a file, you'll get that message.
    Try dumping all your render files, restarting FCE and trying again.
    The Out of Memory error almost always points toward a corrupt file. Could be a source file, could be a render file. Again, dump your render files and try again.
    If these don't work, you need to close FCE, take all your source media offline, then open FCE. Now, reconnect each clip one by one until you find the corrupt clip. Keep going, there may be more than one. Re-capture the corrupt clips and you should be good to go.

Maybe you are looking for

  • Weird problem getting P965 Plat to post

    So I recently inherited a pc from a friend that decided to move across the country... He said it's never worked after he put it together and he believed the mobo was to blame.  So I do some bench testing with just cpu, video card and memory... and al

  • Safari 6.2.4 problems

    After downloading the Safari 6.2.4 version/security update, I have had horrible pop-ups anytime my curser pauses on a word, or anything on a web page.  Also, an entire page will be selected when I have done nothing to cause it.  I'm having other prob

  • Exp/imp using xml files in oracle 9i

    hello, I need to export tables data (only) from oracle 9i DB into xml files, and the import the xml file into another oracle 9i DB. I can't use any other format then XML. can you tell me what is the best way for doing that? thanks.

  • HT201272 Hi, i need to re-download my audi-books but the store still ask me to buy it again?

    Hi all, I'm having a problem with re downloding my audi-books? can someone help? Aslo, one of the downloaded audi books didnt work with me? can some recommend an advice? thanks,

  • Advice on forms logic

    Hi Friends , I have a reference table Ref_table_code, Ref_table_code ID Table_name Related_table Code Status, Description Definition ------ e.t.c Table name is like a domain , and you can have multiple codes for a table_name. The requirement is to cr