Problem with sequences after import

We recently imported some table data from QA to DEV and now the DEV database has issues with sequences errors. How can I resolve the problem with sequences since we have constraint violation errors as a result of the table sequences being out of sync after the import of several schema tables.

We run a script like the following to get the sequences as close as possible after importing from PROD to DEV:
set serveroutput on;
DECLARE
     CURSOR CUR IS
          SELECT      otherdb_seq.sequence_owner AS owner,
                    otherdb_seq.sequence_name AS seq_nm,
                    TO_CHAR(otherdb_seq.last_number) AS start_nr
          FROM           dba_sequences currdb_seq,
                    dba_sequences@prod otherdb_seq
     WHERE      currdb_seq.sequence_owner IN ('~schemaname~') AND
                    currdb_seq.sequence_owner = otherdb_seq.sequence_owner AND
               currdb_seq.SEQUENCE_NAME = otherdb_seq.sequence_name
          ORDER BY      1, 2;
     sql_string VARCHAR2(500);
BEGIN
     FOR REC IN CUR
     LOOP
     sql_string := 'DROP SEQUENCE '||REC.owner||'.'||REC.seq_nm;
          DBMS_OUTPUT.PUT_LINE(sql_string||';');
          EXECUTE IMMEDIATE sql_string;
          sql_string := 'CREATE SEQUENCE '||REC.owner||'.'||REC.seq_nm;
          sql_string := sql_string ||' START WITH '||REC.start_nr;
          sql_string := sql_string ||' MAXVALUE 999999999999999999999999999';
          sql_string := sql_string ||' MINVALUE '||REC.start_nr;
          sql_string := sql_string ||' NOCYCLE NOCACHE ORDER';
          DBMS_OUTPUT.PUT_LINE(sql_string||';');
          EXECUTE IMMEDIATE sql_string;
          sql_string := 'DROP PUBLIC SYNONYM '||REC.seq_nm;
          DBMS_OUTPUT.PUT_LINE(sql_string||';');
          EXECUTE IMMEDIATE sql_string;
          sql_string := 'CREATE PUBLIC SYNONYM '||REC.seq_nm||' FOR '||REC.owner||'.'||REC.seq_nm;
          DBMS_OUTPUT.PUT_LINE(sql_string||';');
          EXECUTE IMMEDIATE sql_string;
          sql_string := 'GRANT SELECT ON '||REC.owner||'.'||REC.seq_nm||' TO PUBLIC';
          DBMS_OUTPUT.PUT_LINE(sql_string||';');
          EXECUTE IMMEDIATE sql_string;
     END LOOP;
END;

