Results 1 to 3 of 3

Thread: Delete all imported leads...

  1. #1
    dgreenhouse is offline Junior Member
    Join Date
    Apr 2011
    Posts
    2

    Default Delete all imported leads...

    I must be blind, but I can't seem to find the function to delete all imported leads. I inadvertently told the import to do a duplicate check, but the csv has already been scrubbed - I wanted dups with the same name.

  2. #2
    dgreenhouse is offline Junior Member
    Join Date
    Apr 2011
    Posts
    2

    Default Re: Delete all imported leads...

    I WAS blind... I caught a cold and I'm not thinking clearly... Sorry for the bother...

  3. #3
    solarfactory's Avatar
    solarfactory is offline Junior Member
    Join Date
    Oct 2007
    Location
    Folsom
    Posts
    3

    Default Re: Batch Delete bad leads using email list ...

    Here's a simple mysql script to search for and delete leads based on a list of emails that are invalid or have bounced:

    1. -- the select statement. Select is on 4 tables for the whole picture --

    SELECT
    ea.email_address, ea.deleted,
    ab.date_created, ab.deleted,
    ld.first_name, ld.last_name, ld.lead_source, ld.deleted,
    sf.date_modified, sf.deleted

    FROM
    email_addresses ea,
    email_addr_bean_rel ab,
    leads ld,
    sugarfeed sf

    WHERE 1
    AND ea.id = ab.email_address_id
    AND ab.bean_id = ld.id
    AND ld.id = sf.related_id

    AND ld.deleted = 0

    AND ea.email_address IN (<insert list of emails here>)



    2. -- the UPDATE statement, System only shows current deleted=1 on 2 tables --

    UPDATE
    email_addresses ea,
    email_addr_bean_rel ab,
    leads ld

    SET
    ab.deleted=1, ld.deleted=1

    WHERE 1
    AND ea.id = ab.email_address_id
    AND ab.bean_id = ld.id
    AND ld.deleted = 0
    AND ea.email_address IN (<insert list of emails here>)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 1
    Last Post: 2010-09-16, 08:09 PM
  2. Web leads imported in my Sugar DB
    By woodrow in forum General Discussion
    Replies: 1
    Last Post: 2008-12-02, 07:34 PM
  3. Replies: 1
    Last Post: 2008-11-04, 03:29 PM
  4. Having to LogOut to see imported leads.
    By gsadmin in forum Help
    Replies: 2
    Last Post: 2006-03-02, 01:32 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •