Duplicate email list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • penmai.com
    Member
    • Feb 2010
    • 72
    • 4.0.0

    Duplicate email list

    Hi we have few members having multiple account with single email id.

    how can i get the member list and the email ids? could anyone help. Previously i saw one sql script but don't know where it is.

    thank you
    www.penmai.com
  • Trevor Hannant
    vBulletin Support
    • Aug 2002
    • 24358
    • 5.7.X

    #2
    To get a full list of usernames, user ids and email addresses in a single list, you'll need to get that from running a query against your database in something like phpMyAdmin. The following should get this for you:

    Code:
    SELECT userid, username, email FROM (PREFIX)user
    ORDER BY email
    If your tables have a prefix, change (PREFIX) to this - if not, remove that.

    This will give you a list of your users ordered by email address which you can then use to easily see duplicates. You should also be able to export this to a CSV or other file if you wish to retain this.
    Vote for:

    - Admin Settable Paid Subscription Reminder Timeframe (vB6)
    - Add Admin ability to auto-subscribe users to specific channel(s) (vB6)

    Comment

    widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
    Working...