Similar Messages

  • Problems with Sequence Operator in OWB

    Hi everybody,
    i want to use a sequence in my mapping. Now i have two problems.
    The first problem is the following. When i want to import my sequence (exists on my DB) i can select the sequence in the Selection Window, but when i click on Import i didn't see it in the Design Center, also there is no window which tells me that i have successfully imported the sequence.
    The second problem is, when i drag the Sequence Operator into my Mapping i shows the Selection Window where i have to select the poject and object to bind the operator. But i can't select any object.
    Can anyone help me with my problems and tell me how i can use a Sequence and the Sequence Operator in my Mapping
    Many thanks in advance.
    Greetings

    Hi everyone!
    I'm having a repeated problem with sequences in OWB: I'm filling a TIME table with 1096 rows. Now matter how and when I create the sequence it always starts with 2 instead of 1. Moreover, the last value of the sequence is 1101, when it was supposed to be 1097 or 1098....
    I did achieve the right ouput sometimes, but I must be doing something wrong. Here are the several ways I've tried in OWB:
    1) I've created all the sequences by sql code, in SQL DEVELOPER or PLUS*, and then imported to OWB. Because of being imported, I didn't have to deploy each sequence. Then, I've connected (by drag and drop to the canvas mapping) the sequence I wanted with NEXTVAL (as I always do) attached do TIME_ID of table TIME;
    2) I've dropped and created, several times(as before), the sequences and never had problems..until now. I've also experimented creating, by scratch, the sequences just in OWB and then deploy them in Control Center. After this, deployed the mapping and executed, just like in 1).
    So, the difference lies on how I create the sequences and what are the correct steps to create, deploy (if needed), deploy the map and execute the map.
    This is insain and I really need this to work. I've tried so many ways....
    Could someone PLEASE help me with this? Any thoughts?

  • Problem with Java after Software Update to 10.5.7

    Hi,
    I am facing problem with Java after having run Software upgrades.
    Here is the whole story. I recently moved to iMac 10.5.6 from PowerPc 10.4. On this new machine I was having problem running a 3rd party application, which requires JVM. As this application worked well on Tiger, I decided to upgrade JVM on my iMAC using Software Upgrade(was I insane!!). As I like my systems to be updated (as with linux on my personal machine) I clicked "install all". As a result I have the following upgrades run on my machine:
    2009-05-20 13:12:01 +0200: Installed "Mac OS X Update Combined" (10.5.7)
    2009-05-20 13:12:10 +0200: Installed "Remote Desktop Client Update" (3.2.2)
    2009-05-20 13:12:26 +0200: Installed "Java For Mac OS X 10.5 Update 2" (1.0)
    2009-05-20 13:58:36 +0200: Installed "Java for Mac OS X 10.5 Update 3" (1.0)
    2009-05-20 13:58:44 +0200: Installed "AirPort Utility Software Update 2009-001" (5.4.1)
    2009-05-20 13:59:07 +0200: Installed "QuickTime" (7.6)
    2009-05-20 13:59:22 +0200: Installed "iPhoto Update" (7.1.5)
    2009-05-20 13:59:28 +0200: Installed "iLife Support" (9.0.2)
    2009-05-20 13:59:38 +0200: Installed "iDVD Update" (7.0.3)
    2009-05-20 13:59:58 +0200: Installed "iTunes" (8.1.1)
    But now, simply running $java on the prompt hangs, i.e. it takes no action.
    $ which java
    /usr/bin/java
    $ ls -ltr /usr/bin/java
    May 20 15:09 /usr/bin/java -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java
    $java (no response)
    Here is the output of $ top
    PID COMMAND %CPU TIME #TH #PRTS #MREGS RPRVT RSHRD RSIZE VSIZE
    703 java 98.8% 0:38.54 3 110 72 480K 184K 1964K 40M
    Any clues?
    Details of JavaVM on my machine
    $ pwd
    /System/Library/Frameworks/JavaVM.framework/Versions
    $ ls -ltr
    total 56
    drwxr-xr-x 3 root wheel 102 Dec 2 2007 1.3.1
    lrwxr-xr-x 1 root wheel 3 Aug 31 2008 1.4.1 -> 1.4
    drwxr-xr-x 8 root wheel 272 Aug 31 2008 1.4.2
    drwxr-xr-x 8 root wheel 272 Aug 31 2008 1.5.0
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.3 -> 1.3.1
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.4 -> 1.4.2
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.5 -> 1.5.0
    drwxr-xr-x 8 root wheel 272 May 20 13:12 1.6.0
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.6 -> 1.6.0
    drwxr-xr-x 8 root wheel 272 May 20 13:12 A
    lrwxr-xr-x 1 root wheel 1 May 20 14:57 Current -> A
    lrwxr-xr-x 1 root wheel 3 May 20 14:59 CurrentJDK -> 1.5
    Any suggestions? Is there a cleaner approach to uninstall Java on Mac then a simpl "move to thrash"!
    cheers

    Hi,
    I am facing problem with Java after having run Software upgrades.
    Here is the whole story. I recently moved to iMac 10.5.6 from PowerPc 10.4. On this new machine I was having problem running a 3rd party application, which requires JVM. As this application worked well on Tiger, I decided to upgrade JVM on my iMAC using Software Upgrade(was I insane!!). As I like my systems to be updated (as with linux on my personal machine) I clicked "install all". As a result I have the following upgrades run on my machine:
    2009-05-20 13:12:01 +0200: Installed "Mac OS X Update Combined" (10.5.7)
    2009-05-20 13:12:10 +0200: Installed "Remote Desktop Client Update" (3.2.2)
    2009-05-20 13:12:26 +0200: Installed "Java For Mac OS X 10.5 Update 2" (1.0)
    2009-05-20 13:58:36 +0200: Installed "Java for Mac OS X 10.5 Update 3" (1.0)
    2009-05-20 13:58:44 +0200: Installed "AirPort Utility Software Update 2009-001" (5.4.1)
    2009-05-20 13:59:07 +0200: Installed "QuickTime" (7.6)
    2009-05-20 13:59:22 +0200: Installed "iPhoto Update" (7.1.5)
    2009-05-20 13:59:28 +0200: Installed "iLife Support" (9.0.2)
    2009-05-20 13:59:38 +0200: Installed "iDVD Update" (7.0.3)
    2009-05-20 13:59:58 +0200: Installed "iTunes" (8.1.1)
    But now, simply running $java on the prompt hangs, i.e. it takes no action.
    $ which java
    /usr/bin/java
    $ ls -ltr /usr/bin/java
    May 20 15:09 /usr/bin/java -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java
    $java (no response)
    Here is the output of $ top
    PID COMMAND %CPU TIME #TH #PRTS #MREGS RPRVT RSHRD RSIZE VSIZE
    703 java 98.8% 0:38.54 3 110 72 480K 184K 1964K 40M
    Any clues?
    Details of JavaVM on my machine
    $ pwd
    /System/Library/Frameworks/JavaVM.framework/Versions
    $ ls -ltr
    total 56
    drwxr-xr-x 3 root wheel 102 Dec 2 2007 1.3.1
    lrwxr-xr-x 1 root wheel 3 Aug 31 2008 1.4.1 -> 1.4
    drwxr-xr-x 8 root wheel 272 Aug 31 2008 1.4.2
    drwxr-xr-x 8 root wheel 272 Aug 31 2008 1.5.0
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.3 -> 1.3.1
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.4 -> 1.4.2
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.5 -> 1.5.0
    drwxr-xr-x 8 root wheel 272 May 20 13:12 1.6.0
    lrwxr-xr-x 1 root wheel 5 May 20 13:12 1.6 -> 1.6.0
    drwxr-xr-x 8 root wheel 272 May 20 13:12 A
    lrwxr-xr-x 1 root wheel 1 May 20 14:57 Current -> A
    lrwxr-xr-x 1 root wheel 3 May 20 14:59 CurrentJDK -> 1.5
    Any suggestions? Is there a cleaner approach to uninstall Java on Mac then a simpl "move to thrash"!
    cheers

  • Problem with Java after System Upgrade to 10.5.7

    Hi,
    I am facing problem with Java after having run Software upgrades.
    Here is the whole story. I recently moved to iMac 10.5.6 from PowerPc 10.4. On this new machine I was having problem running a 3rd party application, which requires JVM. As this application worked well on Tiger, I decided to upgrade JVM on my iMAC using Software Upgrade(was I insane!!). As I like my systems to be updated (as with linux on my personal machine) I clicked "install all". As a result I have the following upgrades run on my machine:
    2009-05-20 13:12:01 +0200: Installed "Mac OS X Update Combined" (10.5.7)
    2009-05-20 13:12:10 +0200: Installed "Remote Desktop Client Update" (3.2.2)
    2009-05-20 13:12:26 +0200: Installed "Java For Mac OS X 10.5 Update 2" (1.0)
    2009-05-20 13:58:36 +0200: Installed "Java for Mac OS X 10.5 Update 3" (1.0)
    2009-05-20 13:58:44 +0200: Installed "AirPort Utility Software Update 2009-001" (5.4.1)
    2009-05-20 13:59:07 +0200: Installed "QuickTime" (7.6)
    2009-05-20 13:59:22 +0200: Installed "iPhoto Update" (7.1.5)
    2009-05-20 13:59:28 +0200: Installed "iLife Support" (9.0.2)
    2009-05-20 13:59:38 +0200: Installed "iDVD Update" (7.0.3)
    2009-05-20 13:59:58 +0200: Installed "iTunes" (8.1.1)
    But now, simply running $ java on the prompt hangs, i.e. it takes no action.
    $ which java
    /usr/bin/java
    $ ls -ltr /usr/bin/java
    May 20 15:09 /usr/bin/java -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java
    $java (no response)
    Here is the output of $ top
    PID COMMAND %CPU TIME #TH #PRTS #MREGS RPRVT RSHRD RSIZE VSIZE
    703 java 98.8% 0:38.54 3 110 72 480K 184K 1964K 40M
    Any clues?
    cheers

    Hi man,
    In the wake of this java problem I resorted to keep working on my old machine, and today in my spare time I tried to fix this new machine.
    So I execute $java on prompt, and then try to check the files it has opened, using lsof -p pid
    I see it referring to
    /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java
    isn't this usually the JAVA_HOME
    However, executing $/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/bin/java
    hangs!!
    but
    $/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin/java
    works!!
    $ pwd
    /System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin
    $ ./java -version
    java version "1.6.0_07"
    Java(TM) SE Runtime Environment (build 1.6.0_07-b06-153)
    Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_07-b06-57, mixed mode)
    So, I changed the links as follows
    borgraf:Versions raveesh$ l
    total 72
    drwxr-xr-x 3 root wheel 102 Mar 6 2008 1.3.1
    lrwxr-xr-x 1 root wheel 3 May 21 19:42 1.4.1 -> 1.4
    drwxr-xr-x 8 root wheel 272 May 21 19:42 1.6.0
    lrwxr-xr-x 1 root wheel 3 May 21 19:44 OldCurrentJDK -> 1.5
    lrwxr-xr-x 1 root wheel 5 May 21 19:44 1.4 -> 1.4.2
    lrwxr-xr-x 1 root wheel 5 May 21 19:44 1.3 -> 1.3.1
    lrwxr-xr-x 1 root wheel 5 May 21 19:44 1.5 -> 1.5.0
    drwxr-xr-x 8 root wheel 272 May 21 19:44 1.4.2
    drwxr-xr-x 8 root wheel 272 May 21 19:44 1.5.0
    lrwxr-xr-x 1 root wheel 5 May 21 19:44 1.6 -> 1.6.0
    lrwxr-xr-x 1 root wheel 1 May 21 19:44 OldCurrent -> A
    drwxr-xr-x 8 root wheel 272 May 21 19:44 A
    lrwxr-xr-x 1 root wheel 3 Jun 4 17:14 CurrentJDK -> 1.6
    lrwxr-xr-x 1 root wheel 3 Jun 4 17:21 Current -> 1.6
    Linking my Current and CurrentJDK to 1.6 and it works!
    However, shall that be the reason!
    what is in your /Versions/Current/
    I got the following
    $ ls /System/Library/Frameworks/JavaVM.framework/Versions/Current
    CodeResources Frameworks JavaVM
    Commands Headers Resources
    There is no /Home in here, which is usually the case for /1.5 or /1.6
    Anyways, things seems to work for the moment. Lets see if I get problem with using Java.
    thanks

  • I am having problems with mail after upgrading to mountain lion. Is there a way to go back to lion?

    I am having problems with mail after upgrading to mountain lion. Is there a way to go back to lion?

    It would always be easier to fix the Mail problems.

  • Problems with Mail after upgrading to 10.9.1

    I am running into problems with Mail after installing 10.9.1. I had NO problems with Mail prior to this update.
    Problems I have encountered so far are:
    - I don't receive some e-mails on my Gmail account.
    - I have sent e-mails that supposedly got "sent" but do not show up in my Sent box both on mail and on web Gmail. My Outbox is empty also.
    Has anyone encountered the same problems and found a solution?
    Thanks in advance!

    Yes Paul I have, but no solution. I cannot send email. My ISP uses a smtp mail server for sending and It will not log in. Have had ISP on phone and checked all settings. Can only put it down to Mavericks.
    It worked OK for a week after upgrading then stopped. So now having to use web mail to send email.
    Strange thing is I receive mail OK, just cant send.

  • HT1589 problems with itunes after updating..can't locate some of my songs..some have an exclamation point beside them how do i get these songs back in my itunes

    I'm having problems with itunes after updating. I've lost all my playlists,,finally played around with it and got the songs back but some have an exclamation point beside them and can't be located. they are songs i've purchased. I'm not very computer literate so this is a major problem. I have spent hours with this. I just want all my songs to play even though I'm not happy that I have to recreate my playlists. It would be so much easier if I knew and understood how to correct this. Has anyone else had this problem and if so..is there an easy way to correct it?

    Not sure how this is an ipod touch question.
    Perhaps you should post in the itunes forum.

  • I have problems with activation, after delete mi Iphone from Icloud.

    I have problems with activation, after delete mi Iphone from Icloud.

    Hello Sikiz 21,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Best of luck,
    Mario

  • I am having problem with iMessage after updating my 5s to iOS 8.0.2

    I am having problem with iMessage after updating my 5s to iOS 8.0.2. I cannot send any text by iMessage anymore. My friend tries to text me and it did not go through

    Hello Huyen,
    Thank you for using Apple Support Communities.
    You can use the following article to troubleshoot Messages:
    iOS: Troubleshooting Messages
    Regards,
    Jeff D. 

  • HT1933 I am facing problems with mails after update iPhone 4S/io7. I have configured yahoo mail in iPhone 4S. When I click on refresh, it shows new mail downloaded but when I go inside inbox the new mail don't show up. Can anyone help me with this iOS 7 i

    I am facing problems with mails after update iPhone 4S/io7. I have configured yahoo mail in iPhone 4S. When I click on refresh, it shows new mail downloaded but when I go inside inbox the new mail don't show up. Can anyone help me with this iOS 7 issue ?

    Hi were you able to resolve yours?
    I was very worried losing all my medical stuff on my iPad Air 2, plus i have nothing to use for the next day! So i have to try all the possible things i read on the internet!! And this worked on my part (Thank God, and thank you Google)
    Perform a hard reboot
    Hold down the Home button and Power button on your iPhone or iPad and keep holding them until you see the Apple logo. Once you do, you can let go. When your device boots back up, go ahead and check to see if the apps have started re-downloading. If they still appear to be stuck, continue on.

  • Problem with sound when import from Premiere into After Effects

    Hi!
    I imported a sequence from a Premiere Pro project using File -> Import -> Adobe Premiere Project...
    The video in the sequence showed up in the After Effects project as a composition.  However, the composition did not include the sound from the sequence!  Is there a way to keep the sound from the sequence upon import into After Effects?
    Thanks

    i`m sorry about the screenshot size, but i could only upload pics with 605 px width.
    Nevertheless it seems that you saved my day. looks like it was all about the scale to framesize thing.
    thank you so much!!!!

  • Problems with artifacting when importing clip from After Effects...

    I have spent nearly 100 hours creating some effects in After effects within the last few weeks but have noticed some terrible verticle artifacting when I import them into FCP. I have tried exporting using Uncompressed quicktime codec as well as DVCPro/DV and the "none" option with the best quality settings(all using the same FPS) and it still creates these verticle lines. I have also tried not only using the settings for anamorphic(720x480) but exporting with naitive 16x9 (which I believe is 856x480)and still get these lines.
    I need help please!! I am stumped on this one. Even when viewing the files outside of FCP using the Quicktime player the footage looks perfect.
    I would appreciate any help!
    Thanks,
    Andrew

    My FCP settings are 24p advanced pulldown removed using DVCpro/DV 16x9.
    I have exported using the same settings with the after effects codec to a .mov and still get the problem.
    I am not viewing on an external monitor, only on the canvas. Could this just be a display issue?
    Thanks
    Andrew

  • Problems with masks after sending sequence back from SpeedGrade to Premiere (CC)

    Hello,
    I'm colour grading a clip in SpeedGrade  CC using the new direct link function. For the colour grading I used  different layers and also masks. Once I'm done I sent my sequence back  to Premiere Pro CC.
    I see, Premiere shows me exactly the colour correction I did in SpeedGrade except of one thing:
    The places where I used masks in SpeedGrade to light them for instance a bit up are now full of pixeled lines...
    I thought it's just a problem with the Preview, so I exported it. The pixeled lines stayed.
    Again: In SpeedGrade is everything fine, but when I'm sending the sequence back to Premiere there are these pixels.
    It's  really irritating because one day before it worked very good without  any problems and I was practically doing the same as now.
    Please help me, if you can! Thank You!

    Thank you but my masks are not animated. Premiere just can't reflect the colour correction I did for these masks. Here's an example...on the right edge I created a mask in SpeedGrade. And that's what Premiere is showing me when I send the sequence back from SpeedGrade to it:
    Does anybody know the solution?

  • Problems with mail after every shutdown

    I posted a few days ago when mail kept crashing following the security update (probably due to me not closing all applications before installing).
    I managed to get mail working again by resetting the junk mail filter.
    However, since then I have had problems with mail every time I restart my computer. Every morning, it mail crashes when I open it. I have fixed it a few times by quickly deleting select messages from my inbox before it crashes, but today I can't even do that. Resetting junk mail filter doesn't seem to work now. It's weird because once I get mail open I can close/open with no problem. I only have problems again after I have shutdown the computer.
    I verified the start up disk and permissions - there were no problems there - and I also checked for corrupted fonts (I have been reading all the suggestions posted on this site to people having similar problems).
    The console log reads:
    Jun 1 09:40:34 su-pwbk crashdump[218]: Mail crashed
    Jun 1 09:40:34 su-pwbk crashdump[218]: crash report written to: /Users/shancock/Library/Logs/CrashReporter/Mail.crash.log
    And the crash report reads:
    Date/Time: 2007-06-01 09:53:53.492 -0700
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [61]
    Version: 2.1 (752)
    Build Version: 1
    Project Name: MailViewer
    Source Version: 7520000
    PID: 221
    Thread: 3
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x9a397784
    Thread 0:
    0 libSystem.B.dylib 0x9000b448 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b39c mach_msg + 60
    2 com.apple.CoreFoundation 0x907deba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de4ac CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x9329b1b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x9329b020 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x93780ae4 _DPSNextEvent + 384
    8 com.apple.AppKit 0x937807a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.AppKit 0x9377ccec -[NSApplication run] + 472
    10 com.apple.AppKit 0x9386d87c NSApplicationMain + 452
    11 com.apple.mail 0x000871d8 0x1000 + 549336
    12 com.apple.mail 0x00087080 0x1000 + 548992
    Thread 1:
    0 libSystem.B.dylib 0x900553a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90055204 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a2b9d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x900553a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90055204 pthreadcondtimedwait + 676
    2 com.apple.Foundation 0x92c625d4 FCONDITION_WAITTIMEOUT + 144
    3 com.apple.Foundation 0x92c624f0 -[NSConditionLock lockWhenCondition:beforeDate:] + 128
    4 com.apple.MessageFramework 0x9a2b9d90 -[InvocationQueue _drainQueue] + 176
    5 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 3 Crashed:
    0 com.apple.MessageFramework 0x9a397784 -[ABAddressBook(MailAdditions) _bestRecordMatchingFormattedAddress:inSubscribedContent:] + 0
    1 com.apple.MessageFramework 0x9a2dc7f0 -[ABAddressBook(MailAdditions) bestRecordMatchingFormattedAddress:] + 44
    2 com.apple.MessageFramework 0x9a2dc6c8 -[MailAddressManager bestRecordMatchingFormattedAddress:] + 184
    3 com.apple.mail 0x00040ee0 0x1000 + 261856
    4 com.apple.mail 0x00037014 0x1000 + 221204
    5 libobjc.A.dylib 0x90a461f4 objc_msgSendv + 180
    6 com.apple.Foundation 0x92bdec94 -[NSInvocation invoke] + 944
    7 com.apple.MessageFramework 0x9a2b0800 -[MonitoredInvocation invoke] + 144
    8 com.apple.MessageFramework 0x9a2b9e80 -[InvocationQueue _drainQueue] + 416
    9 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x900553a8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90071be8 pthreadcond_timedwait_relativenp + 556
    2 ...apple.AddressBook.framework 0x94e35cac -[ABRemoteImageLoader workLoop] + 132
    3 com.apple.Foundation 0x92be31a0 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002be08 pthreadbody + 96
    Thread 3 crashed with PPC Thread State 64:
    srr0: 0x000000009a397784 srr1: 0x000000000008f030 vrsave: 0x0000000000000000
    cr: 0x24000248 xer: 0x0000000020000004 lr: 0x000000009a2dc7f0 ctr: 0x000000009a397784
    r0: 0x000000009a2dc7f0 r1: 0x00000000f0202ef0 r2: 0x00000000a0001fac r3: 0x0000000004a00490
    r4: 0x000000009a3ec540 r5: 0x0000000004a5cac0 r6: 0x0000000000000000 r7: 0x000000006e636f63
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000090a3f628 r11: 0x0000000000000001
    r12: 0x000000009a397784 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x00000000001b0000 r19: 0x0000000004a229a0
    r20: 0x0000000000000002 r21: 0x0000000000000000 r22: 0x0000000004a2f110 r23: 0x00000000001b0000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x0000000004a5cac0
    r28: 0x0000000004a5cac0 r29: 0x0000000004a00490 r30: 0x00000000aa2b5048 r31: 0x000000009a2dc610
    Model: PowerBook5,2, BootROM 4.7.1f1, 1 processors, PowerPC G4 (1.1), 1 GHz, 768 MB
    Graphics: ATI Mobility Radeon 9600, ATY,RV350M10, AGP, 64 MB
    Memory Module: SODIMM0/J25LOWER, 256 MB, DDR SDRAM, PC2700U-25330
    Memory Module: SODIMM1/J25UPPER, 512 MB, DDR SDRAM, PC2700U-25330
    Modem: LastDash, Euro, V.92, 4.0, APPLE VERSION 2.6.6
    Bluetooth: Version 1.7.14f14, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    PCI Card: TXN,PCIXXXX-00, cardbus, PC Card
    Parallel ATA Device: MATSHITACD-RW CW-8123
    Parallel ATA Device: TOSHIBA MK6026GAX, 55.89 GB
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft 3-Button Mouse with IntelliEye(TM), Microsoft, Up to 1.5 Mb/sec, 500 mA
    Would greatly appreciate a more permanant fix to this problem!
    Thanks, Su
    PowerBook5,2   Mac OS X (10.4.9)  

    As I said in the other thread, in your case Mail was crashing because of a problem with Address Book, so it should be no surprise that resetting the junk filter didn’t really fix the problem. It would have been more appropriate to post back there instead of starting a new thread...
    If Address Book itself works fine, the problem is probably the Previous Recipients list that Mail stores in the Address Book database. If you can do this without Mail crashing, in Mail open Window > Previous Recipients and remove all the entries from there.
    If that doesn’t work, you’ll have to re-create the entire Address Book database:
    1. If you have a .Mac account and .Mac synchronization of Address Book data is enabled either in Address Book > Preferences > General or in System Preferences > .Mac, disable it before proceeding.
    2. You may also need to reset the entire sync history (iSync > Preferences > Reset Sync History) to avoid synchronization issues if you use .Mac or iSync to synchronize your Address Book with other computers or devices.
    3. Open Address Book.
    4. As an extra safety measure, do File > Back up Address Book and save the backup wherever you wish.
    5. Go to Address Book > Preferences > vCard, set the vCard Format to 3.0 and check Export notes in vCards. Close the Preferences window when done.
    6. Select the All group in the main Address Book window and do File > Export Group vCard (the command should read “Export Group vCard”, not just “Export vCard”).
    7. Quit Address Book, Mail, and any other applications that might use Address Book for something. Or just quit all applications to be on the safe side.
    8. In the Finder, go to ~/Library/Application Support/ and move the entire AddressBook folder out of there, e.g. to the Desktop (to be deleted after fixing the problem and making sure you don’t miss anything).
    9. Check whether the problem is fixed now. If it is, you may be able to restore your contacts without the problem happening again by opening Address Book and doing File > Import > vCards to import the previously exported cards back into Address Book.
    10. If the problem has been fixed and .Mac synchronization of Address Book data was enabled at the beginning, enable it again, go to System Preferences > .Mac > Advanced, click Reset Sync Data, and choose the appropriate options to reset the Address Book data stored on the .Mac server with the data locally stored on the computer, i.e. sync data must flow from the computer to the .Mac server.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder. That is, ~/Library is the Library folder within the user’s home folder, i.e. /Users/username/Library.

  • Problems with plugins after upgrading to win8

    Hi
    I made the upgrade to Windows 8 and now several PS plugins causes Photoshop CS6 to "Stop Working And need to close". I have uninstalled
    and reinstalled plugins and still the same problem. As this happens with different plugins from different vendors I am led to believe this is
    not a 3rd party problem, but rather a problem with PS in win8. Happens with plugins from Niksoft and RedGiant. Needless to say I have
    all the latest software and updates - legally purchased.
    I haven't done much research into this, posting here is my first step after googeling didn't help. Is this a common problem? Does anyone
    know a fix to this? It's of such importance that I am already considering reinstalling win7.

    As an update on this,
    After I installed the latest Windows Update system fix packages that were released today most of the plugins now work. I am not 100% sure I can credit MS with fixing this, as I fiddled with alot with my graphics card trying to make this work at the same time as I updated. I will have to do some more testing on this to able to say exactly what was the problem.
    I'm installing win7+ps on a virtual machine so I can use that when absolutely needed for the plugins still not working - guess I can live with that until certain 3rd party vendors sort things out.
    Allright Noel, I get your point  - but you have to be downright difficult to be reading my initial question as if I was seeking support on 3rd party software as such.

Maybe you are looking for

  • Payment guarantee issue

    Hi, I would like to know what will be the Impact by changing the value in Payment guarantee procedure in Item--> Billing document --> Risk management Tab. and also which modules get affected ? Thanks, KP.

  • Dial up connection sharing via WRT54G wireless router

    Can someone help me out?  Here's my issue I have an XP based desktop computer that connects to the internet via a dial up 56K modem.  I would like to share the connection with my new XP vista laptop using the wireless adapter on the laptop.  I have a

  • What is the use of ledger in ECC 6

    Hi SAP gurus, what is the use of Ledger in ECC 6 nedd more clarity on it each an every field of New ledger functionality. and any have the doc related this plz fwd to my mail id [email protected] thanks in advance warm regards,

  • Need help JDBC conncetion for local database

    I have installed Oracle 8i home version on PC. I'm trying to access my database using JDBC, but I'm having problems with JDBC. How do I connect to the local database. Please post me the coding for that. Thanks my email address is - [email protected]

  • Remove blank page from document in Pages

    HI there I have created a document only require 1 page however it has created 2 pages. The second page is blank and I wish to delete it. Thanks