Import params,exports params, via jco

hi guys,
         i am retrieving what are the columns present in the table via jco
     can i retireve what are the import parameters,export parameters are
   present in the FuntionalModule.if yes, means plz give me lines of code......
   with regards,
     swathi

hi ,,
  i tried ...but not getting..
   JCO.Table jtable=function.getExportParameterList().getName();
   i want table name in that function module......
   what is the use of IMetaData .....from this can i get table name

Similar Messages

  • JCA IConnection call to BAPI with table in table as import and export param

    Is it possible to call a BAPI with a table in table as import and export data?
    Please give small code example if this is possible.
    Thanks in advance.

    Inner tables can be handled with:
    IRecordSet innerTable = (IRecordSet)outerTable.getObject("INNER_TABLE");

  • Render html form & send forms's input values as params via HTTP POST

    Hello,
    I'm using appache commons http client to send HTTP post queries to a given url and receive HTTP response then process it.
    one of the requirements of my Application is the following: one of these HTTP Post requests is supposed to return an HTML form with different html types (text filed, text area etc..) that i will need to display in my swing application. one important requirement is that i can't know in advance what the html form field types will be.. it depends on a given parameters that my application send as part of HTTP Post method (using apache http client).
    I Longly searched for a simple solution to this problem . There are many solutions but each one has it's limitations :
    1-i can render the html form inside a JEditorPane .but how can I collect the user entered data inside JEditorPane ? i'm not sure this swing component offers the capability to detect its html contents and more it will be difficult to know what are the values entered by user inside html form rendered by JEditorPane.
    2-are there any Java Embedded browsers that offer some API to enable me detect the html form fields ,capture the data entered by user inside the html form ?
    3-the solution i currently opted for is : parse html & convert html form to swing dialog. currently this solution i use works well but the cost of implementing it is high : it involves difficult parsing logic. this makes me worried .I'm not sure if i'm now using the right & easiest solution.
    I need some advice on What is the simplest and clean solution to render a html form & yet be able to collect user entered inputs & send the user input values as params via java HTTP POST request ?

    dragzul wrote:
    In my opinion, your actual solution is what you need to do. You're trying to "merge" two different kinds of view. Actually, the "easiest" way may be: if you have your data to display, you decide to show it on html or swing.Yes i believe that my current solution may be the unique one for my special requirements. when doing research about this problem i found a multitude of java libraries to convert xml to swing (ex: www.swixml.org) .However i was surprised there are no java libraries to convert HTML forms to swing dialogs -as far as i know-. this is a bit strange. The Limitation is that the developers of the server API are not Java guys and are reluctant to use an xml format that i can easily convert to swing . probably they have their own reasons as they might be using the HTML Response for some other server side work. So I was obliged to deal with an HTML stream that i need to display in my client application and process its data. in my opinion the only way to do this is by developing a HTML form to swing converter package. that's what i did now. i was only worried if i'm complicating things and if there are some easier solutions to this issue.
    thanks

  • I get this error when I go to imovie, I have instalerat on via appstore, but it does not work. The QuickTime components necessary to view, edit, import and export various types of films are not installed. The components included in the iMovie installer. R

    I get this error when I go to imovie, I have instalerat on via appstore, but it does not work.
    The QuickTime components necessary to view, edit, import and export varioustypes of films are not installed. The components included in the iMovie installer.Reinstalling iMovie.

    I get this error when I go to imovie, I have instalerat on via appstore, but it does not work.
    The QuickTime components necessary to view, edit, import and export varioustypes of films are not installed. The components included in the iMovie installer.Reinstalling iMovie.

  • Import and Export transport requests on Netweaver 2004s Sp11 Sneak Preview

    Hi Experts,
    I have configured the transportation system <STMS> in order to import and export transport requests on the NSP system. The configuration is working properly as files can be imported and exported out of the C:\sapmnt\trans directory. (configuration distributed by STMS -> Overview -> Systems -> Extras -> Distribute TMS Configuration, Folder SAPMNT shared).
    The problem I'm facing with the import of some example transports is given by the hanging import queues. In phase 'Import ABAP Dictionary Objects' I have the following message for almost all objects -> '... was not imported in this step'.
    I tried to solve this issue by running SE38->RDDNEWPP with DDIC user to schedule job RDDIMPDP for TP imports. I also made the config in TP_DOMAIN_NSP.PFL with SYSTEM_PF = C:\SAP\NSP\SYS\profile\DEFAULT.PFL.
    The error is still in logfile SLOG0732.NSP
    ERROR:       The following call returned with exit code 7:
    ERROR:         sapevt.exe SAP_TRIGGER_RDDIMPDP -t name=NSP
    and logfile dev_evt
    ERROR ***: MsSndTypeOnce, rc = -20
    ERROR ***: Event raise failed
    With the exports there is a similar issue in the EXPORT phase, given the note
    0 entries from WDY_APPLICATIONT exported.
    Batch process is available (parameter rdisp/wp_no_btc = 1)
    Profile has been activated by rz10->utilities->import profile->ofactive servers.
    Any ideas what still can be wrong? Does the import export and DDIC activation really work with the sneak preview?
    Thanks
    Christoph

    Hi Peter
    First of all thanks for your advice.
    I did No. 1. 2. 3. steps.
    Step 4. reacts with the folowing error message.
    Transport control program tp ended with error code 02008.
    Errors: error in transportprofile (param missing, unknown).
    My  license expires in four days. I tried to extend it via http://www.sap.com/minisap
    1. System-ID *   
    2. Hardware-Schlüssel (HWID) *   ?
    3.Systemnummer  ?
    What is to be entered in 1 and 2.
    Where should I look for HWID and Sysnr ?
    Thanks a lot again for your help
    With regards
    Fisseha

  • Create a new routing with BAPI BAPI_ROUTING_CREATE via JCo

    I try to create a new routing with BAPI BAPI_ROUTING_CREATE via JCo.
    I filled all necessary parameters. I also realized a commit_work. I get in the RETURN parameter of the BAPI the Message "S 000 Routing N/50001641/01". But the routing isn't in the database. Other JCo programs I wrote (create material master or costumer order) are working very well.
    Have anyone an idea?
    Thanks Jörg
    Here's my coding:
    public void createArbeitsplan() {
              doLogin();
    //          connectionAttributes();
              Plan plan = new Plan();
              for (int i = 0; i < planList.size(); i++)
                   plan = (Plan) planList.get(i);
                   //Ein Function-Objekt erzeugen
                   String bapi = "BAPI_ROUTING_CREATE";
                   JCO.Function savePlan = null;          
                   try { savePlan = this.createFunction(bapi); }
                   catch(Exception ex) { ex.printStackTrace(); System.exit(1); }
                   if(savePlan == null) { System.err.println(bapi + " not found in SAP"); System.exit(1); }
                   //Import und Tabellen füllen
                   // Plankopf
                   JCO.Table headData = savePlan.getTableParameterList().getTable("TASK");
                   headData.appendRow();
                   headData.setValue(plan.kurztext,"DESCRIPTION");
                   headData.setValue("1","TASK_LIST_USAGE");
                   headData.setValue(werks,"PLANT");
                   headData.setValue("4","TASK_LIST_STATUS");
                   headData.setValue("ST","TASK_MEASURE_UNIT");
                   headData.setValue("001","RESP_PLANNER_GROUP");
                   headData.setValue("20070101","VALID_FROM");
                   headData.setValue("20991231","VALID_TO_DATE");
                   headData.setValue("1","LOT_SIZE_FROM");
                   headData.setValue("99999999","LOT_SIZE_TO");
                   // Materialzuordnung
                   JCO.Table materialAlloc = savePlan.getTableParameterList().getTable("MATERIALTASKALLOCATION");
                   materialAlloc.appendRow();
                   materialAlloc.setValue(plan.material,"MATERIAL");
                   materialAlloc.setValue(werks,"PLANT");
                   materialAlloc.setValue("20070101","VALID_FROM");
                   materialAlloc.setValue("20991231","VALID_TO_DATE");
                   materialAlloc.setValue("1","GROUP_COUNTER");
                   // Vorgänge
                   JCO.Table operationData = savePlan.getTableParameterList().getTable("OPERATION");
                   for (int j = 0; j < plan.getAnzahl(); j++) {
                        operationData.appendRow();
                        operationData.setValue(plan.getVorgang(j).vorgang,"ACTIVITY");
                        operationData.setValue(plan.getVorgang(j).steuschl,"CONTROL_KEY");
                        operationData.setValue(plan.getVorgang(j).arbplatz,"WORK_CNTR");
                        operationData.setValue("1111","WORK_CNTR");
                        operationData.setValue(plan.getVorgang(j).text,"DESCRIPTION");
                        operationData.setValue(plan.getVorgang(j).basismenge,"BASE_QUANTITY");
                        operationData.setValue(plan.getVorgang(j).vw1,"STD_VALUE_01");
                        operationData.setValue(plan.getVorgang(j).vw2,"STD_VALUE_02");
                        operationData.setValue(plan.getVorgang(j).vw3,"STD_VALUE_03");
                        operationData.setValue(plan.getVorgang(j).ze1,"STD_UNIT_01");
                        operationData.setValue(plan.getVorgang(j).ze2,"STD_UNIT_02");
                        operationData.setValue(plan.getVorgang(j).ze3,"STD_UNIT_03");
                        operationData.setValue("1","DENOMINATOR");
                        operationData.setValue("1","NOMINATOR");
                        operationData.setValue("20070101","VALID_FROM");
                        operationData.setValue("20991231","VALID_TO_DATE");
                        operationData.setValue("ST","OPERATION_MEASURE_UNIT");
                   // Testflag
                   JCO.Structure test = savePlan.getImportParameterList().getStructure("TESTRUN");
                   test.setValue(" ","BAPIFLAG");
                   //BAPI ausführen (incl. Commit)
                   mConnection.execute(savePlan);
                   JCO.Function commit = null;
                   try {commit = this.createFunction("BAPI_TRANSACTION_COMMIT"); }
                   catch (Exception ex) { ex.printStackTrace();System.exit(1); }
                   JCO.ParameterList input = commit.getImportParameterList();
                   input.setValue("X","WAIT");
                   mConnection.execute(commit);
                   //Messages vom SAP-System holen
                   JCO.Table jcoReturn = savePlan.getTableParameterList().getTable("RETURN");
                   for (int k = 0; k < jcoReturn.getNumRows(); k++)
                        jcoReturn.setRow(i);
    //                    System.out.println(jcoReturn.getField("MESSAGE").getValue());
                        System.out.println(jcoReturn.getField("TYPE").getValue());
                        System.out.println(jcoReturn.getField("NUMBER").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V1").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V2").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V3").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V4").getValue());
                   JCO.Structure output = commit.getExportParameterList().getStructure("RETURN");;
                   System.out.println(output.getString("MESSAGE"));
                   System.out.println(output.getString("TYPE"));
                   System.out.println(output.getString("NUMBER"));
                   System.out.println(output.getString("MESSAGE_V1"));
              closeConnectionToSAP();
              System.exit(1);

    Hi,
    perhaps you could use
    BAPI_HRMASTER_SAVE_REPL_MULT
    Regards
    Bernd

  • Lightroom 4.4 cannot import files exported from CaptureOne Pro8, but LR5 can??

    I am a recent new user to PhaseOne's CaptureOne Pro8 software.  I am using it for some RAW conversions, but still want to use my LR4.4 product to catalog, and further edit, those conversions.
    I have tried exporting TIFF, DNG, and JPG from Pro8, but NONE of those files can be imported by LR4.4  I can selected the file, and then LR hangs on "Importing files...".  Oddly enough, I can move to other LR modules, like Develop, and the software still works, but the import never completes.
    I downloaded a trial LR5.6 via Creative Cloud, and that version of Lightroom imports the JPG files just fine.  I have not tried to see if TIFF or DNG can be imported.
    So my questions come down to :
    Are there any LR4.4 users here who also have CaptureOne Pro8?  Can you import Pro8-exported JPGs into LR4.4?
    Is there any insight as to how LR5.6 handles files differently than LR4.4 that could explain why LR4.4 cannot load these files?
    I have no other issues with any other software package that can read JPGs, only LR4.4.  Keep in mind LR5.6 works fine, as well.
    Hmmm?
    Thanks for any help, insight,
    Mike

    BKKDon - Thank you so much for the Photoshop Family route.  I kinda found myself going in circles on the Adobe support pages, and thought this user-to-user forum was my only option for LR4 support.  Appreciate the link.
    And, I believe you have helped me greatly narrow the problem down.  I was not familiar with JFIF, and now I am.  I was able to find some utilities to essentially strip all of the APP markers within the JFIF, and now I can import those files into LR4.  I suspect that CO7 did not utilize APP marker in the JFIFs, CO8 does, and LR4 stumbles when it sees APP markers.  That's speculation based on how I made the LR4 import work, and not by doing direct inspection of different JPGs or JFIFs.  Thanks for the tip on JFIF, that gave me a lead that panned out.
    Now if I could just figure out why DNG and TIFF seem to be similarly afflicted, LOL.
    -Mike

  • Data import from EBS failed via FDMEE in fdm . Getting error message as "Error connecting to AIF URL.

    FDM Data import from EBS failed via FDMEE after roll back the 11.1.2.3.500 patch . Getting below error message in ERPI Adapter log.
    *** clsGetFinData.fExecuteDataRule @ 2/18/2015 5:36:17 AM ***
    PeriodKey = 5/31/2013 12:00:00 AM
    PriorPeriodKey = 4/30/2013 12:00:00 AM
    Rule Name = 6001
    Execution Mode = FULLREFRESH
    System.Runtime.InteropServices.COMException (0x80040209): Error connecting to AIF URL.
    at Oracle.Erpi.ErpiFdmCommon.ExecuteRule(String userName, String ssoToken, String ruleName, String executionMode, String priorPeriodKey, String periodKey, String& loadId)
    at fdmERPIfinE1.clsGetFinData.fExecuteDataRule(String strERPIUserID, String strDataRuleName, String strExecutionMode, String strPeriodKey, String strPriorPeriodKey)
    Any help Please?
    Thanks

    Hi
    Getting this error in ErpiIntergrator0.log . ODI session ID were not generated in ODI / FDMEE. If I import from FDMEE its importing data from EBS.
    <[ServletContext@809342788[app:AIF module:aif path:/aif spec-version:2.5 version:11.1.2.0]] Servlet failed with Exception
    java.lang.RuntimeException
    at com.hyperion.aif.servlet.FDMRuleServlet.doPost(FDMRuleServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • Importing and Exporting Data with a Clob datatype with HTML DB

    I would like to know what to do and what to be aware of when Importing and Exporting data with a Clob Datatype with HTML DB?

    Colin - what kind of import/export operation would that be, which pages are you referring to?
    Scott

  • Problem with Import and Export Data Wizard

    Downloaded and installed SQL Server Express 2008 R2 today because I want to explore how Access interacts with SQL Server (using my home computer). I'm using Access 2010 (under Windows 7), so the 2008 version of SQL Server Express seemed to be the version
    to use.
    After a couple of false starts, installation appeared to go okay. After the installation. My Start menu listed Microsoft SQL Server 2008 and Microsoft SQL Server 2008 R2. The latter listed Import and Export Data (64-bit). When I clicked that, the first Import
    and Export Data Wizard page was displayed. I wasn't ready at that time to explore the wizard, so I closed it. An hour or so later I again attempted to open the Import and Export Data wizard. This time, the wizard didn't open. Instead this error message was
    displayed: "The SSIS Runtime object could not be created. Verify that DTS.dll is available and registered."
    I found DTS.dll on my computer at C:\Program Files\Microsoft SQL Server\100\DTS\Binn, so the file is available, but don't know whether it is registered.
    How can I correct this problem?

    First can you please post all log file errors
    >> I can't really give you a solution or specific recommendation since I did not saw this error yet myself, but on your own risk you can try:
    1. You may try to just register 'dts.dll' using regsvr32.exe, but this error may indicate a bigger problem with setup.
    If you are running SQL Server 64bit then try running this at the command prompt: %windir%\syswow64\regsvr32 "%ProgramFiles(x86)%\Microsoft SQL Server\90\dts\binn\dts.dll"
    2. You can try reinstall from start (In this case you have to make sure that you un-install all)
    [Personal Site] [Blog] [Facebook]

  • What is the best way to import and export footage from the 5D Mark II?

    Hello,
    I've just finished shooting what I am considering to be my directorial masterpiece.  Shot it on the Canon 5D (1080p, 24fps), and the footage looks amazing.  Now I am ready to start editing and have been using premiere lately, but I have yet to figure out the proper pipeline.  I want to know the best way to retain resolution before I delve into this project.
    My questions:
    1)  What is the best way to start a new project and import the footage without having to render whilst editing, so as to retain all resolution and originality of the source footage?
    2)  What is the best way/ codec/ format to export this same footage once editing is complete so as to retain that crisp 1080p for which the 5D is so recognized?
    3)  What is the best way/ codec/ format to import and export/ render between premiere and after effects?  I am speaking mostly of vfx and color correction.  I also have some 30fps footage that I intend to slow down in AE and then import into premiere.
    I know this is pretty broad, but as a solo filmmaker I really need someone's guidance.  I rarely ever finish my films with the same, crisp look as the footage.  I need pipeline help, and really appreciate it!

    ascreenwriter wrote:
    Hello,
    I've just finished shooting what I am considering to be my directorial masterpiece.  Shot it on the Canon 5D (1080p, 24fps), and the footage looks amazing.  Now I am ready to start editing and have been using premiere lately, but I have yet to figure out the proper pipeline.  I want to know the best way to retain resolution before I delve into this project.
    My questions:
    1)  What is the best way to start a new project and import the footage without having to render whilst editing, so as to retain all resolution and originality of the source footage?
    2)  What is the best way/ codec/ format to export this same footage once editing is complete so as to retain that crisp 1080p for which the 5D is so recognized?
    3)  What is the best way/ codec/ format to import and export/ render between premiere and after effects?  I am speaking mostly of vfx and color correction.  I also have some 30fps footage that I intend to slow down in AE and then import into premiere.
    I know this is pretty broad, but as a solo filmmaker I really need someone's guidance.  I rarely ever finish my films with the same, crisp look as the footage.  I need pipeline help, and really appreciate it!
    1. Follow the advice above. Also use the Media Browser to import the footage in case you have spanned media files. Import files with the Media Browser.
    2. It largely depends on what you wish to ouput to: Blu-ray, web, etc. This FAQ gives the best answer: What are the best export settings?
    3. Use the Replace with Adobe After Effects Composition function.

  • Looking for a program that can handel import and export of palm doc files

    I am looking for a program that can handel the import and export of palm doc Files that can convert them to to either txt or RTF files for Vista 32, running Palm Desktop 7.1.
    Could anyone give me a few suggestions of any plug-ins that would be good me?
    Hearns
    Post relates to: Palm IIIxe
    This question was solved.
    View Solution.

    Ok, you need to clean uninstall Palm desktop 6.2. Install Palm desktop 4.1.4 and download and install documents to go version 6.
    Here are the clean uninstall instructioins for Vista.
    You should first make a copy of your data to have just in case something
    happens. You can find your data files by going to Start --> Documents -->
    Palm OS Desktop. Highlight your Palm Desktop username and right click and
    copy. Then go to your PC desktop right click on a blank spot and select paste.
    If this is the first time you are installing Palm desktop and encountering a problem, skip the previous step.
    Now you want to uninstall Palm Desktop and remove everything that has to do
    with Palm Desktop from your computer.
    Go to the following locations on the PC and delete the folders listed below.
    C:\Program Files\Palm or Palm One
    C:\Users\[Vista Login Name]\appdata\local\virtualstore\Program Files\Palm or
    PalmOne
    C:\Users\[Vista Login Name]\appdata
    *Note you may need to view hidden folders to get to appdata. To do that go
    into your control panel and open folder options. Go to view tab and uncheck
    hide hidden files.
    Once this is done you will need to delete some registry keys from your PC Operating System.
    Word of warning, going here and deleting the wrong thing can cause your PC
    from starting up, crashing and deletion of programs and data. If you feel
    you are unsure of yourself, see if you have a friend that can help you or a
    PC technician that you can pay to help you. This procedure will show them everything they need to delete. To make sure we have a good copy of the current registry, we need to do a backup of the Registry.
    Go to start on the PC, in the search field type "regedit.exe" without quotes.
    Highlight COMPUTER, go to File --> Export. Should pop up with a Save As box.
    Current location is fine, should be in My Documents or save to a location you will remember. In the file name on the bottom type "backup[todaysdate]" i.e. backup07072008. Next, the hard part.
    The easiest way to make sure your working with the correct key, highlight the key i.e. palm quick install, and press delete on your keyboard. It will ask you, are you sure. Say yes. Do the same thing for all keys below.
    If you make a mistake, stop what you are doing. And call a PC technician.
    BUT do not turn off your computer.
    The reg keys are as follows (Note: some of theses reg keys will not be here
    but if they are delete them)
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Palm Quick Install
    * HKEY_CURRENT_USER\Software\U.S. Robotics\PalmOne File Transfer
    * HKEY_CURRENT_USER\Software\U.S. Robotics\Pilot Desktop
    * HKEY_CURRENT_USER\Software\Palm
    * HKEY_CURRENT_USER\Software\Palm, Inc.
    * HKEY_CURRENT_USER\Software\PalmDesktopAutorun
    * HKEY_CURRENT_USER\Software\palmOne
    * HKEY_CURRENT_USER\Software\PalmSource
    * HKEY_LOCAL_MACHINE\Software\PalmSource or anything else that says palm
    Next reboot your computer.
    Then reinstall your palm desktop from the CD and do a hotsync. Use the username that is on the handheld.

  • Error while importing the export in new environment

    All,
    I have getting AIP-11052: Writing following objects: Transport Protocol Parameter failed due to following constraint violation: TRANSPORTPROTOCOLPARAMETER_UK. UNIQUE CONSTRAINT VIOLATION
    while importing the export. Has anyone encountered this issue? or Can anyone provide pointers as to why this might be occuring?
    Any help would be greatly appreciated!
    Dipal

    Hello Dipal,
    The erros seems to be because of some UNIQUE key constraint issue while importing the export. This may be due to some conflicting import data which is causing this voilation. If it is a possibility, please purge the entire repository and have a clean import or else please analyse the UI log to find some more details.
    Rgds,Ramesh

  • Error message when importing data using Import and export wizard

    Getting below error message when importing data using IMPORT and EXPORT WIZARD
    Error 0xc0202009: Data Flow Task 1: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    <dir>
    <dir>
    Messages
    Error 0xc0202009: Data Flow Task 1: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft SQL Server Native Client 11.0"  Hresult: 0x80004005  Description: "Could not allocate a new page for database REPORTING' because of insufficient disk space in filegroup 'PRIMARY'.
    Create the necessary space by dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.".
    (SQL Server Import and Export Wizard)
    Error 0xc0209029: Data Flow Task 1: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  The "Destination - Buyer_.Inputs[Destination Input]" failed because error code 0xC020907B occurred, and the error row disposition on "Destination
    - Buyer_First_Qtr.Inputs[Destination Input]" specifies failure on error. An error occurred on the specified object of the specified component.  There may be error messages posted before this with more information about the failure.
    (SQL Server Import and Export Wizard)
    Error 0xc0047022: Data Flow Task 1: SSIS Error Code DTS_E_PROCESSINPUTFAILED.  The ProcessInput method on component "Destination - Buyer" (28) failed with error code 0xC0209029 while processing input "Destination Input" (41). The
    identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.  There may be error messages posted before this with more information
    about the failure.
    (SQL Server Import and Export Wizard)
    Error 0xc02020c4: Data Flow Task 1: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020.
    (SQL Server Import and Export Wizard)
    </dir>
    </dir>
    Error 0xc0047038: Data Flow Task 1: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on Source - Buyer_First_Qtr returned error code 0xC02020C4.  The component returned a failure code when the pipeline engine called PrimeOutput().
    The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
    (SQL Server Import and Export Wizard)
    Smash126

    Hi Smash126,
    Based on the error message” Could not allocate a new page for database REPORTING' because of insufficient disk space in filegroup 'PRIMARY'. Create the necessary space by dropping objects in the filegroup, adding additional files to the filegroup, or setting
    autogrowth on for existing files in the filegroup”, we can know that the issue is caused by the there is no sufficient disk space in filegroup 'PRIMARY' for the ‘REPORTING’ database.
    To fix this issue, we can add additional files to the filegroup by add a new file to the PRIMARY filegroup on Files page, or setting Autogrowth on for existing files in the filegroup to increase the necessary space.
    The following document about Add Data or Log Files to a Database is for your reference:
    http://msdn.microsoft.com/en-us/library/ms189253.aspx
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Iphoto crashes when importing or exporting

    I try to solve this for a longtime on the is Mac. Nothing works, reinstall of iphoto 08 from backup, disc, creating new library etc. iphoto still crashes when importing or exporting images. edit etc works fine for images already imported. iphoto also crashes when trying to rebuild library with iphoto manager. First time ever that I had such a hideous problem with Apple software. Please advice.
    Process: iPhoto [402]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier: com.apple.iPhoto
    Version: 7.1.5 (7.1.5)
    Build Info: iPhotoProject-3780000~2
    Code Type: PPC (Native)
    Parent Process: launchd [147]
    Interval Since Last Report: 373439 sec
    Crashes Since Last Report: 15
    Per-App Interval Since Last Report: 12951 sec
    Per-App Crashes Since Last Report: 6
    Date/Time: 2010-03-16 12:48:34.110 -0400
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: 4EA7FDBB-D171-42C4-AA95-E124D9338F19
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000005
    Crashed Thread: 22
    Thread 0:
    0 libSystem.B.dylib 0x95dd51f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x95ddc11c mach_msg + 56
    2 com.apple.CoreFoundation 0x901de394 CFRunLoopRunSpecific + 1812
    3 com.apple.HIToolbox 0x95662b14 RunCurrentEventLoopInMode + 264
    4 com.apple.HIToolbox 0x95662938 ReceiveNextEventCommon + 412
    5 com.apple.HIToolbox 0x95662778 BlockUntilNextEventMatchingListInMode + 84
    6 com.apple.AppKit 0x94075244 _DPSNextEvent + 596
    7 com.apple.AppKit 0x94074bfc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    8 com.apple.AppKit 0x9406e89c -[NSApplication run] + 744
    9 com.apple.AppKit 0x9403f298 NSApplicationMain + 440
    10 com.apple.iPhoto 0x00003554 0x1000 + 9556
    11 com.apple.iPhoto 0x00003258 0x1000 + 8792
    Thread 1:
    0 libSystem.B.dylib 0x95ddbc08 _semwaitsignal + 8
    1 libSystem.B.dylib 0x95ddba1c nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x95ddb94c usleep$UNIX2003 + 68
    3 com.apple.AppKit 0x940d0e64 -[NSUIHeartBeat _heartBeatThread:] + 1840
    4 com.apple.Foundation 0x94b67d84 _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x95dd51f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x95ddc11c mach_msg + 56
    2 com.apple.CoreFoundation 0x901de394 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x901dec1c CFRunLoopRun + 60
    4 com.apple.DesktopServices 0x93f16520 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 104
    5 ...ple.CoreServices.CarbonCore 0x95206428 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x95dd51f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x95ddc11c mach_msg + 56
    2 com.apple.CoreFoundation 0x901de394 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x901dec1c CFRunLoopRun + 60
    4 com.apple.DesktopServices 0x93f1669c TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 176
    5 ...ple.CoreServices.CarbonCore 0x95206428 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x95ddbc0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x95e1846c pthread_condwait + 1580
    2 ...ple.CoreServices.CarbonCore 0x95208644 TSWaitOnCondition + 132
    3 ...ple.CoreServices.CarbonCore 0x951e69c0 TSWaitOnConditionTimedRelative + 204
    4 ...ple.CoreServices.CarbonCore 0x95208200 MPWaitOnQueue + 272
    5 com.apple.DesktopServices 0x93f21bf4 TNodeSyncTask::SyncTaskProc(void*) + 88
    6 ...ple.CoreServices.CarbonCore 0x95206428 PrivateMPEntryPoint + 76
    7 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x95dd5278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x95e18368 pthread_condwait + 1320
    2 ...ple.CoreServices.CarbonCore 0x951e69e4 TSWaitOnConditionTimedRelative + 240
    3 ...ple.CoreServices.CarbonCore 0x95208200 MPWaitOnQueue + 272
    4 com.apple.DesktopServices 0x93f28f68 TPropertyTask::PropertyTaskProc(void*) + 100
    5 ...ple.CoreServices.CarbonCore 0x95206428 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x95e16904 kevent + 12
    1 com.apple.CoreFoundation 0x901b59b0 _monitor_file_descriptor_ + 88
    Thread 7:
    0 libSystem.B.dylib 0x95dd5278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x95e18368 pthread_condwait + 1320
    2 ...ple.CoreServices.CarbonCore 0x951e69e4 TSWaitOnConditionTimedRelative + 240
    3 ...ple.CoreServices.CarbonCore 0x95208200 MPWaitOnQueue + 272
    4 com.apple.DesktopServices 0x93f238b4 TFolderSizeTask::FolderSizeTaskProc(void*) + 88
    5 ...ple.CoreServices.CarbonCore 0x95206428 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 8:
    0 libSystem.B.dylib 0x95e38d74 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x901e9808 __CFSocketManager + 764
    Thread 9:
    0 libSystem.B.dylib 0x95ddbc0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x95e1846c pthread_condwait + 1580
    2 com.apple.QuartzCore 0x960c4110 fefragmentthread + 48
    3 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x95ddbc0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x95e1846c pthread_condwait + 1580
    2 com.apple.QuartzCore 0x960c4110 fefragmentthread + 48
    3 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 11:
    0 libSystem.B.dylib 0x95ddbc0c _semwaitsignal + 12
    1 libSystem.B.dylib 0x95e1846c pthread_condwait + 1580
    2 com.apple.QuartzCore 0x960c4110 fefragmentthread + 48
    3 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 12:
    0 libSystem.B.dylib 0x95dd51f8 machmsgtrap + 8
    1 libSystem.B.dylib 0x95ddc11c mach_msg + 56
    2 com.apple.CoreFoundation 0x901de394 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x901dec1c CFRunLoopRun + 60
    4 com.apple.iLifeMediaBrowser 0x00939cd4 -[ILMediaBrowserPathWatcher(FSEvents) iLMBPathWatcherRunLoop] + 724
    5 com.apple.Foundation 0x94b67d84 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 13:
    0 libSystem.B.dylib 0x95dd5278 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x95e18368 pthread_condwait + 1320
    2 ...ple.CoreServices.CarbonCore 0x951e69e4 TSWaitOnConditionTimedRelative + 240
    3 ...ple.CoreServices.CarbonCore 0x95208200 MPWaitOnQueue + 272
    4 com.apple.DesktopServices 0x93f28f68 TPropertyTask::PropertyTaskProc(void*) + 100
    5 ...ple.CoreServices.CarbonCore 0x95206428 PrivateMPEntryPoint + 76
    6 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 14:
    0 libSystem.B.dylib 0x95dd5258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x95e18378 pthread_condwait + 1336
    2 com.apple.iPhoto 0x00280a20 0x1000 + 2619936
    Thread 15:
    0 libSystem.B.dylib 0x95dd5258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x95ddc4b4 pthreadmutexlock + 648
    2 com.apple.ColorSync 0x9501ee78 CMMMPManager::Ready(CMMColorWorldData*, unsigned long) + 380
    3 com.apple.ColorSync 0x95012d88 DoMatchBitmap + 1148
    4 com.apple.ColorSync 0x9501244c CWMatchBitmap + 200
    5 libCSync.A.dylib 0x94ffa158 ConvertImageGeneric + 164
    6 libCSync.A.dylib 0x94ff6c0c CMSTransformConvertData + 96
    7 com.apple.CoreGraphics 0x9399e78c CGColorTransformConvertData + 172
    8 com.apple.CoreGraphics 0x9399abc4 imgcolormatchread + 604
    9 com.apple.CoreGraphics 0x939985b4 imgdatalock + 4840
    10 com.apple.CoreGraphics 0x939968d4 CGSImageDataLock + 200
    11 libRIP.A.dylib 0x92b46ff4 ripc_AcquireImage + 2608
    12 libRIP.A.dylib 0x92b31f50 ripc_DrawImage + 2892
    13 com.apple.CoreGraphics 0x93996624 CGContextDrawImage + 396
    14 com.apple.iPhoto 0x0020650c 0x1000 + 2118924
    15 com.apple.iPhoto 0x002041d8 0x1000 + 2109912
    16 com.apple.iPhoto 0x001702fc 0x1000 + 1503996
    17 com.apple.iPhoto 0x0016c644 0x1000 + 1488452
    18 com.apple.iPhoto 0x0016c870 0x1000 + 1489008
    19 com.apple.iPhoto 0x000f73a0 0x1000 + 1008544
    20 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    21 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 16:
    0 libSystem.B.dylib 0x95dd5258 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x95ddc4b4 pthreadmutexlock + 648
    2 com.apple.ColorSync 0x9501ee78 CMMMPManager::Ready(CMMColorWorldData*, unsigned long) + 380
    3 com.apple.ColorSync 0x95012d88 DoMatchBitmap + 1148
    4 com.apple.ColorSync 0x9501244c CWMatchBitmap + 200
    5 libCSync.A.dylib 0x94ffa158 ConvertImageGeneric + 164
    6 libCSync.A.dylib 0x94ff6c0c CMSTransformConvertData + 96
    7 com.apple.CoreGraphics 0x9399e78c CGColorTransformConvertData + 172
    8 com.apple.CoreGraphics 0x9399abc4 imgcolormatchread + 604
    9 com.apple.CoreGraphics 0x939985b4 imgdatalock + 4840
    10 com.apple.CoreGraphics 0x939968d4 CGSImageDataLock + 200
    11 libRIP.A.dylib 0x92b46ff4 ripc_AcquireImage + 2608
    12 libRIP.A.dylib 0x92b31f50 ripc_DrawImage + 2892
    13 com.apple.CoreGraphics 0x93996624 CGContextDrawImage + 396
    14 com.apple.iPhoto 0x0020650c 0x1000 + 2118924
    15 com.apple.iPhoto 0x002041d8 0x1000 + 2109912
    16 com.apple.iPhoto 0x001702fc 0x1000 + 1503996
    17 com.apple.iPhoto 0x0016c644 0x1000 + 1488452
    18 com.apple.iPhoto 0x0016c870 0x1000 + 1489008
    19 com.apple.iPhoto 0x000f73a0 0x1000 + 1008544
    20 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    21 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 17:
    0 com.apple.ColorSync 0x9501c894 CMM8Bit3ChanDecoder::DoDecode(CMMMinBits const&, CMMRuntimeInfo*, unsigned long) + 328
    1 com.apple.ColorSync 0x95013800 CMMProcessBitmap(CMMBitmapParams*) + 1664
    2 com.apple.ColorSync 0x95046534 CMMMPManager::ActivateTask(unsigned long, CMMMPData*, unsigned long, CMMBitmapParams*) + 380
    3 com.apple.ColorSync 0x950464b0 CMMMPManager::ActivateTask(unsigned long, CMMMPData*, unsigned long, CMMBitmapParams*) + 248
    4 com.apple.ColorSync 0x950464b0 CMMMPManager::ActivateTask(unsigned long, CMMMPData*, unsigned long, CMMBitmapParams*) + 248
    5 com.apple.ColorSync 0x950464b0 CMMMPManager::ActivateTask(unsigned long, CMMMPData*, unsigned long, CMMBitmapParams*) + 248
    6 com.apple.ColorSync 0x9504672c CMMMPManager::ProcessBitmap(CMMBitmapParams*) + 296
    7 com.apple.ColorSync 0x95012dc0 DoMatchBitmap + 1204
    8 com.apple.ColorSync 0x9501244c CWMatchBitmap + 200
    9 libCSync.A.dylib 0x94ffa158 ConvertImageGeneric + 164
    10 libCSync.A.dylib 0x94ff6c0c CMSTransformConvertData + 96
    11 com.apple.CoreGraphics 0x9399e78c CGColorTransformConvertData + 172
    12 com.apple.CoreGraphics 0x9399abc4 imgcolormatchread + 604
    13 com.apple.CoreGraphics 0x939985b4 imgdatalock + 4840
    14 com.apple.CoreGraphics 0x939968d4 CGSImageDataLock + 200
    15 libRIP.A.dylib 0x92b46ff4 ripc_AcquireImage + 2608
    16 libRIP.A.dylib 0x92b31f50 ripc_DrawImage + 2892
    17 com.apple.CoreGraphics 0x93996624 CGContextDrawImage + 396
    18 com.apple.iPhoto 0x0020650c 0x1000 + 2118924
    19 com.apple.iPhoto 0x002041d8 0x1000 + 2109912
    20 com.apple.iPhoto 0x001702fc 0x1000 + 1503996
    21 com.apple.iPhoto 0x0016c644 0x1000 + 1488452
    22 com.apple.iPhoto 0x0016c870 0x1000 + 1489008
    23 com.apple.iPhoto 0x000f73a0 0x1000 + 1008544
    24 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    25 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 18:
    0 libSystem.B.dylib 0xffff8a48 __memcpy + 680 (cpu_capabilities.h:237)
    1 com.apple.ImageIO.framework 0x91eb6f38 CGImageReadGetBytesAtOffset + 244
    2 com.apple.ImageIO.framework 0x91eb87b0 CGImageReadSessionGetBytes + 40
    3 com.apple.ImageIO.framework 0x91ebe48c myTIFFReadProc + 276
    4 libTIFF.dylib 0x95597d18 TIFFReadRawStrip1 + 176
    5 libTIFF.dylib 0x95597b14 TIFFFillStrip + 384
    6 libTIFF.dylib 0x95597884 cgTIFFReadEncodedStrip + 224
    7 com.apple.ImageIO.framework 0x91ee4dd4 getBandProcTIFF + 2164
    8 com.apple.ImageIO.framework 0x91f24c6c faultBand_cb + 80
    9 com.apple.CoreGraphics 0x93b489dc faultBlockAcquireBytePointer + 292
    10 com.apple.CoreGraphics 0x9399b2c4 CGAccessSessionGetBytePointer + 64
    11 com.apple.CoreGraphics 0x939d3e38 imgrawaccess + 84
    12 com.apple.CoreGraphics 0x9399aa28 imgcolormatchread + 192
    13 com.apple.CoreGraphics 0x939985b4 imgdatalock + 4840
    14 com.apple.CoreGraphics 0x939968d4 CGSImageDataLock + 200
    15 libRIP.A.dylib 0x92b46ff4 ripc_AcquireImage + 2608
    16 libRIP.A.dylib 0x92b31f50 ripc_DrawImage + 2892
    17 com.apple.CoreGraphics 0x93996624 CGContextDrawImage + 396
    18 com.apple.iPhoto 0x0020650c 0x1000 + 2118924
    19 com.apple.iPhoto 0x002041d8 0x1000 + 2109912
    20 com.apple.iPhoto 0x001702fc 0x1000 + 1503996
    21 com.apple.iPhoto 0x0016c644 0x1000 + 1488452
    22 com.apple.iPhoto 0x0016c870 0x1000 + 1489008
    23 com.apple.iPhoto 0x000f73a0 0x1000 + 1008544
    24 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    25 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 19:
    0 com.apple.ColorSync 0x9501c840 CMM8Bit3ChanDecoder::DoDecode(CMMMinBits const&, CMMRuntimeInfo*, unsigned long) + 244
    1 com.apple.ColorSync 0x95013800 CMMProcessBitmap(CMMBitmapParams*) + 1664
    2 com.apple.ColorSync 0x95046be0 CMMConvTask(void*) + 84
    3 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 20:
    0 com.apple.ColorSync 0x9501c69c CMMMtxOnly::ConvertMin(CMM3x3Type, CMM3x1Type, CMMMinBuffer&, unsigned long, unsigned long) const + 156
    1 com.apple.ColorSync 0x9502048c CMMConvMatrixTemplate<CMMMtxOnly, CMMConvRGBToRGBMatrix>::Convert(CMMMinBits&, CMMRuntimeInfo*, unsigned long, unsigned long) const + 144
    2 com.apple.ColorSync 0x95013800 CMMProcessBitmap(CMMBitmapParams*) + 1664
    3 com.apple.ColorSync 0x95046be0 CMMConvTask(void*) + 84
    4 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 21:
    0 com.apple.ColorSync 0x9501c858 CMM8Bit3ChanDecoder::DoDecode(CMMMinBits const&, CMMRuntimeInfo*, unsigned long) + 268
    1 com.apple.ColorSync 0x95013800 CMMProcessBitmap(CMMBitmapParams*) + 1664
    2 com.apple.ColorSync 0x95046be0 CMMConvTask(void*) + 84
    3 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 22 Crashed:
    0 com.apple.CoreFoundation 0x901e0054 CFRetain + 68
    1 com.apple.iPhoto 0x00200c28 0x1000 + 2096168
    2 com.apple.iPhoto 0x000fc4c4 0x1000 + 1029316
    3 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    4 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 23:
    0 com.apple.CoreGraphics 0x939ef590 resamplebyte_h_4cppvector + 608
    1 com.apple.CoreGraphics 0x939ef1b0 resample_band + 752
    2 com.apple.CoreGraphics 0x939eed24 imginterpolateread + 788
    3 com.apple.CoreGraphics 0x939985b4 imgdatalock + 4840
    4 com.apple.CoreGraphics 0x939968d4 CGSImageDataLock + 200
    5 libRIP.A.dylib 0x92b46ff4 ripc_AcquireImage + 2608
    6 libRIP.A.dylib 0x92b31f50 ripc_DrawImage + 2892
    7 com.apple.CoreGraphics 0x93996624 CGContextDrawImage + 396
    8 com.apple.iPhoto 0x0016e6d8 0x1000 + 1496792
    9 com.apple.iPhoto 0x00185b40 0x1000 + 1592128
    10 com.apple.iPhoto 0x000fc4c4 0x1000 + 1029316
    11 com.apple.iPhoto 0x00280a94 0x1000 + 2620052
    12 libSystem.B.dylib 0x95e170c4 pthreadstart + 316
    Thread 22 crashed with PPC Thread State 32:
    srr0: 0x901e0054 srr1: 0x0200f030 dar: 0x00000005 dsisr: 0x40000000
    r0: 0x00000000 r1: 0xf0a48a00 r2: 0xa0050018 r3: 0x00000000
    r4: 0x00000000 r5: 0x00000000 r6: 0xa053e13c r7: 0x00000065
    r8: 0x00000065 r9: 0x00000454 r10: 0x00581ba1 r11: 0x00690030
    r12: 0x901e0010 r13: 0x00000000 r14: 0x00000000 r15: 0x00690000
    r16: 0x00000001 r17: 0x006d0000 r18: 0x00000001 r19: 0x27366dd0
    r20: 0x27034344 r21: 0x2d8a7ee0 r22: 0x00fda6a0 r23: 0x273cdf30
    r24: 0x00000001 r25: 0x2d8a34f0 r26: 0x54494646 r27: 0x2d8a34f0
    r28: 0x00000000 r29: 0xa053e13c r30: 0x00000000 r31: 0x901e0018
    cr: 0x28002482 xer: 0x20000000 lr: 0x901e0018 ctr: 0x901e0010
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x68bff7 com.apple.iPhoto 7.1.5 (7.1.5) <884c4c72b19c493c8afb3e5ffeffdcab> /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x76f000 - 0x83dff5 com.apple.DiscRecording 4.0.7 (4070.4.1) <73f6a269ffb9718fa9f165da9f2a5eb1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x8a4000 - 0x8ceffb com.apple.DiscRecordingUI 4.0.7 (4070.4.1) <37cb0b8d9ad4e211a9b075ae9a92ed74> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x8eb000 - 0x8edfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x8f3000 - 0x8fdfe3 com.apple.UpgradeChecker 1.0 (1.0) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x905000 - 0x971ffb com.apple.iLifeMediaBrowser 2.1.5 (368) <b0b43e4537e6fc11faf3eaab3a821112> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9bb000 - 0xa5cfdf com.apple.DotMacKit 50 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0xacb000 - 0xd03ffb com.apple.MessageFramework 3.6 (936) <720ddccc257045019d278c4efccc31ba> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0xe45000 - 0xe45fff com.apple.AppleAppSupport 1.5 (1.5) /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0xe49000 - 0xe6aff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0xe72000 - 0xe98fff com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <3abfafbb3982f8c148b49a9c3b35b1f9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x265b5000 - 0x2686fff3 com.apple.RawCamera.bundle 2.3.0 (505) <197b6e31b76845c836691a54350bd0fc> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x27212000 - 0x2721effe com.apple.URLMount 3.1.1 (3.1.1) <ce72e6d656560960643613ba017360c1> /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x27226000 - 0x27227ffb ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x27bbb000 - 0x27bc5fe7 com.apple.BookService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x27bce000 - 0x27c45fef com.apple.NetServices.NetServices 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x27c9a000 - 0x27ca2fd7 com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x27caa000 - 0x27cadfd7 com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x27cb3000 - 0x27cbcfcf com.apple.CalendarsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x27cc5000 - 0x27ccefd7 com.apple.CardsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x27cd7000 - 0x27cdcfd7 com.apple.NetSlidesService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x27ce3000 - 0x27cedff3 com.apple.PrintsService 6.0 (6.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x27e2b000 - 0x27e31fff libCGXCoreImage.A.dylib ??? (???) <f4166febf13e9b7c3342206cd8fa0853> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x27ee8000 - 0x27f4cfef +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x27f5a000 - 0x280bbfef +com.elgato.mpegsupport EyeTV MPEG Support 1.0.2 (build 28) (1.0.2) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x2812b000 - 0x281aaff7 +net.sourceforge.webcam-osx.common 0.9.0 (0.9.0) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0x2833f000 - 0x28341ffd com.apple.textencoding.unicode 2.2 (2.2) <483d06bdf16bdbbad53efcea4fcfb688> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x28351000 - 0x28358fff com.apple.iLMBAperturePlugin 2.1.5 (127) <2d5d2c3e276faa64c6125a430b0c16fd> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x2835f000 - 0x28360fff com.apple.iLMBAppDefPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x28365000 - 0x28366fff com.apple.iLMBFolderPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x2836b000 - 0x2836ffff com.apple.iLMBGarageBandPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x28375000 - 0x28380fff com.apple.iLMBiMoviePlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x28f8e000 - 0x28f9effb com.apple.iLMBiPhoto8Plugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x28fa7000 - 0x28faffff com.apple.iLMBiPhotoPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x28fb6000 - 0x28fbefff com.apple.iLMBiTunesPlugin 2.1.5 (127) /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x28fc5000 - 0x28fc7fff com.apple.iLMBMoviesFolderPlugin 2.1.5 (127) <c65a0f21e4d0421b97f266c50d524d0b> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x28fcd000 - 0x28fcffff com.apple.iLMBPhotoBoothPlugin 2.1.5 (127) <285ac735b39e6bef3c060435e27a287c> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x29100000 - 0x291c8fff com.apple.iTunesAccess 9.0.3 (9.0.3) <e318bedfeb61edec231611f262985a2f> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <89a0055b0e7ea2db881b73c6e63bc774> /usr/lib/dyld
    0x90003000 - 0x9002afff libcups.2.dylib ??? (???) <640068d6a91267e0d6e31afdac1c4a03> /usr/lib/libcups.2.dylib
    0x9002b000 - 0x900e2fff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x900e3000 - 0x9016bffb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <6fc8a8cb43506b57b951da899a55d3b9> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9016c000 - 0x90174ffb libCGATS.A.dylib ??? (???) <72ecb94f23cdc622a277671b4976a7d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90175000 - 0x9029aff3 com.apple.CoreFoundation 6.5.7 (476.19) <dee0f0024f3bf976cfa0a0816e8aa338> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902cd000 - 0x905f6fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x905f7000 - 0x9067ffff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90680000 - 0x90793fff com.apple.PubSub 1.0.4 (65.12.1) <691f9f77a7a48c3770e0a264fb5bc51d> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90794000 - 0x90819fff libsqlite3.0.dylib ??? (???) <daf55b073488086ef5b9a3781be53f14> /usr/lib/libsqlite3.0.dylib
    0x9081a000 - 0x90844ff7 libssl.0.9.7.dylib ??? (???) <2aafe2efc0fb9868cb630ac50b5892b4> /usr/lib/libssl.0.9.7.dylib
    0x9093c000 - 0x90ef6fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90ef7000 - 0x90f12ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <408eb07010ed69f4c94353cac76c84c6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90f13000 - 0x90f14fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x90f15000 - 0x90f3dfff libxslt.1.dylib ??? (???) <bb985380f353bbc7ce694d56884ea156> /usr/lib/libxslt.1.dylib
    0x90f3e000 - 0x90f70fff com.apple.bom 9.0.1 (136.1.1) <1399341d4cd4b8d4c560e683bc81d73c> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90f71000 - 0x91054fff libobjc.A.dylib ??? (???) <a1d4be2eed463c6799b6a1447fde72ba> /usr/lib/libobjc.A.dylib
    0x91055000 - 0x911f6ff7 com.apple.QuartzComposer 2.1 (106.13) <6dd1df71cb588b1b9ceb0c5bbf32e842> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x911f7000 - 0x911f7ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x911f8000 - 0x91364ff9 com.apple.AddressBook.framework 4.1.2 (702) <00009729166ef5c0294f864e1c4e54c9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91365000 - 0x91415fff edu.mit.Kerberos 6.0.13 (6.0.13) <2ed20a450576465ee4f9c317b8ce8c44> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91416000 - 0x91432ffb com.apple.openscripting 1.2.8 (???) <01f86cdb8f7347d2f3f13066e954acb6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91433000 - 0x91435ffd libRadiance.dylib ??? (???) <304e574d5de8d26630c4c516cc6e47fb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91436000 - 0x91441fff com.apple.dotMacLegacy 3.1 (246) <57424b69415f7e00365e1865bf11d209> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x91442000 - 0x91515fff com.apple.CoreServices.OSServices 228 (228) <8610aed4edbd5d21e887a68c32b5c216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91516000 - 0x91600fff libxml2.2.dylib ??? (???) <c16d0fbbf8fd6b30695cd3c930355066> /usr/lib/libxml2.2.dylib
    0x91601000 - 0x91602ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91619000 - 0x91639ff7 libJPEG.dylib ??? (???) <bcc63fc19e0a5fa3d4b411f0de1d5851> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9163a000 - 0x917fcff4 com.apple.CoreAUC 3.08.0 (3.08.0) <9d8d7368e2d3b11318a3556c6d4902a1> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x917fd000 - 0x9181bfff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9181c000 - 0x91822ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91823000 - 0x91826ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91aa4000 - 0x91bfbff7 com.apple.JavaScriptCore 5531.22 (5531.22.5) <1fcfa75230382de3407e47518205e0db> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91bfc000 - 0x91cafffc com.apple.CFNetwork 438.14 (438.14) <6e213ab40eabfc276ca46a7c7cfad01a> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91cb0000 - 0x91d11fff com.apple.CoreText 2.0.4 (???) <ebcc2c7e9b0bc10016af530d82a11f03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91d1d000 - 0x91d6bfff com.apple.framework.familycontrols 1.0.4 (1.0.4) <a3dfe9950439159293ee5815315d279b> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91d6c000 - 0x91eb3ffb com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91eb4000 - 0x92000fff com.apple.ImageIO.framework 2.0.7 (2.0.7) <c466caa621b9fa7431877610c21e39a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92001000 - 0x92004fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92005000 - 0x92030ff7 libauto.dylib ??? (???) <a64d088b2d17e013b9ee5a08d3a20d33> /usr/lib/libauto.dylib
    0x92031000 - 0x92145ffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92146000 - 0x92478ff7 com.apple.QuickTime 7.6.4 (1327.73) <2a47a570627b516ad5d7e2ee611c49fa> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92479000 - 0x92662fff com.apple.security 5.0.6 (37592) <75e10021fca58a7274de9a365010049e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92663000 - 0x926a2fff com.apple.DAVKit 3.0.6 (661) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x926a3000 - 0x92ad1ffe libGLProgrammability.dylib ??? (???) <5d52750ec9e438b25d3a4db51361fa2b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92ad2000 - 0x92aeeffb libPng.dylib ??? (???) <036c49544cb7b1d09d5e0185a1e26f7d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92af5000 - 0x92b11fff com.apple.IMFramework 4.0.8 (584) <c700ba51b41e931a186ebff34b250f15> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x92b12000 - 0x92b21fff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <305892aafaceb4e31915f0d759ef7e6d> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x92b26000 - 0x92b63fff libRIP.A.dylib ??? (???) <a710b7ef58700a54a39e7738dd804e57> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92b64000 - 0x9378ffef com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93790000 - 0x93790fff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93791000 - 0x937f6ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x937f7000 - 0x938bfffb com.apple.CoreData 100.2 (186.2) <be912ff41bd4506438a71d5665e89069> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x938c0000 - 0x938edfff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x938f2000 - 0x9393cfff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9393d000 - 0x93972ff3 com.apple.LDAPFramework 1.4.5 (110) <0cf1d114abaf598355afb6537b76874e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93973000 - 0x93eefff7 com.apple.CoreGraphics 1.409.5 (???) <5055e3621c3a2239851bd7e829e94ea1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93ef0000 - 0x93ef4ffe libGIF.dylib ??? (???) <cc34b3a44618a0e1ccc1c5b1cf28b5bb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93ef5000 - 0x93f14fff libresolv.9.dylib ??? (???) <c5c72e1cf61cb844163156956a1d8407> /usr/lib/libresolv.9.dylib
    0x93f15000 - 0x93fa4ffb com.apple.DesktopServices 1.4.8 (1.4.8) <efaf20fbcdf58c7da37ddbcf190bba75> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93fa5000 - 0x93fd5fff com.apple.DotMacSyncManager 1.2.4 (308) <b7efa35e834d68ec5dd9d1511e48122e> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x93fd6000 - 0x94038ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94039000 - 0x947affff com.apple.AppKit 6.5.9 (949.54) <687f1742c249d7c9268e2eb57713cef6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x947b0000 - 0x947fffff libGLImage.dylib ??? (???) <2e1f2a2625064149d209ec19e52d0384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94800000 - 0x94813ffe com.apple.CFOpenDirectory 10.5 (10.5) <41ed29dcd683657b10994df7d7349e0a> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x94814000 - 0x94824fff libsasl2.2.dylib ??? (???) <c0d4783f9b08dfd1bded5e0b5ffe37cb> /usr/lib/libsasl2.2.dylib
    0x94825000 - 0x94825ffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94826000 - 0x9482ffff com.apple.DiskArbitration 2.2.1 (2.2.1) <682f5c45591e8c4a89c79e384e2c49af> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94830000 - 0x9483bfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9483c000 - 0x9487aff7 libtidy.A.dylib ??? (???) <b7079239dfc471520a40a14f6913aa7b> /usr/lib/libtidy.A.dylib
    0x9487b000 - 0x94882ffb com.apple.print.framework.Print 218.0.3 (220.2) <021d2263007c538fd9e6b52e66a2623d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94883000 - 0x948bcfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <21dee7ffd93306032f911b5ef3fdbab3> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x948bd000 - 0x948c2ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x948c3000 - 0x948d3ffb com.apple.agl 3.0.9 (AGL-3.0.9) <e751a9e491c3a9ef82c6405466106726> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x948d4000 - 0x94916fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94917000 - 0x9495dff9 com.apple.securityinterface 3.0.4 (37213) <d36d3af3d7c501ec78476dee04df3051> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9495e000 - 0x94973fff com.apple.IMUtils 4.0.8 (584) <798e21f99606c71cc5998dc473c8652b> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x94974000 - 0x94979fff com.apple.OpenDirectory 10.5 (10.5) <6dca8a620bb66310737d421624ebbfcd> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9497a000 - 0x949c1fff com.apple.NavigationServices 3.5.2 (163) <453fd79dd63debad4908dcc726f9aa04> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x949c2000 - 0x94ae7ffb com.apple.imageKit 1.0.2 (1.0) <50dfcbe41b384bd71761c761c3fbfd5e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x94ae8000 - 0x94af3ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94af4000 - 0x94af4ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94af5000 - 0x94af5fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94af6000 - 0x94b5dffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x94b5e000 - 0x94da4ffb com.apple.Foundation 6.5.9 (677.26) <c30e4aea51bbae480d4550cd53abb441> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94da5000 - 0x94da5ff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94da6000 - 0x94e3ffc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94e40000 - 0x94ea5ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x94ea6000 - 0x94f03ffb com.apple.HIServices 1.7.1 (???) <a6c5c0bf2d68aeb453dbc493b7d0c8d9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94f04000 - 0x94f04fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94f05000 - 0x94f5bfff libGLU.dylib ??? (???) <3418ce7ca0863162847f553c15d08674> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94f5c000 - 0x94f6aff3 com.apple.opengl 1.5.10 (1.5.10) <54bae289e544387ce7997a4a05e70aa9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94f6b000 - 0x94f83ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94fef000 - 0x94ffcfff libCSync.A.dylib ??? (???) <7ccecf2b36209e1196c42c635938519e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94ffd000 - 0x950cdfff com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x950ce000 - 0x95150fff com.apple.print.framework.PrintCore 5.5.4 (245.6) <3cde2550ec10348b7162d2b6cb0dfc67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95151000 - 0x95170fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95171000 - 0x951b5ffb com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <4fb3af125aa28f9a22d8855e4e24d19b> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x951b6000 - 0x951bcfff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <7f4de3ca234fdf3f06f25d47d7119e9b> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x951bd000 - 0x954bfffb com.apple.CoreServices.CarbonCore 786.11 (786.14) <4da8e0984e333f8cea32a24ba4364e8c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95590000 - 0x955d1ffb libTIFF.dylib ??? (???) <a4fac1b78bf536e570841166630ff642> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95622000 - 0x95622ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95623000 - 0x95631fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x95632000 - 0x9596bff7 com.apple.HIToolbox 1.5.6 (???) <a3b713a77c16da495c886463985f1e39> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9596c000 - 0x959a1fff com.apple.AE 402.3 (402.3) <75725936d014fd3ca2553d18b784b99b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x959a2000 - 0x95a89ffc com.apple.WebKit 5531.22 (5531.22.7) <1f9f3bd19f4a252b073fc2cc81fc368f> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95a8a000 - 0x95b44fff libcrypto.0.9.7.dylib ??? (???) <1d82e65c85d65367f3b6b06355c89c9b> /usr/lib/libcrypto.0.9.7.dylib
    0x95b45000 - 0x95bf5fff com.apple.QD 3.11.57 (???) <e74b370c6f81fc00e8936f5cf7c8ebe0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95bf6000 - 0x95c45fff com.apple.Metadata 10.5.8 (398.26) <1a261534027b9d1518327d1fabe1182b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95c46000 - 0x95c8afff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x95c8b000 - 0x95dd3ff3 libicucore.A.dylib ??? (???) <bdab570d90979c4f601131d442f84720> /usr/lib/libicucore.A.dylib
    0x95dd4000 - 0x95f74ff3 libSystem.B.dylib ??? (???) <900415cd2c829b2de9a6cdcdaa6307e3> /usr/lib/libSystem.B.dylib
    0x95f75000 - 0x95f7affe com.apple.AOSNotification 1.0.0 (68.13) <d4a95401c78f9de23d0ef3b763a5a584> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x95f7b000 - 0x95fa4fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95fa5000 - 0x95fb1ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95fb2000 - 0x95fd1fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95fd2000 - 0x96337ffe com.apple.QuartzCore 1.5.8 (1.5.8) <60e54cfb861dc5e66bb4f263a192d558> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96338000 - 0x96343ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x96344000 - 0x9636dffb com.apple.shortcut 1.0.1 (1.0) <8da20d176ab4cf71cdf4f79b477fe0e7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9636e000 - 0x963d8fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x963d9000 - 0x963ecffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <050180a659a3905ea38f2acddcdf7b40> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x963ed000 - 0x9648fffb com.apple.QuickTimeImporters.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96490000 - 0x96525ff7 com.apple.framework.IOKit 1.5.2 (???) <ced0a498252f76a2d2ba9f2a0ae02160> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96526000 - 0x965a1fff com.apple.SearchKit 1.2.2 (1.2.2) <a9d0033a5e1e55b5e382e52fe578d734> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x965a2000 - 0x9662cfff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9662d000 - 0x96647ffb com.apple.CoreVideo 1.6.0 (20.0) <2bc359d0334aa51fcf0534320dee89e9> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96648000 - 0x96685ffe com.apple.securityfoundation 3.0.2 (36131) <d8a8685348c0bcba4953a46e30c2ce9a> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96686000 - 0x9668dfff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9668e000 - 0x966bffff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x966c0000 - 0x966d3fff com.apple.LangAnalysis 1.6.5 (1.6.5) <2a661ad6e432dd62dd831e234904061f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x966d4000 - 0x967a4ffb com.apple.syncservices 3.3 (389.20) <6f381ee31b84416f59603afc05de893d> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x967a5000 - 0x967bcffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x967bd000 - 0x967c5fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x967c6000 - 0x9685dfff com.apple.LaunchServices 292 (292) <06cb373fd960fbc2b4a0201f55c7dd6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9685e000 - 0x9686bfff libbz2.1.0.dylib ??? (???) <03227e92407191ff8e754461e842201b> /usr/lib/libbz2.1.0.dylib
    0x9686c000 - 0x969baffb com.apple.CalendarStore 3.0.8 (860) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x969bb000 - 0x96a55ff7 com.apple.ApplicationServices.ATS 3.8 (???) <61c7a66473c16fce3d1eac4d09d401d7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96a56000 - 0x96a5bfff com.apple.KerberosHelper 1.1 (1.0) <21f06ad33a0d3b5cd7c1a8a4464a99d7> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x96a5c000 - 0x97455ff1 com.apple.WebCore 5531.22 (5531.22.7) <ed67e84765d694fba30c9f91feb76275> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0xba900000 - 0xba917ffe libJapaneseConverter.dylib ??? (???) <ddbf52237a078e0b4f6b1a408b4f272a> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Tha
    t> Exception Codes: KERNPROTECTIONFAILURE
    is always a Data Related issue.
    Can you create a new empty library: Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    If so, try and import a few pics to this new Library and see if you can avoid crashes.
    Regards
    TD

Maybe you are looking for

  • Folders: One account from another?

    I've two accounts on my machine, one with 'reference documents' and a second 'normal' account I use day to day. If I'm working on another machine I can access my 'reference' account by logging in with afp, and supplying my username and password. So f

  • How to capture output when exectuing an external command?

    Hey guys, I am executing the following piece of code: try { Process proc = Runtime.getRuntime().exec(execute); BufferedReader br = new BufferedReader(new InputStreamReader(proc.getInputStream())); String s; while ((s = br.readLine ())!= null){ System

  • How to change an existing JScrollPane table

    Hi there, I have defined a JScrollPane panel. I call the class "NorthCenterPanel " this the first time with "defaultPanel". This shows me a correct table. Next time I calle the same class from the class=Listen(see below) with "createPanel", because I

  • New SAP update: Operation date in FI docs

    Hi gurus, In order to manage dates according to the law in several countries, e.g, Norm 340 in Spain where it says that operation date have to be in every financial posting relating to a billable service, we have heard that SAP is applying some chang

  • Adjust reports without modification

    Hi at all! I have to accommodate in a real estate project where I should adjust some reports. First of all I extended the table VIBDBE with some customer fields. The report REBDBE works fine but these customer fields should be in other reports too, e