Reg. Removing the Records

Hi Friends,
i want to remove some lakhs of records from the table. while removing it
must not enter the transaction into redo log files. If it is possible pls tell?
Thanks in advance
Rgds.
Vedavathi.E

collect statistics on your schema, then try this query
select * from DBA_TAB_COL_STATISTICS
where TABLE_NAME=<100 columns table> and OWNER=<schema name>
order by NUM_NULLS desc;You can also use DBA_TAB_COLUMNS
DBA_TAB_COL_STATISTICS
Columns of user's tables,views and clusters
Columns
   OWNER
      Table,view or cluster owner
   TABLE_NAME
      Table,view or cluster name
   COLUMN_NAME
      Column name
   NUM_DISTINCT
      The number of distinct values in the column
   LOW_VALUE
      The low value in the column
   HIGH_VALUE
      The high value in the column
   DENSITY
      The density of the column
   NUM_NULLS
      The number of nulls in the column
   NUM_BUCKETS
      The number of buckets in histogram for the column
   LAST_ANALYZED
      The date of the most recent time this column was analyzed
   SAMPLE_SIZE
      The sample size used in analyzing this column
   GLOBAL_STATS
      Are the statistics calculated without merging underlying partitions?
   USER_STATS
      Were the statistics entered directly by the user?
   AVG_COL_LEN
      The average length of the column in bytes

