Help with deleting multiplied contact.

Had to get a replacement phone....when I sync'd my Back up Assistant it multiplied 1 contact over a 1000 times.  From BuA I have deleted them and tried to resync  however they have stayed on my phone and keep showing back up in my BuA on my computer.  Please help I do not want to have to delete each one separately from my phone.

DMnc, I can certainly assist with your contact issue so that you won't need to manually delete each contact. I would suggest deleting all the contacts on your Blackberry first. To do this you would need to connect your Blackberry to your computer and clear the Contact/Address Book database from the phone. These steps will vary depending on whether you have Blackberry Desktop Manager 5.0, 6.0 or a Mac, so here is a link to Blackberry with the instructions.
Another option is to complete reset the device by performing a security wipe. I don't see which Blackberry you have, but for devices with 5.0 software, you would go to Options>Security Options>General Settings>press Menu>Wipe Handheld. For devices with 6.0 software go to Options>Security>Security Wipe>Check emails, contacts, etc. to reset the device.
Verify the duplicates are all gone from the website. Delete from trash. Afterwards, resync device with Backup Assistant so that it will restore only the contacts on the website.
I hope this helps!
  MarquiaF_VZW
Follow us on Twitter @VZWSupport

Similar Messages

  • Can Anyone help with syncing my contacts are getting duplicated and there is a file from my computer and they are not the same it is driving me carazy can anyone help?

    Can Anyone help with syncing my contacts are getting duplicated and there is a file from my computer and they are not the same it is driving me carazy can anyone help?

    Are you in DSL? Do you know if your modem is bridged?
    "Sometimes your knight in shining armor is just a retard in tin foil.."-ARCHANGEL_06

  • Help with deleting junk email

    Can anyone please help with a problem I'm having with icloud email. I have a number (not all) of messages in junk mail and no matter what I do I can't seem to delete them. I delete them, they are gone, but when I come back they are back again but any other messages I might have deleted at the same time are deleted.

    Open System Preferences > iCloud
    Deselect the box next to Mail then reselect it.
    Give iCloud a few minutes to re sync your Mail.

  • Help with html / php contact form

    Hi guys I was hoping to get some help with a contact form on my website, to be honest I havent a clue about php but kind of okay with html thats why the php code is just a copy and paste from some website, just trying to marry it up with the html but getting errors.
    Hopfully one of you can see the problem.
    Error on Submitting:
    Notice: Undefined variable: name in \\nas44ent\Domains\g\gethinhayman.co.uk\user\htdocs\send_form_email.php on line 69
    Notice: Undefined variable: message in \\nas44ent\Domains\g\gethinhayman.co.uk\user\htdocs\send_form_email.php on line 75
    We are very sorry, but there were error(s) found with the form you submitted. These errors appear below.
    The Name you entered does not appear to be valid.
    The Comments you entered do not appear to be valid.
    HTML Code:
    <section id="contact" class="four">
                                                                <div class="container">
                                                                          <header>
                                                                                    <h2>Contact</h2>
                                                                          </header>
                                                                          <form method="post" action="send_form_email.php">
                                                                                    <div class="row half">
                                                                                              <div class="6u"><input type="text" class="text" name="name" placeholder="Name" /></div>
                                                                                              <div class="6u"><input type="text" class="text" name="email" placeholder="Email" /></div>
                                                                                    </div>
                                                                                    <div class="row half">
                                                                                              <div class="12u">
                                                                                                        <textarea name="message" placeholder="Message"></textarea>
                                                                                              </div>
                                                                                    </div>
                                                                                    <div class="row">
                                                                                              <div class="12u">
                                                                                                        <a href="http://www.mywebsite.co.uk/email_form.php" class="button submit">Send Message</a>
                                                                                              </div>
                                                                                    </div>
                                                                          </form>
                                                                </div>
                                                      </section>
    php Code:
    <?php
    if(isset($_POST['email'])) {
        $email_to = "my email address";
        $email_subject = "Mail from Site";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['name']) ||
            !isset($_POST['email']) ||
            !isset($_POST['message'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');      
        $first_name = $_POST['name']; // required
        $email_from = $_POST['email']; // required
        $comments = $_POST['message']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$name)) {
        $error_message .= 'The Name you entered does not appear to be valid.<br />';
      if(strlen($message) < 1) {
        $error_message .= 'The Comments you entered do not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "Name: ".clean_string($name)."\n";;
        $email_message .= "Email: ".clean_string($email)."\n";
        $email_message .= "Message: ".clean_string($message)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers); 
    ?>
    <?php
    ?>

    PHP CODE:  SaveAs send_form_email.php
    <?php
    if(isset($_POST['email'])) {
        // EDIT THE 2 LINES BELOW AS REQUIRED
        $email_to = "[email protected]";
        $email_subject = "Your email subject line";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['name']) ||
            !isset($_POST['email']) ||
            !isset($_POST['message'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');     
        $name = $_POST['name']; // required
        $email_from = $_POST['email']; // required
        $comments = $_POST['message']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$name)) {
        $error_message .= 'The Name you entered does not appear to be valid.<br />';
      if(strlen($message) < 2) {
        $error_message .= 'The message you entered does not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "Name: ".clean_string($name)."\n";
        $email_message .= "Email: ".clean_string($email_from)."\n";
        $email_message .= "Message: ".clean_string($message)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers);
    ?>
    <!-- include your own success html here -->
    Thank you for contacting us. We will be in touch with you very soon.
    <?php
    ?>
    HTML Code -- save as html page.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Contact Form</title>
    </head>
    <body>
    <section id="contact" class="four">
    <div class="container">
    <header>
    <h2>Contact</h2>
    </header>
    <form method="post" action="send_form_email.php">
    <div class="row half"> <div class="6u">
    <input type="text" class="text" name="name" placeholder="Name" />
    </div>
    <div class="6u">
    <input type="text" class="text" name="email" placeholder="Email" />
    </div>
    </div>
    <div class="row half"> <div class="12u">
    <textarea name="message" placeholder="Message"></textarea>
    </div>
    </div>
    <div class="row">
    <div class="12u">
    <input type="submit" name="submit" value="Send">
    </div>
    </div>
    </form>
    </div>
    </section>
    </body>
    </html>
    Upload both to your Apache server to test.
    EDIT:  changed typo on Submit button -- valuse to value.
    Nancy O.

  • HT1338 Guys I need some help with deleting junk mail/bulk mail...I keep getting this air message that says THE IMAP COMMAND "UID COPY" (TO DELETED MESSAGES) FAILED FOR THE MAILBOX "BULK MAIL" WITH SERVER ERROR: UID COPY SERVER ERROR- PLEASE TRY AGAIN LATE

    I need help in deleting my junk mail/bulk mail...when I dump junk mail and bulk mail into the trash it not allowing me to delete all mail only some. HELP!!

    What program are you using?  And what version?

  • Please Help with Deleting and Putting in Music

    Hi. I have a Nokia5300 Express Music. I want to add music on it but i don't know how. I have windows media player the PC suite thing and everything. But I don't know how to delete music or import music please help. This is very different from the ways i do it from the Ipod ...
    HELP HELP HELP

    wait wait guys please help me delete my music i really want to delete ALL my music and put in NEW music i hate the windows media player iuno how to unsync it and delete it T_T

  • Help with Delete Contact WS

    Hi All
    I'm trying to delete Contacts using "ContactWS_ContactDelete_Input" web service. Even though a valid contactId is passed, getting an error "<siebelf:errormsg>No rows retrieved corresponding to the business component &apos;Contact&apos;(SBL-EAI-04378)</siebelf:errormsg>
    Appreciate any help.
    Thanks
    user566811

    By any chance is the Private Flag set for this particular contact?
    This is the same issue I found trying to update activities. If the private flag was set, I could not update it via the Web Service or see it in the UI .. however, I could see it in a report !!

  • Help with deleting itunes and stuff

    Hi all, thanks in advance for any help. I am a real novice with all this stuff.
    I have inherited my husband's old MacBookPro.  May I ask for some advice?
    How can I delete his iTunes and iCal so I can use these programs with my info? He will not sync with this computer again, but I don't want to do anything which will mess up his desktop or laptop. At present, the MacBook is set up to sync data wirelessly with the desktop - how can I stop this too?
    Many thanks for any advice.

    I would consider erasing the HDD and reinstalling the the OS.  This would result in a MBP with no user data on it (no iTunes and iCal information) and there would be no sync to any other computer.  In other words, the MBP would be in an 'as new' condition in terms of user data.
    If you have a 2010 MBP or earlier you will need to use the original installation disks.  If you have a newer model, you will have to use the Recover Disk Assistant v1.0 (for Lion or Mountain Lion).  In both instances you can use Disk Utility to erase the HDD.
    Ciao.

  • Help with deleting files

    OK, so all of a sudden today my Mac has been acting weird with one thing. I am a photographer and have been using the standard viewing to edit down my folders. For examples, I have a folder with Baby A's photos. I click on the folder and in the list view format, use the "eye" preview button and the arrow keys to preview the photos before editing them in Photoshop. As I look at them, I will on occasion delete some of the photos using the Command+Delete keys on the keyboard. In the past, these photos would disappear, I'd hear the crunching paper sound, and they would go to the trash bin. Then, the next photo in the list would pop up on the screen. Today, out of nowhere, it started jumping back to the top and showing an image of the folder itself after I deleted a photo. So, I had to scroll back down within the folder to find my place again. Everytime I delete a photo, this keeps happening. I'm at my wits end. I don't know why it started doing that! And, I really would love to know how to fix it. Any suggestions or help would be greatly, greatly appreciated. This jumping back to the top is making a simple thing a 10-year process.

    I can't tell if you have done any troubleshooting. The first thing to try is restartng the computer, as long as you're at that do a SMC Reset. If  that doesn't help restart in Safe Mode, it's possible one or more caches have become corrupt.
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    PRAM RESET
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • Help with delete duplicate locked files

    I'm kinda new at this so forgive me if I'm a bonehead.
    I made a contribute site, then wanted to disable check in
    check out. All the files have duplicate locked files remaining on
    server and they take eons to ftp. Is there an easy way to delete
    them all? I delete on server and they mysteriously are still there
    the next time I reupload files...I first thought it was a DWMX ftp
    problem, but same deal with GoLive.
    Yipes! Any help is appreciated.

    Hi,
    I have very limited experience with Automator, but my guess is it's not up to the task. I'm trying to do something similar in iTunes but the actions under Finder don't seem to work properly. ( If you select 'Find Finder Items' and set the Whose field to Extension and Is Equal To and use the parameter 'mp3' it seems to work as expected. If you set the Whose field to Name and Ends with it only returns directories.) I'm thinking I need to look into actual scripting. Anyone have thoughts on this?
    Mike

  • Help with deleting Bootcamp

    hello, i recently got two viruses on my Windows XP side. I deleted the one, but i just got the second one today. I rarely use it so i just was going to delete it because it seems to be infecting every file on there. The whole side is a wreck. So, i know its possible to delete the partitioned hard drive and recover the space for my mac side, but im worried about the virus. Its called Antimalware Doctor. I was told that if i delete the windows side that the files will still be there, just very hard to access. But if the files are there will my mac side be at risk? I know its hard to write viruses for mac. i have no problem just deleting the windows side but if someone could help me figure out what to do. If i delete the hard drive, will it delete the files that are infected with the virus as well? Or will they possibly cause harm to my mac. Thanks!!!

    Hi mondo,
    you don't have to worry about Virus "crossing" from PC side to MacOS.
    Just remove the Windows partition, but you must use the BootCamp application to do this (in other words DON'T use the built-in Disk Utility app. or any 3rd party application for that matter).
    After removing the Windows partition just restart your computer & you should have just one happy Mac OS partition on your hard drive.

  • Help with syncing yahoo contacts

    currently sync my contacts with outlook but am soon to change it to sync with yahoo!
    When I sync them for the 1st time will all the info on the iphone be transferred to yahoo or the other away around??
    I know this sounds daft but my contact list on yahoo isn't upto date and don't particularly want to loose my up to date data.
    All advice greatfully received!

    yes it is, but once you have it set up it will sync with your Address Book at the click of a button! I have only discovered this in the past couple of weeks and for the first time ever I can sync my contacts at home with Yahoo and also sync all my contacts on my windows work pc with Yahoo. In effect Yahoo Contacts is now the database for all of my contacts and will sync effortlessly with my PC, my Mac, and consequently my iPhone!!
    See the Help section on the Yahoo Mail webpage for more info.

  • Help with deleted sales orders

    Hi everyone,
    I have an issue with sales order deletion.  We load BW nightly.  If a sales order is created one day and deleted the next day we get a record for a positive qty and a record for a negative qty, this is ok.  The problem is when the record is created and deleted the same day, this creates a negative qty amount that does not have a positive amount to cancel out and in turn throws our sales qty's off.  Can anyone help?
    Thank you,
    Aaron Blasi

    Hi AVR,
    Thanks for the reply.  What I am trying to figure out is why the extractor sends only the negative amount record when the sales order is created and deleted the same day.  What happened to the positive amount record?  does anyone know why or has anyone come accross this issue.
    Thanks,
    Aaron

  • Help with a simple contact form.

    Hi there..
    I am having trouble making a contact form with a servlet. I have a Fedora Core Linux Box running ddns..
    My internet account is sympatico.. which a username and password is required to send out with smtp..
    I need help creating a servlet and I have java mail also..
    This is what I have so far...
    I have more info below
    <form class="formContactus1" name="formContactus1" method="post" action="/SendMail" onsubmit="validerForm();">
                                                      <table id="tblContactus">
                                                           <tbody><tr>
                                                                <td class="tdLeft">
                                                                     <label><fmt:message key="Form_firstname" /></label>
                                                                </td>
                                                                <td class="tdRight">
                                                                     <input class="contactTextName" id="last_name" name="last_name" maxlength="100" type="text">
                                                                </td>
                                                           </tr>
                                                           <tr>
                                                           <td class="tdLeft">
                                                                <label><fmt:message key="Form_lastname" /></label>
                                                           </td>
                                                           <td class="tdRight">
                                                                <input class="contactTextName" id="first_name" name="first_name" maxlength="75" type="text">
                                                           </td>
                                                      </tr>
                                                      <tr>
                                                           <td class="tdLeft">
                                                                <label><fmt:message key="Form_email" /></label>
                                                           </td>
                                                           <td class="tdRight">
                                                                <input class="contactTextName" id="email" name="email" maxlength="75" type="text">
                                                           </td>
                                                      </tr>
                                                           <tr>
                                                                <td class="tdLeft" valign="top">
                                                                     <label><fmt:message key="Form_message" /></label>
                                                                </td>
                                                                <td>
                                                                     <textarea class="contactTextMessage" id="message" cols="" rows="" name="message"></textarea>
                                                                </td>
                                                           </tr>
                                                      </tbody></table>
                                                      <!-- This is the anti-spam validation images... -->
                                                      <table id="tblCaptcha">
                                                           <tbody><tr>
                                                                <td class="right" id="tdImgCaptcha"><img style="height: 35px;" src="/captcha/img"></td>
                                                                <td class="right" id="tdInputCaptcha"><input name="captchaAnswer" type="text"></td>
                                                           </tr>
                                                           <tr>
                                                                <td class="right" colspan="2" valign="bottom">
                                                                     <input id="contactSubmit" name="send" value="<fmt:message key="Form_submit" />" type="submit">
                                                                </td>
                                                           </tr>
                                                      </tbody></table>
                                                 </form>

    You forgot to tell the details about the trouble. Please elaborate. What happens? What happens not?
    Please also read this how to ask questions the smart way: [http://www.catb.org/~esr/faqs/smart-questions.html].

  • Help with delete query

    Hi all,
    I have two tables (Table1 and Table2). Both have varchar fields A and B. I would like to delete from table 2 where Table1.A = Table2.A and Table1.B = Table2.B
    Can someone please help me with the syntax?
    Thank you
    Edited by: geeter on Jun 9, 2011 12:06 PM

    geeter wrote:
    Hi all,
    I have two tables (Table1 and Table2). Both have varchar fields A and B.
    I would like to delete from table B where Table1.A = Table2.A and Table1.B = Table2.B HUH?
    delete from table B
    from where did this table appear?
    post DDL for tables involved in your question

Maybe you are looking for

  • DBMS_OUTPUT -- please help!

    Hi, i'm posting this message because i'm desparate enough to do so and it is my last resort before i give up. Any suggestions are very much appreciated. b.t.w. i have read T.F.M. I'm trying to display a couple of lines using the DBMS_OUTPUT.PUT_LINE

  • First impressions: 24-inch iMac

    I've been completely happy with my 20" 2.0 GHz iMac G5, but a 24" screen is hard to resist. So I picked one up at the local Apple Store yesterday. First off, let me comment on the display. It's not perfect. I definitely have some darkness in the corn

  • Bug in Apex 4.1 tabular form with rowid as PK

    Hi I think this is a bug in Apex 4.1. I tested it on apex.oracle.com. This is the simple scenario. Create a simple table: create table dropme (code number, description varchar2(200)); Now use the wizard to create a tabular form. Select Allowed Operat

  • How to highlight the repeated records in a BO crystal report?

    Hi , How to highlight the repeated records in a BO crystal report? we want to highlight the rows for which account number is same. thanks sriram

  • Why can I not activate chat/text by clicking "Available?"

    I am not able to initiate Chat/Text by clicking "available." At&T and Yahoo believe it has something to do with mal-functioning flash drive. I reloaded lastest Adobe flash drive but problem persists. Any thoughts?? I use Windows XP 32 bit with Intern