JDBC Scenario: Delete all the existing records and Insert

Dear All,
Scenario: IDoc to JDBC
PI need to delete all the existing records in the SQL table then need to insert the records.I have created a two statements in the target structure.
Statement1
   -> TableName
       -> action : DELETE
       -> Table : TableName
Statement2
   -> TableName
       -> action : INSERT
       -> Table : TableName
       ->Access
           -> Elements
I am getting below error while try to delete the records in the table.
JDBC message processing failed; reason Error processing request in sax parser: Error when executing statement for  table/stored proc. 'Tablename' (structure 'Statement1'): java.sql.SQLException: FATAL ERROR document format: structure 'Statement1', no key element found
Note: we use above structure in the another interface without specifying any Key for Delete operation(Server is same but different database for this two interface) and it works fine. Although the Primary keys has been set in the SQL table i am getting the above error.
let me know what are the setting need to make in PI and SQL DB to achieve this.
Regards,
Manikandan Shanmugam
Edited by: Manikandan Shanmugam on Nov 8, 2011 6:19 AM

The straucture what you have deined for Delete is not correct, you should have key field in statement structure then only you can perform Delete operation.
refer below link
http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/7b6e85fde93673e10000000a114a6b/content.htm
Regards,
Raj

Similar Messages

  • Deleting all the similar records except one

    I have a table without a primary/unique key, this table contains too many rows that have the same column values(the row is duplicated), How can I delete all the duplicated rows and keep one copy of this rows?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Waleed Dallah ([email protected]):
    I have a table without a primary/unique key, this table contains too many rows that have the same column values(the row is duplicated), How can I delete all the duplicated rows and keep one copy of this rows?<HR></BLOCKQUOTE>
    Hi
    This query may be solev ur problem
    delete table where rowid not in(select min(rowid) from table1 group by fieldname)
    This query if u want to keep latest row use max(rowid) instead of min(rowid)
    let me know
    by
    venkat
    ([email protected])

  • To Delete all the existing positions

    Hi All,
    Please guide me if I want to delete ( not delimit) all the existing positions from the System so that I can start fresh.
    Best Regards,
    Amit

    Hi Amit,
    You can delete using PP02.
    First delete the relationships Infotype 1001 and then object Infotype corresponding to that position.
    Reward if helpful
    Regards
    Tomesh

  • I got the MSCVR80.ddl message after I tried to do the latest update on Itunes.  I went in and deleted all the related programs and reinstalled, but I keep getting a message during installation that "Service 'Apple Mobile Device' failed to start. Help!

    I was trying to do the latest update on my desktop for my Itunes.  I got MSVCR80.dll is missing.  I saw a post about deleting all the apple itunes programs, restarting and reinstalling.  I tried that.  As it was installing a message came up about "Service'Apple Mobile Device' failed to start. Verify that you have sufficient privileges to start systems services.  I did a retry, got the same message, then hit ignore.  It went on.  Then a message popped up saying "Itunes not installed correctly"  Error 7 (Windows error 126)
    Now my Itunes program will not open at all.  What gives?  This is very frustrating and I am not very computer literate to begin with.

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

  • I recently had my hard drive replaced and now iTunes won't allow me sync my iPhone without deleting all the media contents and replacing it with the existing library. Is there another way without erasing everything?

    I have already backed up my iPhone, yet it still will not allow me to move the contents of my phone onto my computer. Rather, it wants to delete everything off of my phone and replace it with the contents on my iTunes. Is there a way I can integrate both my iTunes and iPhone? There used to be autofill on iTunes, but I can no longer find it.

    Hello there, DollyVong.
    The following Knowledge Base article has great information and steps to follow on getting purchased content from your iOS device to your computer:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • How to delete all the data records

    Hi,
    After testing and updating the task hiyerarcies, How can I delete the all condolidation records from cubes, ods, etc. easily. In order to start a clean UCMON, i need a your suggestions.
    thanks,
    Yigit

    Hi Dan;
    I can't  see this option... and i have set up the Tools view (Edit > settings > Workbench > Main Navigation > Views select Tools) > Transaction Data > Analyze and Repair Data Streams.
    Please check this out:
    where i see this??
    Thanks!
    César.

  • How can I add new music to my iPhone from a new device without losing all the existing music?

    Hello! My personal laptob that I usually use to sync my iPhone to is broke at the moment so, I've been syncing to my work computer. I have some music, not downloaded from iTunes, on the new computer that I'd like to add to my iPhone but I can't see how without iTunes deleting all my existing playlists and music from my iPhone. I can click the menu arrow on a song and then select "Add to" from the pop-up menu, then choose from "Devices" - Nathan Swain's iPhone - and it lets me, but nothing ever get's added to my iPhone. I have also authorized this computer on my iTunes account. I'm stumped!

    By design, iPhone syncs or manually manages iTunes content with ONE computer at a time. Each time you switch computers, ALL iTunes content is first erased from your phone, to be replaced with the content from the new computer.
    No way around this fact, other than transferring your content to the computer you normally sync with.

  • Delete only the child object and not the parent object

    Hi,
    I have the below code:-
    TAnswer
    @ManyToOne(fetch = FetchType.LAZY)
         @JoinColumn(name = "question_id", nullable = false)
    //     @Cascade(value=CascadeType.ALL)
         public TQuestion getTQuestion() {
              return this.TQuestion;
         }     TQuestion
    @OneToMany(fetch = FetchType.LAZY, mappedBy = "TQuestion", orphanRemoval = true)
         @Cascade(value=CascadeType.ALL)
         /*@Cascade({org.hibernate.annotations.CascadeType.SAVE_UPDATE,
                org.hibernate.annotations.CascadeType.DELETE,
                org.hibernate.annotations.CascadeType.MERGE,
                org.hibernate.annotations.CascadeType.PERSIST,
                org.hibernate.annotations.CascadeType.DELETE_ORPHAN})*/
         public List<TAnswer> getTAnswers() {
              return this.TAnswers;
                   In Java:-
         public void removeAnswers(TQuestion question)
                        throws ApplicationException {
                   List<TAnswer> answerList =  question.getTAnswers();
                   deleteall(answerList);
         public void deleteall(Collection objects) {
                   try {
                        getHibernateTemplate().deleteAll(objects);
                        getHibernateTemplate().flush();
                   } catch (Exception e) {
                        throw new ServerSystemException(ErrorConstants.DATA_LAYER_ERR, e);
         }               Here the "deleteall" will delete both the answer records and question records, I don't want the questions
         records to be deleted. I have tried making the question as null when we set the answer object to be passed for delete
         bit still it is     deleting the question records as well.How to achieve the above in deleting only the answer (child) records
         and not the question(parent) record? Is there any thing we need to do with @Cascade for Question object? Please clarify.
    Thanks.

    What does deleteAll do, it doesn't look like a JPA method. You might want to ask your question on your provider forum, or use straight JPA methods as a simple EntityManager.remove(answer) on each answer in the collection should work.
    Regards,
    Chris

  • Delete all the database table content

    Hello Friends,
    I have a z table with 5 fields (all the key fields) and I want to delete all the table content and load fresh content from internal table.
    I tried using syntax 'delete ztable' but sy-subrc value is coming as 4, means no table content is getting deleted.
    Please suggest me any alternative way to delete all the database table content.
    Thanks in advance,
    Shreekant

    Hi,
    try using
    delete from ztable.
    This will delete all records from your ztable. After this command u can fill your ztable from itab by the following command
    select *
    from std table
    into corresponding fields of itab.
    insert ztable from table itab.
    Hopefully this will solve your problem.
    Regards,
    Ibrar

  • To find all the child records are processed before parent records

    Hi,
    When i am trying to process consignment pulls and my client is using third party tool to insert the data into interface tables. My logic is written in such a way that it should pick parent record associated with child but there is some delay in child records and not all the child records are being pulled with parent.
    In a brief, i need to write a condition in such a way that my parent cursor should pick all the child records with max(last_updated_date) and then it should be processed.
    eg: I have a family and need to catch bus with all my family members. I need to check now for the last family member who get into and should wait for atleast 2mins so as to ensure all my family members are in. I am unable to achieve this with count. Please do revert back soon.
    Details are below:
    CURSOR c_pull (p_pull_id NUMBER) IS----------------------------------parent cursor
    SELECT ecp.ROWID ROW_ID
    ,ecp.*
    FROM consignment_pulls ecp
    WHERE ecp.process_flag IN ( 2, 3 )
    AND ecp.pull_id > NVL(p_pull_id,0)
    ORDER BY ecp.pull_id
    FOR UPDATE OF ECP.PROCESS_FLAG NOWAIT;
    CURSOR c_line (p_pull_id NUMBER) IS----------------------------------child cursor
    SELECT ecpi.ROWID ROW_ID
    ,ecpi.*
    FROM consignment_pull_items ecpi
    WHERE ecpi.process_flag IN ( 2, 3 )
    AND ecpi.pull_id = p_pull_id
    FOR UPDATE OF ecpi.process_flag;
    Edited by: Prathyusha on Apr 5, 2012 12:07 AM
    Edited by: jerry on Apr 5, 2012 12:10 AM

    Hi Helios,
    Thanks for the info. But its not a concurrent request something like we can filter with start date and completion date. Its all about selection of records from headers and lines table and not able to make those selection of header records with a delay of say some 2minutes until all the child records are inserted.
    Thanks,
    Prathyusha.

  • I deleted all the music on my iPhone, but all the albums still exist. How do I clear and add a fresh batch of music?

    I deleted all the music on my iPhone, but all the album artwork still exist. How do I clear and add a fresh batch of music?  Also my iTunes no longer recognizes my iPhone under the "devices" tab so I am unable to manually sync. I have disconnected it makes a beep sound when reconnected so I know my computer is finding the phone, the iPhone also appears on Explorer. Stupid question but I can't figure it out and wasting too much time.  Thank you.

    It has always been very basic to always maintain a backup copy of your computer for this very occasion.  Use your backup copy of your computer to put everything on the new one.
    If for some reason you have failed to backup, big mistake, then you can transfer itunes purchases from the iphone to the computer:  File>Transfer Purchases
    You may be able to buy a 3rd party program to get any other music off of the iphone ( not supported by Apple).
    When you sync the iphone, it will erase the current content and replace with content form the new computer.
    "Not happy with itunes right now, more then a bit of a joke"
    Not itunes fault that you did not do the very basics and maintain a backup copy.

  • How to delete the existing list and prevent auto-completed web sites?

    Hi, As soon as I start to type "www" in the address bar, a list of previously visited web sites appears, as if auto-completed. They seem rather random, and not necessarily the most recent ones. I have tried resetting Safari, deleting the cache, looking these sites up in the various plist folders in the Library, using Safari in Private mode, etc. but it still happens. I find it a nuisance.
    How do I delete the existing sites, and how do I prevent more from appearing in the future?
    Thanks,
    Richard

    HI,
    Go to Safari/Preferences - AutoFill
    Click where it says: Edit
    You can Remove All or edit which url's you don't want.
    Carolyn

  • HT201317 i have enabled photostream on my imac but only a small selection of old photos from my iphone have streamed through.  How do i get all the existing photos from both my iphone and ipad onto my iMac?

    I have enabled photostream on my imac but only a small selection of old photos from my iphone have streamed through.  How do i get all the existing photos from both my iphone and ipad onto my iMac?

    This usually happens because iCloud only keeps photo stream photos for 30 days (even though your last 1000 photos will remain on your phone until deleted).  When you enabled photo stream on your Mac you only received photo stream photos from the last 30 days.
    To get older photos to your Mac, create a shared photo stream containing them and invite yourself as a subscriber (see http://help.apple.com/icloud/#mmc0cd7e99).  The be sure you check Shared Photo Streams in iPhoto>Preferences>Photo Stream.  You can then import them to your iPhoto library by opening the shared photo stream album in iPhoto, then going to Edit>Select All, Control-clicking on any of the selected photos and selecting Import.

  • Hi, I have the iphone 4 and I manually deleted all the voice memos on my iphone but they are still on my iphone when I open Itunes

    Hi, I have the iphone 4 and I manually deleted all the voice memos on my iphone but they still appear on my iphone when I open Itunes on my computer and they still take up space. I am soon running out of space. Any ideas to permanantly get rid of some of the voice memos?
    Am I the only one that really dislike the fact I cannot customize my iphone and cannot delete whatever files I want?
    The only options i seem to have is to delete all my files WITHOUT a system restor because I tried doing a system restore  and it puts back all my old files on my iphones.
    I'm pretty desperate and any tips would help me a lot

    If I understand you correctly, you purchased two albums directly from your iPhone and have successfully transferred the purchases to your iTunes library, but now you want to remove these two albums from your iPhone but having trouble, correct?
    If so, you can manually delete the albums (song-by-song) by sliding your finger across each song's name, from left to right, then select the Delete button.
    Or, while your iPhone is connected to iTunes click on the Music tab that you see in iTunes (where you specify what items to sync to your iPhone). At the bottom of that window (below Playlists, Genre, etc.) you'll see songs that are "manually" added to your iPhone, just un-check those and re-sync.

  • My imovie seems to have completely crashed... and I'm hoping someone can help me. I have moved all my projects and events to a folder on my desktop. I've deleted all the plist files I can find and I still cannot get it to open.

    Please help... it seems all is lost as all I kind find on this subject seem to lead to nowhere. My engagement was on imovie, a school project, several videos of our son. You will have to hold my hand through this process... as I am not very good at this type of thing. I believe I have deleted all the necessary plist files and moved my projects and events to a folder on my desktop. imovie has been upgraded to version 9.0.9... Whenever I open it I just get the beachball and then I have to force quit and I get the following report:
    Date/Time:  
    2013-08-02 23:48:24 -0500
    OS Version: 
    10.7.5 (Build 11G63b)
    Architecture:
    x86_64
    Report Version:  9
    Command:    
    iMovie
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Version:    
    9.0.9 (1795)
    Build Version:   2
    Project Name:
    iMovieApp
    Source Version:  1795000000000000
    App Item ID:
    408981434
    App External ID: 15340117
    Parent:     
    launchd [120]
    PID:        
    1184
    Event:      
    hang
    Duration:   
    2.60s
    Steps:      
    27 (100ms sampling interval)
    Pageins:    
    0
    Pageouts:   
    0
    Process:    
    iMovie [1184]
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Architecture:
    i386
    UID:        
    504
      Thread 0x3dd6 
      User stack:
    27 ??? (in iMovie) [0xf9c95]
    27 ??? (in iMovie) [0xfa12a]
    27 NSApplicationMain + 1054 (in AppKit) [0x92d8fac5]
    27 -[NSApplication run] + 911 (in AppKit) [0x92afeac1]
    27 ??? (in iMovie) [0x1485be]
    27 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113 (in AppKit) [0x92b02752]
    27 _DPSNextEvent + 678 (in AppKit) [0x92b02ee8]
    27 BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9c85671a]
    27 ReceiveNextEventCommon + 381 (in HIToolbox) [0x9c8568ab]
    27 RunCurrentEventLoopInMode + 318 (in HIToolbox) [0x9c84f543]
    27 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x9ad10088]
    27 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x9ad101dc]
    27 __CFRunLoopRun + 1112 (in CoreFoundation) [0x9ad109c8]
    27 __CFRunLoopDoSources0 + 246 (in CoreFoundation) [0x9ace6af6]
    27 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15 (in CoreFoundation) [0x9ace713f]
    27 __NSThreadPerformPerform + 503 (in Foundation) [0x95e5fe0c]
    27 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x9ad6fd11]
    27 -[ILMediaGroupsTreeController _reloadFinished:] + 715 (in iLifeMediaBrowser) [0x94ff72a0]
    27 -[ILMediaGroupsTreeController setAllGroups:] + 180 (in iLifeMediaBrowser) [0x94ff8dee]
    27 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 131 (in Foundation) [0x95e2316d]
    27 NSKeyValueDidChange + 279 (in Foundation) [0x95e7bbf1]
    27 NSKeyValueNotifyObserver + 387 (in Foundation) [0x95e59194]
    27 -[ILMediaObjectsViewController observeValueForKeyPath:ofObject:change:context:] + 1217 (in iLifeMediaBrowser) [0x9500538b]
    27 -[ILMediaObjectsViewController syncTreeNodeSelections] + 419 (in iLifeMediaBrowser) [0x9501179d]
    27 -[ILMediaObjectsViewController groupSelectionChanged:] + 233 (in iLifeMediaBrowser) [0x95007225]
    27 -[ILMediaObjectsViewController updateMediaObjectsViewToSelectedGroups:] + 2002 (in iLifeMediaBrowser) [0x9501035f]
    27 -[NSArrayController setContent:] + 858 (in AppKit) [0x92d97f3f]
    27 -[NSArrayController _arrangeObjectsWithSelectedObjects:avoidsEmptySelection:operationsMask:useBasis :] + 856 (in AppKit) [0x92d95aa0]
    27 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53 (in AppKit) [0x92d96231]
    27 -[NSController didChangeValueForKey:] + 48 (in AppKit) [0x92b18430]
    27 -[NSController _notifyObserversForKeyPath:change:] + 238 (in AppKit) [0x92b18526]
    27 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1026 (in Foundation) [0x95e52f44]
    27 NSKeyValueNotifyObserver + 387 (in Foundation) [0x95e59194]
    27 -[ILMediaObjectsViewController observeValueForKeyPath:ofObject:change:context:] + 299 (in iLifeMediaBrowser) [0x95004ff5]
    27 -[IKImageBrowserView(ImageBrowserDatasource) reloadData] + 368 (in ImageKit) [0x9b96ba12]
    27 -[IKImageBrowserView(ImageBrowserLayout) updateLayoutOfCells] + 100 (in ImageKit) [0x9b978e18]
    27 -[IKImageBrowserView(ImageBrowserLayout) updateLayoutOfCellsAtIndexes:] + 174 (in ImageKit) [0x9b978d52]
    27 -[IKImageBrowserView(ImageBrowserScrolling) adjustDocumentSize] + 49 (in ImageKit) [0x9b98170c]
    27 -[IKImageBrowserLayoutManager contentSize] + 100 (in ImageKit) [0x9b9d6fbc]
    27 -[IKImageBrowserLayoutManager updateIfNeeded] + 44 (in ImageKit) [0x9b9d4a9d]
    27 -[IKImageBrowserLayoutManager update] + 213 (in ImageKit) [0x9b9d4a46]
    27 -[IKImageBrowserSubsetLayoutManager updateLayout] + 60 (in ImageKit) [0x9ba0451a]
    27 -[IKImageBrowserGrid computeContentSize] + 399 (in ImageKit) [0x9b941329]
    27 -[IKImageBrowserGrid translationRatioAtRow:] + 63 (in ImageKit) [0x9b94095e]
    27 -[IKImageBrowserGrid validateRowsTranslationsToRowIndex:] + 621 (in ImageKit) [0x9b941015]
    27 -[IKImageBrowserCell aspectRatio] + 44 (in ImageKit) [0x9b94950e]
    27 -[IKImageBrowserCell _computeAspectRatio] + 36 (in ImageKit) [0x9b949585]
    27 -[IKImageCell validateDatasource] + 1118 (in ImageKit) [0x9ba2af82]
    27 -[NSObject(IKImageBrowserItemOptional) IKImageRepresentationWithType:] + 33 (in ImageKit) [0x9ba26f8f]
    27 -[ILMediaObject imageRepresentation] + 533 (in iLifeMediaBrowser) [0x94feffd4]
    27 -[ILMediaObject thumbnailPath] + 86 (in iLifeMediaBrowser) [0x94ff43b5]
    27 -[ILMediaObject _internal_thumbnailPath] + 52 (in iLifeMediaBrowser) [0x94ff4453]
    27 -[ILMediaObject refreshThumbnailCacheInfo] + 62 (in iLifeMediaBrowser) [0x94ff0199]
    27 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:] + 48 (in iLifeMediaBrowser) [0x94ffa93d]
    22 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:updateIfNotFound:] + 466 (in iLifeMediaBrowser) [0x94ffab14]
    22 -[ILMediaBrowserImageManager updateThumbnailDataXmlForPath:info:] + 116 (in iLifeMediaBrowser) [0x94ffa906]
    15 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 236 (in Foundation) [0x95e2a2fe]
    15 CFPropertyListCreateXMLData + 32 (in CoreFoundation) [0x9ad44640]
    15 _CFPropertyListCreateXMLData + 203 (in CoreFoundation) [0x9ad4471b]
    7 _CFAppendXML0 + 3261 (in CoreFoundation) [0x9ad4561d]
    2 _CFAppendXML0 + 3261 (in CoreFoundation) [0x9ad4561d]
    1 _CFAppendXML0 + 290 (in CoreFoundation) [0x9ad44a82]
    1 _appendEscapedString + 602 (in CoreFoundation) [0x9ad461ea]
    1 _plistAppendCharacters + 80 (in CoreFoundation) [0x9ad44850]
    1 _CFAppendXML0 + 5210 (in CoreFoundation) [0x9ad45dba]
    1 __CFNumberCreateFormattingDescriptionAsFloat64 + 181 (in CoreFoundation) [0x9ad61df5]
    1 CFStringCreateWithFormat + 110 (in CoreFoundation) [0x9ace102e]
    1 __CFStringAppendFormatCore + 6588 (in CoreFoundation) [0x9acdad9c]
    1 _CFAppendXML0 + 2847 (in CoreFoundation) [0x9ad4547f]
    1 CFRelease + 169 (in CoreFoundation) [0x9acde039]
    1 _objc_rootRelease + 47 (in libobjc.A.dylib) [0x99b0854e]
    1 -[__NSArrayM dealloc] + 394 (in CoreFoundation) [0x9ad084da]
    1 -[NSObject dealloc] + 107 (in CoreFoundation) [0x9ad0855b]
    1 _object_dispose + 78 (in libobjc.A.dylib) [0x99b11dc0]
    1 szone_size + 0 (in libsystem_c.dylib) [0x98b64cd1]
    1 _CFAppendXML0 + 2616 (in CoreFoundation) [0x9ad45398]
    1 CFDictionaryGetKeysAndValues + 455 (in CoreFoundation) [0x9aceb567]
    1 CFBasicHashGetElements + 207 (in CoreFoundation) [0x9aceb63f]
    1 _CFAppendXML0 + 3128 (in CoreFoundation) [0x9ad45598]
    1 _appendEscapedString + 653 (in CoreFoundation) [0x9ad4621d]
    1 _plistAppendCharacters + 80 (in CoreFoundation) [0x9ad44850]
    1 _CFAppendXML0 + 2778 (in CoreFoundation) [0x9ad4543a]
    1 CFArraySortValues + 1183 (in CoreFoundation) [0x9ace86ef]
    1 CFQSortArray + 231 (in CoreFoundation) [0x9ace8927]
    1 CFSortIndexes + 1494 (in CoreFoundation) [0x9ad18466]
    1 __CFSimpleMergeSort + 124 (in CoreFoundation) [0x9ad1850c]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 CFStringCompareWithOptionsAndLocale + 35 (in CoreFoundation) [0x9acf4cc3]
    1 CFStringGetLength + 108 (in CoreFoundation) [0x9acdc97c]
    1 _CFAppendXML0 + 2722 (in CoreFoundation) [0x9ad45402]
    1 CFArrayReplaceValues + 135 (in CoreFoundation) [0x9ace8ac7]
    1 -[NSMutableArray replaceObjectsInRange:withObjects:count:] + 979 (in CoreFoundation) [0x9ad27e93]
    4 _CFAppendXML0 + 3128 (in CoreFoundation) [0x9ad45598]
    2 _appendEscapedString + 340 (in CoreFoundation) [0x9ad460e4]
    1 CFStringGetCharacters + 143 (in CoreFoundation) [0x9aced27f]
    1 CFStringGetCharacters + 20 (in CoreFoundation) [0x9aced204]
    2 _appendEscapedString + 602 (in CoreFoundation) [0x9ad461ea]
    2 _plistAppendCharacters + 150 (in CoreFoundation) [0x9ad44896]
    2 CFDataAppendBytes + 163 (in CoreFoundation) [0x9aceb793]
    1 CFDataReplaceBytes + 487 (in CoreFoundation) [0x9ace9857]
    1 __CFDataGrow + 354 (in CoreFoundation) [0x9acec362]
    1 realloc + 175 (in libsystem_c.dylib) [0x98ba56f6]
    1 malloc_zone_realloc + 84 (in libsystem_c.dylib) [0x98ba47c0]
    1 szone_realloc + 2552 (in libsystem_c.dylib) [0x98b6f6f4]
    1 vm_copy + 167 (in libsystem_kernel.dylib) [0x9a73fa6c]
    1 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9a741c22]
    1 CFDataReplaceBytes + 727 (in CoreFoundation) [0x9ace9947]
    1 memmove$VARIANT$sse42 + 39 (in libsystem_c.dylib) [0x98b279e4]
    2 _CFAppendXML0 + 3239 (in CoreFoundation) [0x9ad45607]
    2 CFDictionaryGetValue + 135 (in CoreFoundation) [0x9acd6a87]
    1 CFBasicHashFindBucket + 1844 (in CoreFoundation) [0x9acd71d4]
    1 __CFDictionaryStandardEquateKeys + 46 (in CoreFoundation) [0x9ace422e]
    1 CFEqual + 91 (in CoreFoundation) [0x9ace429b]
    1 CFBasicHashFindBucket + 1679 (in CoreFoundation) [0x9acd712f]
    1 __CFDictionaryStandardHashKey + 32 (in CoreFoundation) [0x9acd7700]
    1 __CFStringHash + 125 (in CoreFoundation) [0x9ace0a4d]
    2 _CFAppendXML0 + 2778 (in CoreFoundation) [0x9ad4543a]
    2 CFArraySortValues + 1183 (in CoreFoundation) [0x9ace86ef]
    2 CFQSortArray + 231 (in CoreFoundation) [0x9ace8927]
    2 CFSortIndexes + 1494 (in CoreFoundation) [0x9ad18466]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 400 (in CoreFoundation) [0x9ad18620]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 bcmp + 153 (in libsystem_c.dylib) [0x98b9f1b9]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 400 (in CoreFoundation) [0x9ad18620]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 bcmp + 132 (in libsystem_c.dylib) [0x98b9f1a4]
    5 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 287 (in Foundation) [0x95e2a331]
    5 -[NSData(NSData) writeToFile:atomically:] + 103 (in Foundation) [0x95e2a51e]
    5 _NSWriteBytesToFile + 60 (in Foundation) [0x95e2a565]
    4 __fsync + 10 (in libsystem_kernel.dylib) [0x9a7445fa]
    1 _NSWriteBytesToFileWithExtendedAttributes + 1253 (in Foundation) [0x95e2aa52]
    1 __rename + 10 (in libsystem_kernel.dylib) [0x9a743b0a]
    2 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 61 (in Foundation) [0x95e2a24f]
    1 _NSIsPList + 793 (in Foundation) [0x95e28608]
    1 _NSIsPList + 659 (in Foundation) [0x95e28582]
    1 -[__NSCFDictionary keyEnumerator] + 97 (in CoreFoundation) [0x9ad5e271]
    1 -[__NSCFDictionary retain] + 25 (in CoreFoundation) [0x9ad3bec9]
    1 _NSIsPList + 770 (in Foundation) [0x95e285f1]
    1 -[__NSCFDictionary objectForKey:] + 28 (in CoreFoundation) [0x9ad3897c]
    1 CFDictionaryGetValue + 135 (in CoreFoundation) [0x9acd6a87]
    1 CFBasicHashFindBucket + 1844 (in CoreFoundation) [0x9acd71d4]
    1 __CFDictionaryStandardEquateKeys + 46 (in CoreFoundation) [0x9ace422e]
    1 CFEqual + 261 (in CoreFoundation) [0x9ace4345]
    1 bcmp + 128 (in libsystem_c.dylib) [0x98b9f1a0]
    5 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:updateIfNotFound:] + 411 (in iLifeMediaBrowser) [0x94ffaadd]
    5 -[ILMediaBrowserImageManager loadAttributes:forMediaObject:atPath:] + 79 (in iLifeMediaBrowser) [0x94ffab80]
    5 -[ILMediaBrowserImageManager loadAttributes:forImageMediaObject:atPath:] + 720 (in iLifeMediaBrowser) [0x94ffd6ca]
    3 -[IKImageWrapper saveAsTIFFAtPath:] + 69 (in ImageKit) [0x9b91df81]
    3 -[NSData(NSData) writeToFile:atomically:] + 103 (in Foundation) [0x95e2a51e]
    3 _NSWriteBytesToFile + 60 (in Foundation) [0x95e2a565]
    3 __fsync + 10 (in libsystem_kernel.dylib) [0x9a7445fa]
    2 -[IKImageWrapper saveAsTIFFAtPath:] + 36 (in ImageKit) [0x9b91df60]
    1 -[IKImageWrapper TIFFRepresentation] + 82 (in ImageKit) [0x9b91eb1c]
    1 -[NSImage TIFFRepresentation] + 49 (in AppKit) [0x92d505e3]
    1 -[NSImage TIFFRepresentationUsingCompression:factor:] + 806 (in AppKit) [0x92d50911]
    1 +[NSBitmapImageRep TIFFRepresentationOfImageRepsInArray:] + 56 (in AppKit) [0x92d50dd9]
    1 +[NSBitmapImageRep(NSBitmapImageFileTypeExtensions) representationOfImageRepsInArray:usingType:properties:] + 2439 (in AppKit) [0x92d51768]
    1 CGImageDestinationFinalize + 158 (in ImageIO) [0x961dc693]
    1 _CGImagePluginWriteTIFF + 3885 (in ImageIO) [0x961dd5e9]
    1 CGAccessSessionGetBytes + 164 (in CoreGraphics) [0x99202dbc]
    1 memmove$VARIANT$sse42 + 136 (in libsystem_c.dylib) [0x98b27a45]
    1 -[IKImageWrapper TIFFRepresentation] + 64 (in ImageKit) [0x9b91eb0a]
    1 -[IKImageWrapper nsImage:] + 53 (in ImageKit) [0x9b92139b]
    1 -[IKImageWrapper _nsImage] + 261 (in ImageKit) [0x9b921519]
    1 IKCGImageFromIconRef + 309 (in ImageKit) [0x9b924834]
    1 PlotIconRefInContext + 403 (in HIServices) [0x93b65a15]
    1 PlotISImageRefInContext + 2063 (in HIServices) [0x93b63375]
    1 CGContextDrawImage + 457 (in CoreGraphics) [0x992b0855]
    1 ripc_DrawImage + 951 (in libRIP.A.dylib) [0x9ce94e6f]
    1 ripc_AcquireImage + 1901 (in libRIP.A.dylib) [0x9ce9661d]
    1 CGSImageDataLock + 165 (in CoreGraphics) [0x992b0c5c]
    1 img_data_lock + 8151 (in CoreGraphics) [0x9922867d]
                                                          

    Hi
    Yes this can be many things - and I can only guess/suggest.
    A. a very common origin to make the Mac un-happy is to - PANIC-HALT - when the round multicolored thing appear.
    So much can go wrong by doing this - and if done often problem builds up that can result in a real disaster.
    B. NEVER - move or alter any folder named - iMovie Event's resp. iMovie Project's - as iMovie has no search function - moving them results in that iMovie get's 100% lost.
    One can move them - but this HAS TO BE done within the iMovie application (as it is up and running)
    C. preference files - there are TWO or more Libraries on Your Mac. First and easy to find is the one You see when opening Your Start-Up Hard Disk window = Root Library == the WRONG ONE
    What we need to find is the one in Your User-Account folder (icon as a house) - and this is in Mac OS X.7, X.8 and X.9 HIDDEN. To see it do:
    ( It can be done like this: Open Terminal, then enter:
    chflags nohidden ~/Library
    Press return, then restart, and it will always be visible until the next major update, when you do the same thing again. )
    or - do like this. 
    On the Finder window at the top left of the screen,
    Hold down the Option key and clicked on Go. 
    This allowed You to see the Library folder and select it. 
    Then keep the Option button pressed down in order to see and select the Library folder. 
    Once found it, You are able to navigate to the iMovie preferences file and move it to the trash.  iMovie then start’s up fine! 
    Now here in Your User Library - find Preferences and trash
    com.apple.iMovie.plist
    com.apple.iMovie3.plist
    com.apple.iMovie7.plist
    com.apple.iMovie8.plist
    com.apple.iMovie9.plist
    com.apple.iMovieApp.plist
    and find
    com.apple.iApps.plist
    While iMovie is NOT RUNNING - move this/these file/s out on to desk-top.
    Now restart iMovie.
    I Prefere another way to find out if this is the problem.
    (after all folders (iMovie Event/Projects are moved into original place)
    • go up to Apple Menu
    • Down to System Pref's
    • Select Accounts - Create a new User
    • Go down the Apple menu - Log OUT
    • Log into as the new User
    Now try iMovie
    Does it work at all ? (Yes You don't see Events or Projects in Your original Account just now)
    If so - Then we know that there is a corrupted pref file to be trashed.
    Else - the problem are much more severe.
    D. After Panic Halt / Forced Quit - I always do -. to keep disasters on arms length.
    • Repair Permissions (Apple Disk Util tool)
    • Start from other HD or DVD - then run Repair Hard Disk (Apple Disk Util tool)
    Yours trying to be of help - Bengt W

Maybe you are looking for

  • Material stock report urgent

    Hi ABAP Guru's I got a requirement to develop an report which lists the stock(Opening Stock and Closing stock) for each material of a plant in given date range.whose Values to be matched with either MB5B or MC.9 Tcodes.I have found few tables for Sto

  • How do I install a game on the mac pro?

    I cant figure it out. I'm trying to install half life 2. Can someone help me. And how do u know if you can play a game on a mac without downloading windows?

  • Error while doing Txn MIRO

    when i post the Invoice thru txn MIRO for the previous financial year i got the below error Express Document "Update was Terminated" when i check it in my inbox i see the following details in SO01 Error Info : M8 185: Invoice document XXXXXXXXX.

  • Why can't you post direct links to the full installers?

    Not a tough question: Why can't you just post direct links to the full installers instead of forcing people to sign up for "Distribution" EVERY DAMN RELEASE!?!? Why do I have to fill out that form and wait a day after EVERY, SINGLE, RELEASE just to u

  • New Bie help with MySQL & servlet

    Hi, I am trying to execute a small action... some how my code does not work. All it shows is a blank page with no error.... Can any one help me to optimize this code so that it works? * To change this template, choose Tools | Templates * and open the