Similar Messages

  • Help reg: Removing sel records in af:table and to prevent it from Commit

    I have a af:table in a page with some records.The table is editable and the records in the table are fetched from the DB. Now, I edit some of the records in the table.
    I would now like to delete one of the edited records.
    The delete action listener method should remove the record from the table and when I click save on the page (to save the other edited records), the removed record should not get committed to the database.At the same time, the removed record (from the table) should not get deleted from the database either.
    Can someone suggest on how can i achieve this?
    I use a delete action listener method to remove the record from the table in the UI but not sure how to prevent the removed record from getting committed (since its been modified).
    Thanks
    Sreekanth Vijay

    If you remove a row with the delete method, the row will be deleted from the db if you don't change the eo behavior.
    You can, as mentioned in the last post, use the remove from collection to remove three row from the current repeat without removing it from the db. To get three row back you have to execute the query again.
    Timo

  • Reg:Insert the record in another ztable

    Hi Experts,
                      My scenerio is that when a record is inserted from a program to a table i need to added the same values to another table which is on different server(ex: BW). Is it necessary to create events to do that because i don't need table maintainance generator or any other way.
    Regards,
    Vinoth

    Hi,
    In your case, you can do either of the following:
    1) Create RFC FM in other system (say, B) to update the Z table. (as suggested by Klaus)
    In SM59, maintain connection between your current system (say, system A) and the other system (B).
    In current system (A) program, call the RFC using destination keyword to update other system's (B) table.
    OR
    2) You can send IDOc to the other system and update the Z table (this may involve a lot of mapping and ALE configuration). Generally in SAP XI system, we map the fields with the sender system and update the records at the receiving end.
    Do let us know how you solved your problem.
    Regards,
    Saba

  • Reg : Find the records  in Table control

    Dear all
    Im having one requirement in table control .  In my table control totally 100 records contains sales documents
    for Example
    100010
    100020
    100030
    In that Records how to find particluar sale document in table control. How to build find option in table control.
    If possible or not
    Thanks & regards
    Sri

    Hi Sridhar,
    You need to implement amodal screen for this and a Find button above the table control.
    or you can use POPUP_GET_VALUES FM
    after you enter a value in the POP up screen.
    " You need to put some effort to implement this, wish you to implement it successfully as this is possible
    READ TABLE ITAB WITH KEY VBELN = FIND_VBELN. " FIND_VBELN is the field on your find screen.
    if sy-subrc = 0.
    tc-top_line = sy-tabix. " this makes the record visible in the First position
    endif.
    PROCESS AFTER INPUT.
      LOOP AT itab.
        MODULE find.
      ENDLOOP.
    In Program
    MODULE find INPUT.
      DATA : tab TYPE STANDARD TABLE OF sval WITH HEADER LINE.
      REFRESH tab.
      CASE ok_code.
        WHEN 'FIND'.
          clear ok_code.
          tab-tabname = 'VBAK'.
          tab-fieldname = 'VBELN'.
          APPEND tab.
          CALL FUNCTION 'POPUP_GET_VALUES'
            EXPORTING
    *   NO_VALUE_CHECK        = ' '
              popup_title           = 'Find Sales Order'
       start_column          = '5'
       start_row             = '5'
    * IMPORTING
    *   RETURNCODE            =
            TABLES
              fields                = tab
    EXCEPTIONS
       error_in_fields       = 1
       OTHERS                = 2
          IF sy-subrc = 0.
            READ TABLE itab WITH KEY vbeln = tab-value.
            IF sy-subrc = 0.
              tc-top_line = sy-tabix.
            ENDIF.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " find  INPUT
    Cheerz
    Ram

  • Removing a record multiple times

    hi ,
    i have a multi select table and a command button to remove the selected records(Iam calling a stored procedure to remove the record).
    i could able to remove the records for the first time.
    but when i wnt to delete the a record after deleting one for the first time i am getting a null pointer exception in the stored procedure call, i could get the values that are selected in the page.
    Please help in resolving this issue..
    i removed selection state and selection listener for that table..
    Does is affects?
    Thank you ,
    Naveen

    thanks for your reply.
    but when iam setting the selection state to <iterator>.collectionModel.selectedRow,
    iam getting the required functionality.
    I want to know that is there any way that we can set the selection state of a table dynamically in the java code

  • How can i remove my credit card on the record

    How come when i purchase again,,its automatic all of a sudden..they didnt ask anything,,about my card,,how can i delete my credit card record.??

    After establishing the Credit Card account (i.e. after you have made purchases), you can remove the credit card information by editing your payment info, choosing "None".
    Settings>iTunes and App Stores>Apple ID>View Apple ID>Sign-in>Payment Information

  • How to remove spaces present in one of the records in a table

    Hi
    i have a requirement where i need to delete the spaces present in one of the columns in a table.The table has a column with the data in the form of lastname,firstname.The old data present there has one space between the lastname and the firstname and the new data has no space between the last and the first names.so i need to come out with something that will remove the space between the last and firstname in the old records.
    Can you give me some suggestions?

    Maybe something like this?
    SQL> WITH data AS
      2  (
      3  SELECT 'Oracle,Corporation' lastnamefirstname
      4  FROM dual
      5  )
      6  SELECT REPLACE(lastnamefirstname,',',NULL)
      7  FROM data ;
    REPLACE(LASTNAMEF
    OracleCorporation
    1 row selected.

  • I have an original iPhone running version 2.2.1.  I wish to get rid of the phone, but before discarding it I want to remove the email records, phone book information, and photos.  I would like to leave the other apps in place.  Any suggestions?

    I have an original iPhone running version 2.2.1.  I wish to get rid of the phone, but before discarding it I want to remove the email records, phone book information, and photos.  I would like to leave the other apps in place.  Any suggestions?

    Delete you mail account on the phone and disable to sync your mail account in the info pane in iTunes with your phone connected, same for contacts. Also deselect photo syncing in the photo pane. After the following sync, your mail, contact and photos should be gone.
    Photos inside the camera roll have to be deleted on the phone.
    Remember, that apps only can be used with the account they were bought with. If the phone will be set up with a different iTunes account, all of your apps will be removed.
    Message was edited by: Ingo2711

  • Cannot remove a record created by the system

    dear experts, i m facing error  " Cannot remove a record created by the system]" while deleting tax group.
    regards
    awais

    That is system functionality in SP01, there is an input & an output code that you now cannot delete

  • Table disabled after removing the last record

    After removing the last row of table and disables it is unable to select any record.
    Version: JDeveloper 11.1.1.2.0

    Problem solution
    my backBean:
    protected void limpaSelecaoDaTabela() {
    if (usaPopup)
    if (table != null)
    table.setSelectedRowKeys(null);
    protected void limpaSelecaoDaTabela() {
    if (usaPopup)
    if (table != null)
    table.getSelectedRowKeys().removeAll();
    }

  • I cannot remove the free sound recorder toolbar from firefox.

    I was not smart and downloaded the free sound recorder from cnet. Now I cannot remove it. I have tried using the add/remove hardware method 3 times. I also installed malwarebytes to try and see if it caught anything and it did. I then removed the three things it found and several restarts later I am still having no luck. I am using microsoft xp and firefox 5.0. Thanks

    If you select Add-ons from the Tool menu, do you see this "WiseConvert" thing as a plugin or extension? If so, you can just disable it from there...
    Clinton

  • Removing Duplicate Records  and Merging with the previous record

    Hi
    Can any one help me in doing this..
    I want to delete a duplicate record from the current table.If there is one more record of the same kind. Compare the two records and fill the columns which are empty. Then Merge it. and Remove the duplicate record...Before deleting the record move it into the backup table..
    with regards
    srikanth

    I understand conceptually what you're after. At a detailed level, though, you're going to have to enunciate some specific rules to enforce.
    1) What makes row A a duplicate of row B? Is it just the Name column? Some combination of columns? Something else?
    2) What is the exact rule for merging rows? Among other questions
    - If you have multiple non-NULL values for a particular column, which column wins? If you have one row that is Manchester, NH and one that is Nashua, NH, which would you keep?
    - Does the merge logic depend on the particular column (i.e. perhaps you want the city & state to come from one row whereas first and last name can come from different rows)
    Justin

  • Removing the sound of flem in vocal recording

    I doubt its possible to remove the sound of flem from a vocal recording, but has anyone attempted it?
    One approach might be to use a spectrum analyzer to try to determine which frequencies are in the flem and try to filter them out. Or another approach might be to use a formant analyzer/generator/filter to "purify" the vowels where the flem is occuring. But I don't think Logic has these tools.
    Any suggestions? Plugins?
    Thanks.

    Really simple to get rid of the flem sound. Simply play your sound in a loop. play with a graphic eq untill you find where the annoying 'flemmy' bits are.
    then simply compress those particular frequencies (try to be tight), and give it a hard compression - so to start with you should hear all flem...
    and then bring the level of the flem down so you don't feel it so much. You might want to put a slower attack on the compressor to make it act like a bit of a deesser - deflemmer.... I rekon my flems at about 800, 400, and 200hz or their about
    Other than that all I can suggest is otravin - but otravin can hurt - it does get rid of flem very effectivley.
    Actually a formant editor/viewer should be able to get it too... When I was at music school I used this cool program on a mac which allowed you to open up a file in the formant view - then you could simply draw circles around particular formants, and choose to effect only that formant - delete it, enhance it, lower or increase volume - or move it around the pitch spectrum - it was cool you could just draw circles around the individual formants....
    I can't remember the name of that audio editor though - do you know the one I mean?

  • How to remove the duplicate HR record from per_all_people_f table

    Because of some mistake user has created two records for one employee one with start date 4th may 2010 and end date with 1st may 2011 and another with start date with 2nd may 2011 and end date is 31st of dec 2012.
    When I go to enter and maintain employee i found the record which starts with 4th may 2010 and end date with 1st may 2011.
    Please let me know how to remove the end date from this record.
    when I ran the query
    select * from PER_ALL_PEOPLE_F PAPF where upper(first_name)='UDAYA';
    i have first four column for this type.I want to remove the first row from here
    41246     02-MAY-11     31-DEC-12     81     1125
    41246     04-MAY-10     01-MAY-11     81     1125
    Please help.
    Regards,
    Prakash

    Okay, so you wish to just have one person record from the 4th May 2010 through to the 31st December 4712, right?
    In that case, do this:
    1) Query the person in the Enter & Maintain person form
    2) Hit Delete on the toolbar
    3) Select "Delete Next Change" from the date-track mode and save
    4) Re-query
    Now the date-track update from 2nd May is gone.

  • Reg: Updating the Financial Statement Version (FSV). Criteria for records ?

    Hi All,
    I am trying to update the Financial Statement Versions in lower systems with that of Production.
    Am using Xml to bring on the data from Production system to DEV box.
    I have the data as follows:
    Node_tab:
    Record Type      -                    Record Type A, P, G etc
    Record Name -     Name of the Record
    Level     -     Node Level     
    Parent     -     Parent of the current node
    Child     -     Child of the current node
    Next     -     Next node for the current node
    Desc     -     Description of the node
    Can someone tell me the criteria on which following tables are populated.
    FAGL_011PC
    FAGL_011ZC
    FAGL_011SC
    FAGL_011VC
    FAGL_011FC
    We have a Function Module FAGL_FSV_POS_UPDATE, that is based on these tables for updation of a FSV.
    Regards
    Raj

    Client is looking upon TDMS (Test Data Migration Server) to replicate the PRD data into lower systems.

