Maxl Import - Export L0 data crashes

Hi to all,We have an automation Maxl script, for a mission critical application where we export 6 times a day all L0 data, then import them back again, .It has been running for sometime smoothly, but suddenly it startet to crash, meaning it doesnt export the data or import it back in.We write on a file specific directory other than app\db (we tried this one but didnt work).We use MS W2000 server Essbase 6.5.We heard from Hyp that maybe there is a bug on v6.5Does anyone had similar problems?Thanksyannis

The SQL run via the load rule understands my subvars.  The load rule SQL looks like this:
select...
WHERE
  AND (('1' = '&IncSpanYr' --IF THE PERIODS SPAN YEARS
  AND (('12' = '&CurMoNm' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
  AND ((A.FISCAL_YEAR = '&CurYrNm' AND A.ACCOUNTING_PERIOD IN ('&PriMoNm', '&CurMoNm'))
This turns into:
WHERE
  AND (('1' = '1' --IF THE PERIODS SPAN YEARS
  AND (('12' = '12' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
  AND ((A.FISCAL_YEAR = '2014' AND A.ACCOUNTING_PERIOD IN ('2', '3'))
My issue is getting a dump of all that data that the SQL is pulling.  I don't see a way to do that in the import database command.  A separate job on the SQL side (like SSIS) could pull the data, but can't access the subvars easily.  Does that make sense?  Or did I misunderstand your suggestion?
Thanks-
Cameron

Similar Messages

  • Getting problem in Import/export of data

    Hi,
    I have just cloned my database to an another machine. Everything is ok with the database.But when I try to import/export the data from that new database I get these error messages,
    Exp 00056 - Oracle error 1403 encountered
    ORA-01403 - No data found
    Exp - 00000 - Export terminated unsuccessfully
    santosh
    [email protected]

    hi
    Examples of Using Different Releases of Export and Import
    Table 19-7 shows some examples of which Export and Import releases to use when moving data between different releases of the Oracle database.
    Table 19-7 Using Different Releases of Export and Import
    Export from->Import to Use Export Release Use Import Release
    8.1.6 -> 8.1.6 8.1.6 8.1.6
    8.1.5 -> 8.0.6 8.0.6 8.0.6
    8.1.7 -> 8.1.6 8.1.6 8.1.6
    9.0.1 -> 8.1.6 8.1.6 8.1.6
    9.0.1 -> 9.0.2 9.0.1 9.0.2
    9.0.2 -> 10.1.0 9.0.2 10.1.0
    10.1.0 -> 9.0.2 9.0.2 9.0.2
    Restrictions When Using Different Releases and Versions of Export and Import
    The following restrictions apply when you are using different releases of Export and Import:
    1.Export dump files can be read only by the Import utility because they are stored in a special binary format.
    2.Any export dump file can be imported into a later release of the Oracle database.
    3.The Import utility cannot read export dump files created by the Export utility of a later maintenance release or version. For example, a release 9.2 export dump file cannot be imported by a release 9.0.1 Import utility.
    4.Whenever a lower version of the Export utility runs with a later version of the Oracle database, categories of database objects that did not exist in the earlier version are excluded from the export.
    5.Export files generated by Oracle9i Export, either direct path or conventional path, are incompatible with earlier releases of Import and can be imported only with Oracle9i Import. When backward compatibility is an issue, use the earlier release or version of the Export utility against the Oracle9i database.
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14215/exp_imp.htm#i1013164i hope it will help u.
    regards
    Mohammadi52
    Message was edited by:
    Mohammadi52

  • Import/Export xml data from subtree of dynamic XFA form

    Hi
    We would like to import/export xml data (subtree) of a dynamic xfa form. The following script does only work with static AcroForms:
    formular.content.subformDaten.Button1[1]::click - (JavaScript, client)
    event.target.exportAsXFDF({aFields:["formular[0].content[0].subformDaten[0]"]});
    With dynamic forms the script does export an empty xml file (no data is included, only xml root tag):
    <?xml version="1.0" encoding="UTF-8"?>
    <xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve"
    ><f href="ExportTest_frei.pdf"
    /><ids original="EA43F92A6B6EA34F9C4DBBC2DA0B1840" modified="6A7C6282A167594F91240B773AA979A7"
    /></xfdf
    >
    Any ideas? Many thanks.
    Best regards,
    Daniel

    Hi Paul
    The Problem that Daniel posted was originally mine. Now after subscribing to this forum myself, I try to describe the aim of using exportAsXFDF/importAnXFDF.
    exportData("", false) and exportXFAData works, in my opinion, only with a DataConnection. In my form I have indeed such a connection for sending the whole form. But in addition I need the possibility to export and import only part of the data without overwriting the rest of the filled form.
    exportAsXFDF works with static forms. So there MUST be a possibility that works with dynamic forms, right?
    I hope anyone has a solution.
    Beat

  • Questions on Subviews and Import/Export in Data Modeler v3 EA1.

    I have a few questions about the capabilities of Data Modeler v3 EA1:
    1) Is it possible to rename subviews? Would like more meaningful names then Relational_x - Subview_x.
    2) Is it possible to save documents at subview level?
    3) Is it possible to import/export subsets of data?
    4) Having problems importing Erwin 7 .xml file, is there known problems with this import?
    Judy

    Hi Judy,
    1) To rename a subview just right click on it in the browser tree and select "Properties". In the properties dialog change the name and click OK button.
    2) You can save a subview as new Data Modeler design - from the File menu select Export -> To Data Modeling Design. In the newly opened dialog select the subview you want to export and click OK button.
    3) After saving a subview as new design (see answer #2) it can be imported in some other design (File -> Import -> Data Modeler Design).
    4) What kind of problems do you have with import of Erwin 7.* xml file?
    Regards,
    Ivan

  • IMPORT/EXPORT FROM DATA BUFFER

    Hi,
    I have some code like this:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    for some reason a does not get set to the value that I assigned to b.
    However, this code works:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT some_internal_table TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    Does anybody know why internal tables work but other data types do not?
    Thank you.

    EXPORT '1234' TO DATA BUFFER b, not working because, you did not assign a variable name to '1234' to be stored as in data buffer B.
    Change the code to:
    DATA: b type xstring.
    DATA: a(4) type c.
    EXPORT a = '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    It's working in the second case because, some_internal_table  is the name of the variable in databuffer B and you are importing into the same variable in IMPORT
    Regards
    Sridhar

  • How to automate Import/export Essbase data 11.1.2

    Hi,
    After migration from Dev to Test environment using LCM (EPMA Planning, Shared services) I have questions:
    1) How to automate export from source and import in Destination?
    2) If we have enabled MSAD in shared services, What should be standard practice to sync provisioning in both environment?
    Regards
    Kumar

    Hi John,
    I see only Native directory
    Application Group>Foundation>shared services> - Native directory
    - Task flows
    Application Group>Foundation>shared services> - Native directory>assigned Roles> foundation>shared services
    I feel MSAD should be here but not sure as it is just new environment and we enabled MSAD.
    Please suggest where can i check Import/export in LCM 11.1.2?
    Regards
    Kumar
    Edited by: Kumar 1 on Oct 20, 2011 3:22 AM

  • Import/export unicode data

    Using the import (xls) functionality in SQL Developer (1.1.1.25) I cannot import a field in an Excel spreadsheet that has unicode data. I get the ORA-00911: invalid character message.
    The environmental preference is set for UTF-8 encoding. The field being imported to is defined as NVARCHAR2.
    Trying to export this field after manually entering the unicode data to the database does not produce an output file (either cvs, or xsl) that is properly encoded (file encoding is is set to UTF-8).
    What am I missing?

    Hello Massimo,
    I bet the following IBM Redbooks publication answers your question:
    [DB2 Optimization Techniques for SAP Database Migration And Unicode Conversion|http://www.redbooks.ibm.com/abstracts/sg247774.html?Open]
    Hans-Juergen

  • User Admin Import/Export

    I'm trying to get a report of all IDs in our portal & the roles assigned to them.  When I run User Administration -> Import/Export -> User Data Export & I select <ALL USERS> the results are often missing data.  Sometimes I don't get all records; more frequently I get all records (all IDs) but not all roles are included.  e.g. I've just tried it again & have found some IDs which have no data against the role= field (but when I look at the ID I can see that they do have a role).   Other IDs are reported with (say) 2 roles, but I know they have 3 or 4. 
    Has anyone seen this?  Does anyone know how to fix it?
    Thanks, Chris

    Users
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/49ae0771924cf4a1fc7e2af7b2e18c/content.htm
    Groups
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/cde2fb82644d98bfb6d558440d6806/content.htm
    Roles
    http://help.sap.com/saphelp_nw04/helpdata/en/d1/a73184c45e4e119e63d1b8108f1ab0/content.htm
    Search on help.sap.com for User Import UME

  • What license is required for import/export AcroForms and Submit button

    I want to know what kind of license do I need to programmatically interact with AcroForms and AcroFields for a asp.net web application.
    I use a third party software (Aspose) to import/export AcroField data value and also dynamically modify some of the fields.
    I also want to place a Submit button on the PDF so users can submit field data to a web server with free PDF readers.
    Have anyone done this before?

    Here are the steps I'm invisioning:
    1. The PDF form template is created with Acrobat Pro and Reader Rights is DISABLED.
    2. The user logins in to a web page and then clicks on a link to download the PDF template.
    3. Before the PDF is streamed to the client browser, the PDF template is modified with Aspose to fill in some personalized user data.
    4. User downloads a PDF with his/her data pre-filled.
    5. User saves and opens the PDF with PDF reader, fill in some more data and clicks on the Submit button on PDF.
    6. Submit button sends all the AcroFields that has data filled in back to a web server.
    7. Server processes the data accordingly.
    So, will a regular Acrobat Pro license be enough for this use?

  • MAXL Import Database (and export data?)

    I have an import database MAXL command that is working great (sql account and password substituted).  The rule file has a SQL connection to our ERP. 
    MAXL> import database PLANNING.DetView data connect as sql_account identified by "Password" using rules_file "'\\\oceanus-d13\\Oracle\\Middleware\\user_projects\\epmsystem3\\EssbaseServer\\essbaseserver1\\app\\PLANNING\\DetView\\NLIncur.rul'" on error write to "'G:\\DB_Process\\DetView_Process\\errors\\DetView_NLIncur_data_load.mxl.err'";
    We are going to run this on a nightly basis and our requirement is to have a historical record of what was "pulled" from our ERP (even if it didn't make it in to Hyperion).
    Here are the options that I've thought of:
    Have a separate SSIS package use the same SQL to dump the data out of the ERP database into a flat file.  The downside to this is that I'm using subvars from Essbase that don't exist in SQL.  So I'd have to write the SQL in a different way potentially causing discrepancies.
    A separate Data Export of what was loaded.  The downside here is that it doesn't have the errors that never made it in.
    I can't find another option in the import database command to spool the output of the SQL to a file. 
    Does anybody have thoughts on how to do this or are there other ways to achieve what I'm trying to do?
    Thanks-
    Cameron McClurg

    The SQL run via the load rule understands my subvars.  The load rule SQL looks like this:
    select...
    WHERE
      AND (('1' = '&IncSpanYr' --IF THE PERIODS SPAN YEARS
      AND (('12' = '&CurMoNm' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
      AND ((A.FISCAL_YEAR = '&CurYrNm' AND A.ACCOUNTING_PERIOD IN ('&PriMoNm', '&CurMoNm'))
    This turns into:
    WHERE
      AND (('1' = '1' --IF THE PERIODS SPAN YEARS
      AND (('12' = '12' --IN JUNE LOOK INTO NEXT YEAR PERIOD 1
      AND ((A.FISCAL_YEAR = '2014' AND A.ACCOUNTING_PERIOD IN ('2', '3'))
    My issue is getting a dump of all that data that the SQL is pulling.  I don't see a way to do that in the import database command.  A separate job on the SQL side (like SSIS) could pull the data, but can't access the subvars easily.  Does that make sense?  Or did I misunderstand your suggestion?
    Thanks-
    Cameron

  • Iphoto 9.4.2 crashes- import, export, editing, lost photos-Is there a fix?

    I have had multiple crashes with iphoto 9.4.2 on my Mac OSX- 10.7.5 while importing, exporting and --most infurating of all-- while editing. Upon restart all photos were lost - that is there is record of the event but no photos show up in that space. I have had reimport them multiple times. But upon reimporting, iphoto seems to think they are still there and asks me if I want duplicates made.
    Below is a recent report-
    Process:         iPhoto [8427]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [123]
    Date/Time:       2013-01-05 13:49:59.395 -0300
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          309575 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  102747 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      77D10CD1-8F72-42A3-B8EB-9A2E356B9DB5
    Crashed Thread:  34
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010
    VM Regions Near 0x10:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-00000000000d0000 [  828K] ---/--- SM=NUL
    Application Specific Information:
    objc[8427]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x9b40fc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b40f1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9011a9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x90123b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x901231dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x90123088 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9bd90543 RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x9bd978ab ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x9bd9771a BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x93adeee8 _DPSNextEvent + 678
    10  com.apple.AppKit                        0x93ade752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.AppKit                        0x93adaac1 -[NSApplication run] + 911
    12  com.apple.AppKit                        0x93d6bac5 NSApplicationMain + 1054
    13  com.apple.iPhoto                        0x000dfc99 0xd0000 + 64665
    14  com.apple.iPhoto                        0x000df2e5 0xd0000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9b411b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x9b502cbd _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x9b501853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x023fe48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   com.apple.CoreFoundation                0x9018b1aa -[NSObject performSelector:] + 58
    8   com.apple.proxtcore                     0x01dcfdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   com.apple.CoreFoundation                0x90182d11 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore                     0x01dc822c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x01dc7aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x01dc7313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x01dc5f10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    15  com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x9b40fc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b40f1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9011a9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x90123b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x901231dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x90123088 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9cb770c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 11:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x9b411b42 __select + 10
    1   com.apple.CoreFoundation                0x90171e15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9a83a42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9cb6cbe8 -[NSCondition wait] + 304
    4   com.apple.iPhoto                        0x00121a64 0xd0000 + 334436
    5   com.apple.iPhoto                        0x00121672 0xd0000 + 333426
    6   com.apple.CoreFoundation                0x90185a9d __invoking___ + 29
    7   com.apple.CoreFoundation                0x901859d9 -[NSInvocation invoke] + 137
    8   com.apple.RedRock                       0x0241a85b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x0242b5f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation                0x90182d11 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore                     0x01dcfdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  com.apple.CoreFoundation                0x90182d11 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore                     0x01dc822c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x01dc7aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x01dc7313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x01dc5f10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    18  com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    19  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x98cb23a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x98cb211d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x98cb1f2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9969c16a 0x990af000 + 6213994
    7   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 14:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a83182a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x997be467 0x990af000 + 7402599
    4   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 15:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a83182a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x997be467 0x990af000 + 7402599
    4   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 16:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a83182a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x997be467 0x990af000 + 7402599
    4   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x9b41183e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9a889e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9a889f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9cb9d3c3 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9cb637d2 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9cb636a6 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01dc6e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01dc5efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x9cb6ae25 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9cb6add5 __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x9b410e12 __accept + 10
    1   com.apple.iPhoto                        0x004c824d 0xd0000 + 4162125
    2   com.apple.iPhoto                        0x00512651 0xd0000 + 4466257
    3   com.apple.iPhoto                        0x005125be 0xd0000 + 4466110
    4   libsystem_c.dylib                       0x9a885ed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x9a8896de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x9b40fc22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9b40f1f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9011a9da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x90123b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x901231dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x90123088 CFRunLoopRunInMode + 120
    6   com.apple.CFNetwork                     0x913f9299 CFURLConnectionSendSynchronousRequest + 455
    7   com.apple.Foundation                    0x9cc9796a +[NSURLConnection sendSynchronousRequest:returningResponse:error:] + 146
    8   com.apple.iPhoto.FacebookPublisher          0x141ee3ea 0x141d8000 + 91114
    9   com.apple.iPhoto.FacebookPublisher          0x141dfd09 0x141d8000 + 32009
    10  com.apple.iPhoto.FacebookPublisher          0x141e73a0 0x141d8000 + 62368
    11  com.apple.iPhoto                        0x007c0b77 0xd0000 + 7277431
    12  com.apple.CoreFoundation                0x90182d11 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore                     0x01dc822c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x01dc7aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x01dc7313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x01dcbade -[XTPortMsgQueue handleMachMessage:] + 188
    17  com.apple.Foundation                    0x9cb2b8bf __NSFireMachPort + 412
    18  com.apple.CoreFoundation                0x900ead0a __CFMachPortPerform + 346
    19  com.apple.CoreFoundation                0x900eab91 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 49
    20  com.apple.CoreFoundation                0x900ea7bb __CFRunLoopDoSource1 + 155
    21  com.apple.CoreFoundation                0x90123e01 __CFRunLoopRun + 2193
    22  com.apple.CoreFoundation                0x901231dc CFRunLoopRunSpecific + 332
    23  com.apple.CoreFoundation                0x90123088 CFRunLoopRunInMode + 120
    24  com.apple.Foundation                    0x9cb174af -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • How to import/export data in pl/sql developer

    how to import/export data,table script in pl/sql developer.
    By using the export functionality i am getting the dump file.I want a sql file.How do i do it?
    And i want the data in csv file and table script in a sep sql file.How do i do it?

    <li>run your query in "Query Builder"
    <li>Right-Click on the Query-Results
    <li>Click "Export"
    <li>Click on the "Drop-Down" in front of "Format" and choose "insert"
    <li>Provide the location and name of ther "sql" file.
    If you want output in CSV format, choose "csv" from the "format" drop-down.
    HTH

  • MAXL Import data statement error

    Can someone assist me in the maxl import data statement.
    In the import data statement "import database App.DB data from data_file "\\servername\\folder1\\folder1\\data.txt";
    The error I get is trying to specify the syntax for the path of the server. Does someone have an example of the import statement syntax that is referencing the data file from a server?
    Thanks

    Have you tried something like :-
    import database App.Db data from text data_file "\\\\servername\\sharename\\directory\\datafile.txt" using server rules_file "dataload" on error write to "dataerrors.err";
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • HT200169 Having a problem with Logic 9 on a Mac Pro.Working on a lenghty song and apparently session got corrupted.Doesnt let me export tracks,program crashes.Already tried start brand new session with the tracks imported into it but still wont export.Sug

    Hello,having a problem with Logic 9 on a Mac Pro.Working on a lenghty song and apparently session got corrupted.Doesnt let me export tracks,program crashes.Already tried start brand new session with the tracks imported into it but still wont export.Suggestions?

    Thanks, Ian. Yeah, that's how I do it now...or with the controls in the left side pane. Still, I would have liked that quick on-the-spot edit capability...especially while sketching.
    Ian Turner wrote:
    Sorry Mark, you are out of luck as it does not do that - it works the same as L8. The way I would achieve that with more accuracy and control would be to route all the tracks you want to fade to a Bus then use volume automation on the bus. To do this you will need to add a standard audio track, then re-assign it using (Control Click on the track header) to the Bus track. You can then automate volume/plugins etc on the Bus track.
    Ian

  • Export and Import of Configuration Data

    Hi All,
    I have created a number of custom properties, structures, groups, renderers, layout sets etc and would like to move them from Dev to Test system.
    I have found the following in the help doco:
    "Export and Import of Configuration Data"
    http://help.sap.com/saphelp_nw04/helpdata/en/e1/029c414c79b25fe10000000a1550b0/content.htm
    However I am unable to see its functionality in our portal systems (namely the Actions->Export and Actions->Import functions).
    Our version of Portal is: 6.0.9.6.0
    KM: 6.0.9.3.0 (NW04 SPS09 Patch3)
    Therefore we should be able to see it? no?
    Are there any special settings to see these buttons?
    Cheers,
    Vic

    Thanks for your replies.
    OK, so in otherwords, it is not available in SP09 and only in SP12+.
    So, to "transport" this information I will have to manually reapply thes settings in the Test system!
    Message was edited by: Victor Yeoh

Maybe you are looking for

  • Oracle report problem-Passing a column value from a query block to another

    Hi I am facing a problem in oracle reports. I have 3 query blocks say Q1,Q2 and Q3. From Q1 I get a tblkey coulmn and for each value of tblkey I need to pass it on to Q2 which gives me a status and now finally Q3 will take tblkey and status to give m

  • Removed iMac hard drive - Recovery on a PC?????

    So recently my iMac g5's logic board crashed. I had a few months prior installed a 500gig hard drive. I bought housing for the hard drive and intend on using it as an external. The only other computer I have in my house to recover files is a PC. When

  • REG: Error in IDoc adapter outbound processing

    Hi All,       I had a couple of doubts regarding these IDoc's. 1)        I am dealing with the web services to IDoc Scenario. When i am activated my wed services it               is giving an error like "IDOC_ADAPTER.ATTRIBUTE_BE_NOT_SUPP" and "Only

  • Ship to Address Table

    Hi, Please let me know the table for Ship to Address. I know that we will edit the address through T.Code- bbpaddrintc. But how to see the Address No, Name Org , Street  , city etc in the SRM System. Regards, Manoj

  • IFS Configuration Error.

    Hi, I have installed the Oracle 8.1.7 database on Sun Solaris. I am trying to set up the iFS middle tier on the Windows NT box. When, I tried to run the iFSConfig.bat file present in the ORACLE_HOME/ifs1.1/bin directory, after the second screen, it g