January 1, 4501 Blackberry keeps creating anniversary for all contacts of January 1, 4501

I updated to BB Desktop Software 2.4 for Mac and now when I sync the Blackberry 8300 keeps trying to add anniversary dates of January 1, 4501 for contacts.  I made the mistake the first time of actually letting it sync and spent an hour trying to delete the erroneous anniversary dates.  What gives?

I'm also having the same issue on BlackBerry 9900, but I'm on windows on Desktop Software 7.

Similar Messages

  • Creating sequences for all tables in the database at a time

    Hi ,
    I need to create sequences for all the tables in my database.
    i can create individually ,using toad and sqlplus.
    Can any one give me a code for creating the sequences dynamically at a time for all the tables.
    it is urgent ..
    Regards.

    I need to create sequences for majority of the tables that are having ID column
    which is sequences."The majority" is not the same as all. So you probably want to drive your generation script off the ALL_TAB_COLUMNS view...
    where column_name = 'ID'You need to think about this carefully. You might want different CACHE sizes or different INCREMENT BY clauses for certain tables. You might even (whisper it) want a sequence to be shared by more than one table.
    Code generation is a useful technique, but it is a rare application where one case fits all.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • How can I resize and reposition the Date Created window for All windows?

    When setting view options for a finder window set to list view, I cannot get column resizing or positioning to hold. When making those changes, the option for "All Windows" automatically shifts to "This window only" and it then does not hold.
    How can I resize and reposition the Date Created column for All WIndows?

    Hi Harmz,
    Try dragging this file to the Îesktop & reboot...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist

  • Creating synonys for all table

    i want to create synonyms for all atbles.the synonyn name and table name are same.instead creating one by one synonym i wnat to create all synonyms at a time.
    1)select 'CREATE PUBLIC SYNONYM'||' '||'test'||' '||'for' ||' '||'test' from dual
    2)select OBJECT_NAME from user_objects where OBJECT_TYPE ='TABLE'
    in the first query if we replace with test with 2nd query then we can get the script for that.
    i replaced that biut its not working how to do it

    Here is a generic grant script. If you review it, you will see how it works and can adapt it to your varying needs.
    BEGIN
        FOR x IN ( SELECT owner,
                          object_name,
                          DECODE(object_type, 'TABLE' ,   'select, insert, update, delete',
                                              'SEQUENCE', 'select',
                                              'VIEW',     'select',
                                                          'execute') AS privs,
                          DECODE (owner, 'SCHEMA_1', 'USER_1',
                                         'SCHEMA_2', 'ROLE_A'
                                          ) AS app_user
                     FROM dba_objects
                    WHERE object_type IN ('TABLE',    'PACKAGE', 'PROCEDURE',
                                          'FUNCTION', 'SEQUENCE', 'VIEW')
                      AND owner       IN ('SCHEMA_1', 'SCHEMA_2' ))
        LOOP
          BEGIN
            EXECUTE IMMEDIATE 'grant ' || x.privs       || ' on ' || x.owner ||
                              '.'      || x.object_name || ' to ' || x.app_user   ;
            EXECUTE IMMEDIATE 'create or replace synonym '|| x.app_user||'.'||x.object_name||
                               ' for ' ||x.owner||'.'||x.object_name ;
          EXCEPTION
            WHEN others THEN
              dbms_output.put_line('Bad owner = '||x.owner||';  Bad app_user='||x.app_user||
                                   ';  Bad object_name='||x.object_name);
          END;
        END LOOP;
    END;
    /

  • How to create gpo for all users in all ou?????

    hello,plz help me.i want to create gpo for all users in all ou.but i dont want that gpo to do in domain????

    Can you elaborate what you mean by "but i dont want that gpo to do in domain"?
    In terms of applying it to all users, that's simple enough, you can simply leave the GPO's security filtering with its default setting as "Authenticated Users" which then apply to everyone.
    In terms of it applying to all OUs, you only have two options.
    1) Create the GPO and link it to the root of your domain, so it then applies to the entire domain and all the OUs within it.
    2) Create the GPO, but instead link it to each OU that you want it to apply to. You can apply one GPO to as many OUs as you want, simply right click on the OU and select "Link an Existing GPO...". It's then not applied to the root of the domain, only the
    OUs, but any changes you make to the GPO are applied to all the OUs that you've linked it to (rather than having a separate GPO for each of them).

  • Create schedulers for all existing user jobs

    Hi Forum,
    In my database (Oracle Database 10g Enterprise Edition Release 10.2.0.4.0), I have 7 DB schemas.
    There are total existing 50 jobs (usaer_jobs).
    I want to shift them all to scheduler (user_scheduler_jobs).
    My plan is,
    1.     Create schedulers for all existing user jobs.
    2.     Enable all schedulers.
    3.     Disable all jobs.
    Is there any way / method for such shifting? I am ready to this exercise schema wise at a time.
    How to create scripts for creating schedulers from existing jobs?
    Thank you & regards..

    PROCEDURE CREATE_JOB
    Argument Name               Type               In/Out Default?
    JOB_NAME               VARCHAR2          IN
    SCHEDULE_NAME               VARCHAR2          IN
    JOB_TYPE               VARCHAR2          IN
    JOB_ACTION               VARCHAR2          IN
    NUMBER_OF_ARGUMENTS          BINARY_INTEGER          IN     DEFAULT
    JOB_CLASS               VARCHAR2          IN     DEFAULT
    ENABLED               BOOLEAN           IN     DEFAULT
    AUTO_DROP               BOOLEAN           IN     DEFAULT
    COMMENTS               VARCHAR2          IN     DEFAULT
    CREDENTIAL_NAME          VARCHAR2          IN     DEFAULT
    DESTINATION_NAME          VARCHAR2          IN     DEFAULTdoes not appear to be an available option.

  • Want to take "CREATE script" for all roles existing in DB.

    Hi All,
    I want to take "CREATE script" for all roles existing in DB.
    Please provide me script to generate if you have or suggest any link or doc.
    Oracle 10G

    Use this-
    select 'select dbms_metadata.get_ddl(''ROLE'','''||ROLE||''')||chr(10)||''/'' from dual;'
    from dba_roles
    Please be aware grants will not come in the definition
    If you like the answer then don't forget to give points

  • Creating SYNONYM for all tables who don't have one at once!

    Hello to all,
    I'm trying to create synonyms for every table who's missing one at the moment. I'm trying this code:
    declare
    cursor cur_objects is
    select obj.object_name , obj.owner
    from all_objects obj
    where owner = '&&SCHEMA_OWNER'
    AND NOT EXISTS (SELECT *
    FROM all_synonyms syn
    WHERE obj.object_name = syn.table_name)
    AND obj.object_type = 'TABLE'
    AND obj.object_name LIKE 'CI_%';
    begin
    for rec_objects in cur_objects loop
    begin
    dbms_output.put_line(rec_objects.object_name);
    execute immediate('create public synonym ' || rec_objects.object_name || ' for '
    || rec_objects.owner ||'.'||rec_objects.object_name )
    exception when others then
    null;
    end;
    end loop;
    end;
    I'm getting this error:
    ORA-06550: line 10, column 37:
    PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
    begin function package pragma procedure subtype type use
    <een ID>
    <een scheidingsteken-ID tussen dubbele aanhalingstekens> form
    current cursor
    I'm still pretty new at PL/SQL and can't get it to work. Does anyone got any tips ?
    Thnx already

    Ok now I got this error:
    RA-06550: line 17, column 1:
    PLS-00103: Encountered the symbol "EXCEPTION" when expecting one of the following:
    * & = - + ; < / > at in is mod remainder not rem return
    returning <een exponent (**)> <> or != or ~= >= <= <> and or
    like LIKE2_ LIKE4_ LIKEC_ between into overlaps using ||
    multiset bulk year DAY_ member SUBMULTISET_
    The symbol ";" was substituted for "EXCEPTION" to continue.

  • Creating batch for all materials

    Hi Experts,
    is it possible to create ONE batch number for all Items. It will be used for batch scrapping or something. For example , If we have some pieces from a few materials i will make transfer posting Batch to this common Batch, which I have already created.
    Regards

    Material level:
    The batch number is unique in all plants in connection with the material.
    The same batch number has the same meaning for the material in all plants. One batch number cannot have different specifications in different plants. During stock transfer to another plant, the specification of the batch is known in the destination plant even if the batch is placed into storage in that plant for the first time.
    In other words, it is possible to have a batch SCRAP for any material number.

  • Create hyperlinks for all the URLs in the text... possible?

    Hello everyone,
    I’m starting to learn how to do ePubs from the books I layout and I’ve come up with a very annoying issue. In the footnotes or bibliography, there are often urls in the text. I need to have them linked to the website they refer to in the ePub. I really wish there is some kind of automated way to do that, because if it’s not possible, I hardly see myself doing it manually for a whole book...
    So, well, can any of you guys help me with that? I’m really bad at scripting so I have no idea if it’s possible, but... thanks anyways!
    Annabelle

    If you are using CS5 or CS5.5 (the latter is strongly recommended for all things EPub), "Convert URL to hyperlinks" is a menu command in the Hyperlink palette:
    http://community.adobe.com/help/search.html?q=hyperlink&hl=en_US&lr=en_US&l=indesign_produ ct_adobelr&site=indesign_cs5_all&self=1&filter=0

  • Pending Add request for all contacts when I log into Live Messenger

    Each time I log into Windows Live messenger on my Blackberry Bold I get a request for every contact to allow them to add me as a contact.  They are longtime contacts of mine who have already been accepted.  They can see me regardless of if I accept.  If I accept, all of the requests reappear when I log back in.   I do not get the requests on the pc version.

    I have this problem with 4 specific contacts - every time I log in I'm prompted to confirm/deny the requests! Running latest OS on a Bold and latest Live Messenger app. Any ideas?
    I wouldn't mind too much if it didn't treat the requests as conversations and set the LED flashing at me constantly...
    -SOLVED-
    Log into the Live website at:
    http://home.live.com/
    confirmed the requests from there and all looking good so far!
    Message Edited by mikecupcake on 03-24-2009 06:33 PM

  • Only one ringtone works for all contacts despite them having separate rings

    I have 25 rings (is that too much?)
    And 33 contacts. The majority of them have their own ringtone.
    However, despite me assigning them a ringtone-- only one tone (the one assigned under "Sounds" plays for all of them.
    I didn't have this problem before.

    You said you did not have this problem "Before", before what? What changed?
    33 is no too much, I have 50-60 or so, w/o issue.
    Try Resetting the iPhone
    Reset the iPhone by holding the sleep/wake button at the top right of the device and the home button at the bottom center of the face at the same time. Hold them both until you see the screen go black and the white Apple logo appear. When this happens, you can let go - the iPhone is rebooting.
    I have not seen this issue before, so basic troubleshooting may help.

  • My contact list on my iPod has gone. In iTunes the info section for contacts doesn't show anything  like 'family' - just tick box for all contacts. Any ideas on how to correct this? iPod is 3 yrs old...

    My ipod no longer shows any contacts from my address book. iTunes when syncing in the info section - contacts - only shows the all contacts tick box, not categories such as 'family', 'friends' etc.
    Any thoughts on why this is please?
    Am suspecting icloud as a possible culprit.....
    Thanks

    Well start with these articles and see if that gets you anywhere...
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    http://docs.info.apple.com/article.html?artnum=305136
    iTunes for Windows: iTunes 7 doesn't recognize iPod
    http://docs.info.apple.com/article.html?artnum=304434
    iPod missing in "My Computer" or in iTunes for Windows
    http://docs.info.apple.com/article.html?artnum=61711
    Also you might try forcing the iPod into disk mode first, then connecting it to your computer and see if that makes it show up in iTunes...
    Putting iPod into Disk Mode
    http://docs.info.apple.com/article.html?artnum=93651
    Cheers,
    Patrick

  • ACS 5.3 Dashboard - Any way to create Dashboard for all users?

    I'm at the point of setting up admin access for engineers needing to have insight into the operations and status of our ACS 5.3 systems.
    I'm curious if there's any way to create a Dashboard that can be applied to all admin user accounts? (perhaps a custom role?)
    I've been able to customize the dashboard for my own account to show what is most relevant, but am unable to figure out how to apply this layout and setup to all other users.
    Basically, I have a number of folks that need to see this data, but that I can't exactly count on to setup their own dashboards to show the important details.  If there were some way to build a tab/dashboard/portlet, etc (whatver it may be) and have it apply to all users, that would save me TONS of work so that I don't have to login to each person's account and set things up for them.
    For example, I want to have all users see a tab/dashboard that shows the applet "Live Authentications", but with the protocol already configured to display TACACS vs the default which is RADIUS.
    Any thoughts?
    -Chris

    Chris,
    I see you are looking for read-only access to Dashboard. Currently there is no way to force all Admins to use same Dashboard and all admins will have full control of the Dashboard.
    Regards,
    ~JG
    Do rate helpful posts!

  • How can I have my app create components for all states on startup?

    Hi All,
    I've got an application with 8 different states.  When the user moves from one state to the next for the first time, there's a brief (but perceptible) delay while the Flash Player sets up everything on the next view (state).  I would like to see what the increased load time looked like--it may be preferable to have slightly longer load time in order to get "snappier" performance once inside the app.
    I initially thought I could set creationPolicy to "all" and then everything would get created immediately, when the app first loads.  But that's not working--no change in behavior, and when I inspect objects that on any view besides the first one, they are all null. I have to first change to the state where that component is hosted, and then component is initialized and available.
    I read elsewhere that I could use itemCreationPolicy, but that is not a property on the application object... do I need to apply that somewhere else?
    I'm on Flex 4.0.
      -Josh

    Oops I might have replied to the wrong post in http://forums.adobe.com/thread/767099
    I think you'll want to look at setting the itemCreationPolicy to immediate.
    Check out "Custom Creation and Destruction Policies" section of this spec for more details:
    http://opensource.adobe.com/wiki/display/flexsdk/Enhanced+States+Synta x

Maybe you are looking for

  • How do I get my TV to behave like a monitor?

    I have a MacBook Air 3.2 version. It does not have a thunderbolt display port, just the normal one. I connected the MBA to the computer via the HDMI slot. I want the TV to act as a monitor for my computer. In particular, I want it to play video files

  • Create Purchase Order with reference to Purchase Requisition using BAPI's

    Hello Experts, I need to create a Purchase order with reference to a Purchase Requisition. All the above has to be done by using BAPI's. For creating PR, I am using BAPI_REQUISITION_CREATE. and for PO, I am using BAPI_PO_CREATE. I am not able to use

  • How to create a generated flat from BI and stored in a Path in AL11

    Hi Gurus, i have one scenario which i could not acheive. I have created a DSO´s and Process Chains. All are working as expected. Now i would like by running the process chain to generate a flat file which will be store in a Path in Al11. Could you pl

  • Dreamweaver MX 2004 compatibility with latest versions?

    Dreamweaver MX 2004 compatibility with latest versions? I have templates in a old Dreamweaver MX 2004 and want to update my software. Will I need to go in steps to a version a few years back and then to current?  Or can I go all the way to current? I

  • Apple mails needs ages to send mails

    Hi, I am using apple mail as a pop3 client for my yahoo mails. I was wondering why my mails were received by the recipients hours later or not at all. I made a test and set up a mailaccount at googlemail.com and I found out: a mail from yahoo.de dire