Maybe you are looking for

  • OS 10.6.5 Mac; File Firefox 3.6.13.dmg not identified; Won't download file

    Tried to download FF 3.6.13. File seemed to down load but when trying to open the file error message stated: File not recognized. Macintosh OS 10.6.5. When I when I tried to download the file again, the download ran for about a minute or so and then

  • Hide/Delete lines from ABAP Query output when Quantity is 0

    Hi all, I'm changing an existing abap query. My requirement is to delete the rows from the report output where qantity = 0. I tried the following ways. 1. In SQ01, select the quantity field and check the checkbox for "Display only field <> 0", but th

  • Images not displaying in any browser

    Hello community. Recently I bought a Macbook Pro 15 inch 2.3Ghz intel core i7. Since I bought this machine I cant see some images in any browser (safari, chrome, firefox) in some websites. I have tried in different machines and the images in these we

  • Upgrade to MAC OS X 10.4.5 Leopard

    Upgraded my laptop and wiped hard drive clean. I don't remember my registration code now for quicktime pro. Is there any way to retrieve it?

  • BADI: MB_DOCUMENT_UPDATE

    I have implemented this BADI, however, when I do a posting of a material document, this BADI is not being triggered. Does anyone have experience in using this BADI and how can I trigger this BADI, just give me an example steps, so that I can know if