Names were listed more than 2.

Hi,
Is there an easy way to delete the duplicate names? The names were listed 4 to 5 times and i want to delete those names and will only have 1 name.
I can do it manually but i got 7 thousand names on the list. how would i do it in query?
For example:
in the database, i have these
Achilles Tsatsas
Achilles Tsatsas
Achilles Tsatsas
Achilles Tsatsas
Achilles Tsatsas
Achilles Tsatsas
I need only 1 name..
Hope this is clear..
Thanks,
Edited by: 924864 on Jun 13, 2012 3:34 AM

From Oracle Documentation
For each row in the database, the ROWID pseudocolumn returns the address of the row. Oracle Database rowid values contain information necessary to locate a row:
- The data object number of the object
- The data block in the datafile in which the row resides
- The position of the row in the data block (first row is 0)
- The datafile in which the row resides (first file is 1). The file number is relative to the tablespace.
Usually, a rowid value uniquely identifies a row in the database. However, rows in different tables that are stored together in the same cluster can have the same rowid.
Rowid values have several important uses:
- They are the fastest way to access a single row.
- They can show you how the rows in a table are stored.
- They are unique identifiers for rows in a table.
Edited by: Akss on Jun 13, 2012 3:52 AM
Added some extra info from oracle doc.

Similar Messages

  • Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File - Export - Album name with number).

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

    Why does iPhoto (9.0/11) not retain the Event name when exporting more than one event? (using File -> Export -> Album name with number).
    Exporting a single Event retains the Event name which is what I'd expect. But highlighting more than one event and exporting it renames the images to Events 001.JPG, Event 002.JPG etc.
    I was recently on holidays and had all my events nicely split on Dad's computer but when I went to export it I couldn't retain any of this information. Now I have to replicate this all again on my computer.
    It wasn't possible to export the entire library as the external drive was fat32 format an I didn't want all of it. It would be nice to export a bunch of events to someone and have it retain the name.
    Does anyone have a work around or will this be fixed at some point by Apple?

  • External editor: Can you list more than one?

    Is it possible to list more than one external editor in Aperture's preferences? I know you can install plugins but would like to have more than one app listed.

    I'm also missing the possibility to add more than one external editors which I use for specific edit jobs.
    I posted a feature request concerning this via the "Aperture Feedback".

  • I want application name can display more than 13 character.  Could you tell me how to fix this problem?

    I want application name can display more than 13 character.
    Could you tell me how to fix this problem?

    Backup and restore your software via iTunes. If the problem continues, restore as a NEW device. If this solves it, that means there is some corruption in your backup file. If the problem is still there, you should take it to the Genius Bar at an Apple Store for evaluation.

  • Spool List more than 99 pages to PDF File to Mail

    Hi All,
    I want to convert a big spool list (342 Pages) to PDF file to send it by e-mail.
    I use the following code to convert my spool to PDF file:
    Convert to PDF file*
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid              = w_spool_id
          no_dialog                = 'X'
          dst_device               = c_device
        IMPORTING
          pdf_bytecount            = gd_bytecount
        TABLES
          pdf                      = it_pdf_output
        EXCEPTIONS
          err_no_abap_spooljob     = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_destdevice       = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 9
          err_btcjob_submit_failed = 10
          err_btcjob_close_failed  = 11
          OTHERS                   = 12.
      CHECK sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings*
      LOOP AT it_pdf_output.
        TRANSLATE   it_pdf_output           USING ' ~'.
        CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.
      ENDLOOP.
      TRANSLATE gd_buffer USING '~ '.
      DO.
        it_mess_att = gd_buffer.
        APPEND it_mess_att.
        SHIFT  gd_buffer LEFT BY 255 PLACES.
        IF gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    The problem with the FM 'CONVERT_ABAPSPOOLJOB_2_PDF' is when my spool have more than 99 pages. In this case, the FM generate a backscreen job (sm37) to convert my spool and generate a binary PDF spool.
    After this step, the 'FM SO_DOCUMENT_SEND_API1' send an e-mail with the binary PDF File recovered in the spool list but i can't open the file with Adobe Reader because the format is wrong.
    Someone knows how could i convert my big spool list to PDF file to send it by e-mail adress ?
    Thanks a lot for your precious help that i need so much !

    Generate big spool list
    REPORT  ZGEN_SPOOL.
    tYPE-POOLS: slis.
    TYPES: BEGIN OF str_mara,
    matnr TYPE mara-matnr,
    ersda TYPE mara-ersda,
    ernam TYPE mara-ernam,
    laeda TYPE mara-laeda,
    aenam TYPE mara-aenam,
    vpsta TYPE mara-vpsta,
    END OF str_mara.
    DATA: i_mat TYPE TABLE OF str_mara,
    wa_mat LIKE LINE OF i_mat.
    DATA:params LIKE pri_params.
    DATA: days(1) TYPE n VALUE 2,
    valid TYPE c.
    DATA: obj TYPE REF TO cl_salv_table.
    SELECT matnr
    ersda
    ernam
    laeda
    aenam
    vpsta
    UP TO 4999 ROWS
    FROM mara INTO CORRESPONDING FIELDS OF TABLE i_mat.
    TRY.
    CALL METHOD cl_salv_table=>factory
    IMPORTING
    r_salv_table = obj
    CHANGING
    t_table = i_mat.
    CATCH cx_salv_msg .
    ENDTRY.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    * destination = 'QAS'
    list_name = 'ZTEST_VERTEX'
    list_text = 'TEST'
    no_dialog = 'X'
    immediately = ' '
    expiration = days
    IMPORTING
    * OUT_ARCHIVE_PARAMETERS =
    out_parameters = params
    valid = valid
    * VALID_FOR_SPOOL_CREATION =
    EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params = 2
    invalid_archive_params = 3
    OTHERS = 4
    IF sy-subrc ne 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    TRY .
    NEW-PAGE PRINT ON PARAMETERS params NO DIALOG.
    CATCH cx_sy_nested_print_on .
    ENDTRY.
    CALL METHOD obj->display.
    NEW-PAGE PRINT OFF.

  • Getting Music Store to list more than 30 albums

    OK, let's say I want to see all albums featuring music by Brahms. I type "Brahms" into the search box. (You can type it into the "Composer" box of Power Search if you like; it will still produce the following effect.) On the "results" page, I click "See all" in the "Albums" panel. This brings up a list of 30 albums.
    Now I know very well that iTunes has more than 30 albums of music by Brahms. But there's no "Page 2" or "See more" button. So I can't browse them. Am I missing something?
    Thanks in advance for your help,
    Chris
    (P.S. As it happens, there is a way to see all albums of music by Brahms. On the "Classical" front page of iTunes Music Store, there's a section at the bottom titled "The Great Composers". If I click on Brahms here, it brings up 679 albums. Now that's more like it! BUT: there are only 13 composers in the list. Completely useless if I want to browse albums of music by any composers not in the list - Tchaikovsky for instance.)
    iMac G5 Rev A   Mac OS X (10.3.9)   MacBook 2.0GHz Mac OS X (10.4.8)

    there is a see all button try look on the far left bottom or on the dark blue bar for see all

  • Why can't I list more than one e-mail addressee suddenly?

    I think since downloading Mavericks my mail program does not allow me to put more than one contact in the To box. Very frustrating. I
    don't see anything in Mail preferences that will address this problem.

    But the first addressee is no longer inside a blue oval. So, unfortunately, your suggestio does not answer my question.
    Another change to mail is that when I try to send an attachment based on text in Pages, only part of the text appears in my outgoing e-mail. Has Maverick messed things up?

  • Songs listed more than once on itunes...

    Is there any way to get rid of double entries (songs that appear more than once in library) other than going through all your songs and clearing each one?

    Choose Edit--Show Dupicate Songs and you can see all the duplicates and delete that way without having to look at every song in you library. let me know if this helps.

  • How can I list more than 100 VI's during Object find?

    I am trying to use the LabVIEW 6 Find tool. When I select Object and VI it only lists 100 subvi's within the application. Is there a way to increase the number of subvi's listed?
    Attachments:
    LabVIEW_Find_example.bmp ‏974 KB

    Use the "VIs by Name" option. I'm not sure what the limit is on that one, but it should be higher than 100.
    Remember that Alliance Members are here to help. We do this stuff every day.
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • Delete email lists more than just one at a time. In groups or blocks.

    I want to delete a lot of old emails. Instead of doing it one at a time can I do a group all at one time?

    Yes, you can.

  • Any way to change names of artists more than one at a time?

    I've got some AFI that shows up as A.F.I., and some AFI that shows up as AFI. There are a ton of songs with each spelling. Is there any way I can tell Itunes to convert A.F.I. to AFI?

    Highlight all the ones you want to change. Right click - get info, then change the artist to what you want. Changes all of them
    good luck

  • Is there any way  to create table  of more than 30 char length name

    hi all,
    Please tell me is there any way to create table of more than 30 char length name in oracle 10g
    Regards

    Hi,
    If you want table name to be more than 30 Char.
    I am sure,your naming convention is not upto the mark.
    Its not possible in 10g as well as in 11g.
    Thanks
    Yogesh Nagle
    India

  • Can I list/export more than 3-4 all-day events

    Hi:
    I need a way to list more than 4 all-day events in the monthly view. The three dots up above mean they will list in the daily/weekly view but this does me no good.
    I also wonder if you can export to .pdf more than 3 all-day events. Why is this not possible? It's a severe limitation, and I find too many of these with Mac's stuff. Close, but something silly always gets in the way. I am almost over it.
    please help if you can. Much obliged,
    ms

    Hi Mark,
    As far as I know, there isn't a way to show more than three all-day events in iCal's Month view.
    You could make a PDF of the month in List view. This should show all of your events. In month view choose Print. In the dialog change the view from Month to List.
    Hope this helps.
    John M

  • More than one device connected?

    I am testing out a project for a mobile device and  when I package the apk and attempt to launch it on my phone, I get an error message sying that it can't be done because I have more than one device connected. I only have one device connected.
    I've tested this project before n my phone and it launched as it was supposed to, but I added a document class to the project and think that might be causing the problem. Previously, I added all of my action script to a keyframe on the timeline, and everything worked fine.
    I'd like some feedback as to whether or no the document class issue is the likely problem and how to get around it. If that's not the problem, I'd like to what what might be going on. As always, any help is greatly appreciated. Thanks.

    using a document class is not the problem (though your document class may be a problem if it has errors).
    use a file explorer to see if your computer lists more than 1 connected device.  or restart your computer to reset its external connections.

  • Viewing more than 9 Forms from the Window Menu Item

    Hi,
    I would like to know if you can list more than 9 Forms at one time from the Windows Menu Item before you have to select the MORE WINDOWS option to display the entire list of currently opened forms.
    Can this be set in the .mmb or some config file?
    It would be nice to have a list of about 12 Forms to choose from at one time before selecting the MORE WINDOWS option.
    Christina.

    Hi Frank,
    The Forms version our system uses is Oracle Forms 6i.
    A user would like to know if this scenario is possible during runtime.
    However, I would like to know what modifications can I make during design time to make this possible.
    Thanks.
    Christina.

Maybe you are looking for

  • Level Based Measures not working

    Hi, I've put an LBM at the second Level (Region) of a Dimension called GeographicDIM. the Dimension looks like: Total, Region, Country The LBM is called #Customer_ID_Region, created as new a Logical column of an existing logical Column of my Fact, ag

  • Why can't I revert to Quicktime 7.2

    I'd like to go back to Quicktime 7.2 but when I try to install it on my system drive it tells me the system drive is incompatible. Is it because I'm running Leopard?

  • Shortcuts stopped working for text messages after installing iOS 6. How do I fix this?

    Also emoji does not show up either. I have even restarted my phone. Reinstalled the App. Restarted my phone again

  • Editing MP4 files in CS6 then importing into Premiere Elements 13

    I would like to import MP4 files from a Phantom Drone into Photoshop CS6 ---Edit those files--Then rather then making the movie in CS6 --import into Premiere Elements 13 to edit and render ..Is it possible to use both program's to enhance the final m

  • Adobe Flash Player - Version 10.3

    Hello Everyone, I am sorry to bother you but I am at my wits end. I have been attempting to install Adobe Flash Player 10.3 with no luck. Every time I try, I get an error message that says. "corrupt content from reliable source", "Download was unsucc