Data comparison and deletion of duplicates

I have moved all of my data over to the mac from my PC. Everything has been fairly smooth, but I have a question for some of you regarding data duplication which I have not found a work around yet. Currently, I own a mac mini running 10.4.3 and I also picked up a copy of Filemaker Pro 7 along with MS Office 2004. I needed a database program for the Mac to keep my email lists up to date, but I haven't had time to tinker with Filemaker 7. So my problem is as follows:
There are two .txt files. One with current email address's and the second with outdated email address's. I need to compare both files together and when I find a match between the current and bad email address I need to delete the address in the current email txt file.
I am not fluent enough in Filemaker 7 to figure out how to do a comparison between the 2 tables and then delete the appropriate data when there is a match. I had this set up available on MS Access on my PC, but I need to replicate this process on the Mac. What options do I have available or if someone can help me in the right direction to a possible solution. I would assume that Automator could do this. Maybe there is something in Excel that I can create a workaround.
Thanks again.
Dankman

FileMaker Pro has some support options where you might be able to find some more help:
http://www.filemakerpro.com/support/mailinglists.html
-Doug

Similar Messages

  • HT4915 When i did my itunes match, there were some duplicated albums and songs.  I have gone into my library and deleted the duplicates, but they still show up on my iphone as duplicates.  What can i do to get rid of them?

    When I did my itunes match, there were some duplicated albums and songs in my library.  I have gone back into my library from my computer, and deleted the duplicates.  When I did so, itunes did not ask me if I wanted to delete them from the cloud.  They are still showing up on my iphone as duplicates in the cloud.  What can I do to get them from showing up in my iphone?

    They are not on the iphone in the first place.  It is just a setting that allows you to see the songs that are available in icloud, but not on your iphone.  If you turn the setting to off, then you no longer see the songs that are in icloud, but NOT on your iphone.

  • Hello. I am owner of an iPod Touch 5gen. I have an error "iTunes was unable to load provider data from sync services". I tried: All Apple's tutorials including reseting sync data, reinstalling and deleting all of iTunes components including deleting it fr

    Hello. I am owner of an iPod Touch 5gen. I have an error "iTunes was unable to load provider data from sync services". I tried: All Apple's tutorials including reseting sync data, reinstalling and deleting all of iTunes components including deleting it from system registry. My system is Windows 7 64bit.

    UPDATE: The true error is : '
    "itunes was unable to load data class information from sync services"
    Any of the topics didnt work.
    Sync on my wife's laptop works.

  • How do i get rid of duplicates in my photo library?  I imported the photos again by mistake and dont want to do it manually.  is there a way to have iphoto compare and delete all duplicates?

    How do i delete duplicate photos in my iphoto library.  i imported them (1500 pics) twice and don't want to manually go through them all.  Is there a way to get iphoto to compare photos and delete the duplicates?

    There are two apps, actually one app and one Applescript script, for finding and removing duplicate photos from iPhoto. They are:
    Duplicate Annihilator
    iPhoto AppleScript to Remove Duplicates
    OT

  • Data comparisons and movements

    I have a Heap Sort using the following code, and I cannot seem to figure out how many data comparisons and data movements there are as the heap is sorted. Does anybody know how to count the number of comparisons and movements?? Please let me know....much appreciated...Thanks :)
    import java.io.IOException;
    import java.util.*; // Calender Class for timing
    public class Heap {
    private MyNode[] heapArray;
    private int maxSize;
    private int currentSize; // number of items in array
    public Heap(int mx) {
    maxSize = mx;
    currentSize = 0;
    heapArray = new MyNode[maxSize];
    public MyNode remove()
    MyNode root = heapArray[0];
    heapArray[0] = heapArray[--currentSize];
    trickleDown(0);
    return root;
    public void trickleDown(int index) {
    int largerChild;
    MyNode top = heapArray[index];
    while (index < currentSize / 2)
    int leftChild = 2 * index + 1;
    int rightChild = leftChild + 1;
    // find larger child
    if (rightChild < currentSize
    heapArray[leftChild].getKey() < heapArray[rightChild]
    .getKey())
    largerChild = rightChild;
    else
    largerChild = leftChild;
    if (top.getKey() >= heapArray[largerChild].getKey())
    break;
    heapArray[index] = heapArray[largerChild];
    index = largerChild;
    heapArray[index] = top;
    public void displayHeap() {
    int nBlanks = 32;
    int itemsPerRow = 1;
    int column = 0;
    int currentIndex = 0;
    while (currentSize > 0)
    if (column == 0)
    for (int k = 0; k < nBlanks; k++)
    System.out.print(' ');
    System.out.print(heapArray[currentIndex].getKey());
    if (++currentIndex == currentSize) // done?
    break;
    if (++column == itemsPerRow) // end of row?
    nBlanks /= 2;
    itemsPerRow *= 2;
    column = 0;
    System.out.println();
    else
    for (int k = 0; k < nBlanks * 2 - 2; k++)
    System.out.print(' '); // interim blanks
    public void displayArray() {
    for (int j = 0; j < maxSize; j++)
    System.out.print(heapArray[j].getKey() + " ");
    System.out.println("");
    public void insertAt(int index, MyNode newNode) {
    heapArray[index] = newNode;
    public void incrementSize() {
    currentSize++;
    public static void main(String[] args) throws IOException {
    int size, i;
    size = 500;
    Heap theHeap = new Heap(size);
    for (i = 0; i < size; i++) {
    int random = (int) (java.lang.Math.random() * 5000);
    MyNode newNode = new MyNode(random);
    theHeap.insertAt(i, newNode);
    theHeap.incrementSize();
    System.out.println(size+" random numbers are currently being generated...");
    for (i = size / 2 - 1; i >= 0; i--)
    theHeap.trickleDown(i); // creates the heap
    System.out.print("\nRandom Numbers in a Heap: ");
    theHeap.displayArray(); // prints the heap
    long time1000start = new Date().getTime() ; // this makes a new Date object and then sets the long integer value of the Date object
    // ******************* START - sorting numbers *******************
    for (i = size - 1; i >= 0; i--)
    MyNode biggestNode = theHeap.remove();
    theHeap.insertAt(i, biggestNode);
    // ******************* END - sorting numbers *******************
    long time1000end = new Date().getTime() ; // this makes a new Date object and then sets the long integer value of the Date object
    double timediff1000m = (time1000end - time1000start); // difference of time in milliseconds
    double timediff1000s = ((time1000end - time1000start) / 1000); // difference of time in seconds
    System.out.print("\nRandom Numbers in a Sort: ");
    theHeap.displayArray(); // prints the numbers in increasing order
    System.out.print("\nStart Time of Sort: "+time1000start);
    System.out.print("\nEnd Time of Sort: "+time1000end);
    System.out.print("\nTime to Complete Sort: "+timediff1000m+" milliseconds or "+timediff1000s+" seconds.");
    } // end main method
    } // END project :)

    I never miss class....my instructor gave us the assignment of making a heap sort and he told us to use code off the internet as a resource because the only sorting we have done so far is bubble.....this was a research project, for my instructor to see if we can use the internet as an effective resource to put together a program and learn about a differnet type of sorting.....everyone in the class got a different type of sort (merge, quick, insertion, etc...). i have put the program together and customized it to my needs based on my knowledge.....the last thing i am having trouble with is my counting of comparisons and data movements. Can you please help me finish up my program.

  • Alv data upload and delete in database table

    hi .
       i have done data save in date base but not update and delete..writen this code..
    form save_data.
      CALL METHOD cont_editalvgd->check_changed_data.
      IF lt_display EQ it_city.
        MESSAGE s002(00) WITH 'No data changed'.
      ELSE.
        CLEAR: gd_answer.
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            text_question  = 'Save_data?'
          IMPORTING
            answer         = gd_answer
          EXCEPTIONS
            text_not_found = 1
            OTHERS         = 2.
           delete
        IF sy-subrc EQ 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF ( gd_answer = '1' ). " yes
            lt_display = it_city.
         else.
         MESSAGE s001(00) WITH 'Action cancelled by user' .
         endif.
         endif.
        DELETE ADJACENT DUPLICATES FROM it_city.
       update zmg_city1 from it_city.
        MODIFY zmg_city1 FROM TABLE it_city.
    *DELETE  zmg_city1  FROM it_city.
        clear it_city.
        COMMIT WORK.
       else.
         DELETE ADJACENT DUPLICATES FROM it_city.
      IF SY-SUBRC EQ 0.
         DELETE ADJACENT DUPLICATES FROM it_city.
         update zmg_city1 from it_city.
        COMMIT WORK.
      endif.
    *ent rows from it_city
       DELETE ADJACENT DUPLICATES FROM it_city.
       update zmg_city1 from it_city.
    endform.                    "save_data
    not working update and delete ...plz say

    hi .
       i have done data save in date base but not update and delete..writen this code..
    form save_data.
      CALL METHOD cont_editalvgd->check_changed_data.
      IF lt_display EQ it_city.
        MESSAGE s002(00) WITH 'No data changed'.
      ELSE.
        CLEAR: gd_answer.
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            text_question  = 'Save_data?'
          IMPORTING
            answer         = gd_answer
          EXCEPTIONS
            text_not_found = 1
            OTHERS         = 2.
           delete
        IF sy-subrc EQ 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        IF ( gd_answer = '1' ). " yes
            lt_display = it_city.
         else.
         MESSAGE s001(00) WITH 'Action cancelled by user' .
         endif.
         endif.
        DELETE ADJACENT DUPLICATES FROM it_city.
       update zmg_city1 from it_city.
        MODIFY zmg_city1 FROM TABLE it_city.
    *DELETE  zmg_city1  FROM it_city.
        clear it_city.
        COMMIT WORK.
       else.
         DELETE ADJACENT DUPLICATES FROM it_city.
      IF SY-SUBRC EQ 0.
         DELETE ADJACENT DUPLICATES FROM it_city.
         update zmg_city1 from it_city.
        COMMIT WORK.
      endif.
    *ent rows from it_city
       DELETE ADJACENT DUPLICATES FROM it_city.
       update zmg_city1 from it_city.
    endform.                    "save_data
    not working update and delete ...plz say

  • I am trying to delete duplicate photos from events in i=-photo but it deletes the photos entirely from all events including the one I want to keep.  How do I keep the original and delete the duplicates?

    I am trying to delete duplicate photos fron my events in i-photo but it deltes the photo entirely from all events.  How do I keep them in the original events and delte the duplicates without sending them all to the trash?

    Are you referring to Events or Albums?  A photo can exist in one Event only.  However, it can be in multiple albums, books, etc., which uses pointers to the original photo in the Event.  In those cases if you delete the photo from the Event all occurrences of it will be deleted from the library.
    OT

  • Will iTunes select all exact duplicate songs and delete each duplicate?

    I have about 20K exact duplicates and would like to have iTunes select and remove one dulicalte of each song to avoid manually selecting ever other song and removing.  Possible?

    Itunes will not do that.  You can check third party utilties such as Dupin (Duplin?).  I would not trust any utilty to automatically delete duplicates. There's a few tracks I have on albums where they are given the identical name but are not identical. A tool would not tell that.
    iTunes will find duplicates, but then it's up to you to decide if they truly are.  Be careful. Occasionally an item somehow gets listed twice and if you delete the "duplicate" plus file it deletes the orginal too.  I always hand sort duplicates.

  • Regarding SELECT FOR ALL ENTRIES AND DELETE ADJACENT DUPLICATES

    Hi,
    i got few doubts.....
        1) Is it necessary to DELETE ADJACENT DUPLICATES when we perform a SELECT FOR ALL ENTRIES ? because for all entries itself eliminates the duplicate entries?
       2) Wat Sy-subrc returns after a SELECT FOR ALL ENTRIES statement?
       I found some code where these are used
               SORT ITAB[] BY NEWKO[].
              DELETE ADJACENT DUPLICATES FORM ITAB[].
      SELECT buknr
                   kunnr
    FORM KNB1
        into table ITAB_KNB1
      FOR ALL ENTRIES IN ITAB
        where kunnr eq itab-newko.
    Regards.
    Maehsh.

    Hi Mahesh,
    To be more specific, first you should delete "adjacent duplicates" using the sorting key ( here : NEWKO ), if Itab contains other fields.
    SORT ITAB[] BY NEWKO[].
    DELETE ADJACENT DUPLICATES FORM ITAB COMPARING NEWKO.
    You can delete or not the duplicates, but, you must know that if you don't delete them in the Itab, you will retrieve them in the ITAB_KNB1.
    Concerning the return code, it works like for the "SELECT"  ( 0 = entries found / 4 = no entrie found )
    => One more thing, it's better check :
    Check not ITab[] is initial
    because, if the Itab is empty, you'll retrieve all the record of KNB1 !
    Hope this helps,
    Erwan.
    Message was edited by:
            Erwan LE BRUN

  • Is there a way to delete all duplicates, other than one by one?  some free program or does itunes have one to just identify and delete all duplicates in the library?

    How do I delete duplicates in my library as a group, rather than one by one?

    Apple's official advice on duplicates is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls such as lost ratings and playlist membership.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background, this post for detailed instructions, and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed.)
    The most recent version of the script can tidy dead links as long as there is at least one live duplicate to merge stats and playlist membership to and should cope sensibly when the same file has been added via multiple paths.
    tt2

  • In photos: I have tried to select and delete some duplicate pictures that I transferred from my other iPhone 5S on this new iPhone 5S and when I select the only options available is moving the photos or email/text. I cannot put in trash bin

    iPhone 5s photos/video,deleting duplicate photos and video transferred from other iPhone 5s &amp; iPhone 4S
    I have tried selecting photos and videos to throw them in trash bin, but the trash bin doesn't work when pressing and or clicking on it
    I would like to know how to get rid of the unwanted and duplicate pictures that I've transferred from my other iPhones. 
    If someone could please help me, I would greatly appreciate it !!
    Thank you so much,
    Ginger

    How did you transfer the photos from your other iPhone? If you did it by importing them from the old phone to a computer and then used iTunes to sync them back to the new phone, then you would delete them by syncing again using iTunes but this time change the selection of which photos are to be synced. Each time you sync using iTunes, it sets the non-Camera Roll photos on the phone to match the current settings/selection in iTunes.

  • ABAP report to read request details in data-target and delete

    Hi,
    Is there any abap report which I can run in background to read all request details (Request ID, Date) in a data target?
    And any ABAP report which can delete a particular request?
    Regards
    Vikrant

    Hi Vikrant,
    You can check Table RSREQDONE and RSREQICODS for all details about requests.
    About deletion you can try with standard function in InfoPackage when uploading.
    Ciao.
    Riccardo.

  • UPGRADING MY IPHONE - DATA TRANSFER AND DELETION

    i have just upgraded from an iphone 3gs to an iphone 4. i am going to give the 3gs to my sister. i want to delete all data from the 3gs. i have read that all you need to do is first sync to itunes to create a back up and then hit the settings button erase all data. is this all you need to do to erase all data and that no residual data is left.
    with the new iphone 4 - do i just then plug it into itunes and it will retrieve all the data i had on the 3gs?
    thank you.

    Transferring info from a current iPhone to a new iPhone.
    http://support.apple.com/kb/HT2109
    The Erase All Content and Settings option on the iPhone at Setting > General > Reset is a secure erase of all content and settings - a secure erase of everything on the iPhone except for the firmware/OS as if the iPhone has not been used.

  • Unused Master Data Display and Deletation

    Hi all,
    To delete any unused master data we have to goto infoobject and execute delete master data.
    Is there any other way to display or delete master data records which is not used anywhere in BW system?
    Because when we are trying to delete master data it is taking long time and lost of resource. Then after also due to other processes are waiting in the system we have to kill that job after 20 to 24 hours.
    Can anybody please guide me through this?
    Regards,
    Rohan Shah

    Hi Rohan,
    You can delete the data in the tables by the way below.(However this is not the ideal approach)
    1. Go to SE14 -> select 'Tables' from Dictionary objects & give table name (e.g. /BI0/SCOMP_CODE) -> Click Edit -> choose the option "Activate and adjust Database" and select "Delete Data".
    On execution, it will delete the data.
    Hope it helps.
    Rgds,
    VA

  • How do I get Itunes to stop downloading the same TV Show episodes multiple times and delete the duplicates?

    Recently I started buying season passes for TV Shows on ITunes and I have no problem downloading them to begin with but after I download anything else from the ITunes store ITunes will try to download all of the episodes in all of the seasons of every show again. Sometimes I don't catch it before they download so I now have 2 of almost every episode in the season passes I have. If I do catch it and stop the downloads the episodes that didn't get downloaded are there but they are grey .Also it wont let me delete the extras so they are just sitting there taking up space. I have no issue with the individual episodes I buy of other shows it is just the season passes. Actually I checked and it also has a couple of other things in there that I stopped from downloading previously but most of it is the season passes.
    I hope someone can help me.

    Yes, you'll have to individually add each new song that you've downloaded.
    When you add them to iTunes--you're just adding the file path to the location on your computer. When you move the file location, iTunes won't know where to look for it and will give you the infamous "!" symbol. Then you'll have to browse to the new location and tell iTunes where to find it.
    How many new songs do you add at a time? If it's not many, it's probably easiest to just add them one file at a time.
    To find the new songs, the file names should be good clues--they are fairly complete song titles on my computer.
    And, you might want to do this each time you download a new song so you don't forget to add them!

Maybe you are looking for

  • Assigning LOV return Value to multiple text items

    Hi all I have a custom form on which i have 10 text items text item 1,text item 2 ....text item10 I have a table xx_querywith fields text_item,query i have inserted into the xx_query table insert into xx_query(text_item,query) values(text_item1,'sele

  • Calling a method of servlet

    How to call a method of servlets like we do in struts like "get.do?method=getData". I know servlets are called defacult method either dopost or doget are called but can i call any other in the servlet and if yes how can i do that?

  • RMBP freezing / crashing (not chrome related)

    Hi, about 3 weeks ago my rMBP started to freeze randomly and i couldn't find anywhere on the internet nothing related to that, only the chrome / mountain lion conflicts, but... i'm not using google chrome, so why's that? This last freeze I got the lo

  • Final Cut X: Adding serveral speech/voice clips.

    To add recorded sound / voice after the footage was a much better option than using a lapel mic directly via the camera during recording. This is due to reverb and hiss - and traffic. However, because of this there will be multiple sound recordings a

  • ADOBE FORMS LICENSE

    Hi Experts, i have Small queries regarding the Adobe forms license, 1) Do we need separate license for the ADOBE FORMS? because our production box is going live soon for that can we use the same license which we got From the SAP. 2) Do wee need to re