Oracle Export Error on QUERY Parameter

Hi All,
I would like to ask for assistance.
Here's my environment:
OS: Linux 5.4 32bit
DB: Oracle 10.2.0.4
Here's what I would like to do:
Export selected rows from SH.SALES table using the query:
SQL> select * from sh.sales
where to_date(time_id,'DD-MON-RR:HH24:MI:SS') = to_date('28-DEC-01:00:00:00','DD-MON-RR:HH24:MI:SS');
My parfile is:
userid="sys/oracle as sysdba"
buffer=10000000
file=mysales148.dmp
log=mysales148.log
TABLES=sh.mysales
query="where to_date(time_id,\'DD\-MON\-RR:HH24:MI:SS\')=\to_date(\'28\-DEC\-01:00:00:00\',\'DD\-MON\-RR:HH24:MI:SS\')"
recordlength=65535
statistics=none
When I run the script, I am getting this error:
[oracle@shaoran selective_export]$ exp parfile=exp_mysale.par
Export: Release 10.2.0.1.0 - Production on Thu Feb 3 16:57:08 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in US7ASCII character set and AL16UTF16 NCHAR character set
server uses WE8ISO8859P1 character set (possible charset conversion)
About to export specified tables via Conventional Path ...
Current user changed to SH
. . exporting table MYSALES
EXP-00056: ORACLE error 911 encountered
ORA-00911: invalid character
Export terminated successfully with warnings.
Hope to hear your feedback soon.
Thanks a lot!

Hi Guys,
Thanks for the feedback.
I edited my parfile as shown here:
[oracle@shaoran selective_export]$ cat exp_mysale.par
userid="sys/oracle as sysdba"
buffer=10000000
file=mysales148.dmp
query="where time_id=\to_date(\'28\-DEC\-01:00:00:00\',\'DD\-MON\-RR:HH24:MI:SS\')"
log=mysales148.log
TABLES=sh.mysales
recordlength=65535
statistics=none
[oracle@shaoran selective_export]$
and I did the following steps:
[oracle@shaoran selective_export]$ export NSL_LANG=AMERICAN_AMERICA.UTF8
[oracle@shaoran selective_export]$ exp parfile=exp_mysale.par
Export: Release 10.2.0.1.0 - Production on Fri Feb 4 11:34:03 2011
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
Export done in UTF8 character set and AL16UTF16 NCHAR character set
server uses WE8ISO8859P1 character set (possible charset conversion)
About to export specified tables via Conventional Path ...
Current user changed to SH
. . exporting table MYSALES
EXP-00056: ORACLE error 911 encountered
ORA-00911: invalid character
Export terminated successfully with warnings.
[oracle@shaoran selective_export]$
I still get the same error. :(

Similar Messages

  • Oracle 10g exp error with query parameter

    Hi all,
    I am trying to perform an export but getting this error when using the query parameter. I think it's a syntax problem but not sure where.
    I'm in a dos prompt
    E:\>exp file=xxxxx.dmp log=xxxx.log tables=xxxxx query='where responseid not in (select responseid from aaaa_bbbbb)';
    LRM-00112: multiple values not allowed for parameter 'query'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    Thx

    This is why I love this forum so much.
    I've probably done thousands of exports and never used the query parameter.
    Here's something that will help you. Please read and note the requirement to escape, or protect, special characters and such.
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96652/ch01.htm
      exp scott/tiger TABLES=emp QUERY=\"WHERE job=\'SALESMAN\' and sal \<1600\"ji li

  • Expdp error with query parameter

    i am trying to use datapump and using query parameter in there as below...
    but when i use the below, its exporting some system "repcat$" tables and
    nothing realted to scott.audit table or anything realted to my query where
    clause...what am i doing wrong ??
    expdp system
    DUMPFILE=test.dmp
    LOGFILE=test.log
    DIRECTORY=DATA_PUMP_DIR
    TABLES=SCOTT.AUDIT
    QUERY=SCOTT.AUDIT:'"WHERE TRUNC (audit.audit_timestamp)
    BETWEEN TO_DATE ('01012008','DDMMYYYY') AND TO_DATE ('13012008','DDMMYYYY')"'
    also when i use scott instead of system user i get below error
    Export: Release 10.2.0.3.0 - 64bit Production on Wednesday, 22 July, 2009 12:53:45
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Password:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-39145: directory object parameter must be specified and non-null

    i treid again, but creating a new datapump dir as follows...create or replace dir dpdump as '/backup/dpdump/orcl';
    then gave grant read,write on directory dpdump to system
    and now why is oracle looking at a differnt location ?? even when i changed the
    direcotry ???
    $ expdp SYSTEM
    DUMPFILE=test.dmp
    LOGFILE=test.log
    DIRECTORY=DPDUMP
    QUERY=SCOTT.AUDIT:'"WHERE TRUNC (audit.audit_timestamp)
    BETWEEN TO_DATE ('01012008','DDMMYYYY') AND TO_DATE ('13012008','DDMMYYYY')"'
    Export: Release 10.2.0.3.0 - 64bit Production on Wednesday, 22 July, 2009 13:27:18
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Password:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORA-39001: invalid argument value
    ORA-39000: bad dump file specification
    ORA-31641: unable to create dump file "/oracle/app/oracle/product/10.2.0/admin/orcl/dpdump/expdat.dmp"
    ORA-27038: created file already exists
    Additional information: 1
    $>
    Seems little weird but can you:--
    1. Drop the dpdump directory.
    SQL> drop directory dpdump;
    2. recreate it and then grant the permissions.
    SQL> create directory dpdump as '/backup/dpdump/orcl';
    The folders must exists in the location.
    SQL> grant read,write on directory dpdump to system;
    3. SELECT directory_name, grantee, privilege
    FROM user_tab_privs t, all_directories d
    WHERE t.table_name(+)=d.directory_name
    ORDER BY 1,2,3;
    Anand

  • Export using a QUERY parameter

    I am trying to export a subset of data using the following parms:
    FILE=C:\EXPORT\ADM_ACCESS_LOG.DMP
    GRANTS=Y
    INDEXES=Y
    DIRECT=N
    ROWS=Y
    CONSISTENT=N
    TRIGGERS=Y
    CONSTRAINTS=Y
    FEEDBACK=1000
    TABLES=(THRESHER.ADM_ACCESS_LOG)
    QUERY=\"WHERE LOGIN_DT='31-JUL-2005'\"
    The table exists as does the column, however, I get the following error:
    LRM-00101: unknown parameter name 'LOGIN_DT'
    I have everything spelled correctly and I am logging into export as thresher.
    What am I doing wrong?
    Thanks

    use the query parameter like this
    QUERY="WHERE to_char(dte,'mm/dd/yyyy')='07/31/2005'"
    or
    QUERY="WHERE to_char(dte,'dd-mon-yyyy')='31-JUL-2005'"
    --thedba                                                                                                                                                                                                                                                                                                                                           

  • Oracle export error while using exp.

    Hi folks,
    Any idea why am i getting this error when I tried to get an export file?
    Error:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine optionsSegmentation Fault (core dumped)
    Steps:
    I was trying to get export file from db test/test_pass@env1 with below export command.
    Encountered the above error.
    exp test/test_pass@env1 FILE=another_test_dmp.dmp OWNER=another_test TRIGGERS=n GRANTS=y ROWS=y COMPRESS=y
    Log file created with 0 bytes.
    Some file name with core created. (huge in volume)
    another_test_dmp.dmp file created with 0 bytes.
    Appreciated your help in this.
    Thank you.
    Edited by: TechMahi.com on May 6, 2010 5:28 AM

    Hi,
    You should look your core dump to see more details of your error. If you want you could post it to see if we can help you.
    You can find it looking at the parameter CORE_DUMP_DEST
    Regards,
    Mario Alcaide
    http://marioalcaide.wordpress.com

  • Oracle export error

    Hi I am trying to export a table with 2 million records and getting below error.
    exp user1/user1 buffer=8192 compress=y file=Test_table.dmp tables=test_table filesize=8192000000
    Export: Release 10.2.0.1.0 - Production on Mon Oct 29 12:49:23 2012
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table TEST_TABLE
    EXP-00065: Error writing lob to the dump file.error closing export file Test_table.dmp
    Export terminated successfully with warnings.
    How to calculate what's the filesize I should give during export?
    Thanks

    Hi,
    the error might be related to the file system not supporting large files.
    What is your target file system? FAT, FAT32 or NTFS?
    For Windows the maximum file size is 4Gb files on FAT, theoretical 16Tb on NTFS.
    Consider also that for this kind of question there is a specific forum: Export/Import/SQL Loader & External Tables
    Regards.
    Al
    Edited by: Alberto Faenza on Oct 29, 2012 9:43 AM

  • Oracle Date error on return parameter

    Hi,
    I'm getting a date parameter from Oracle returned as 0006-08-13, for Aug 13, 2006.
    I've tried a number of things in the SELECT statement, with both to_char and to_date, neither which have been sufficient.
    So I thought I'd try the replace method, but am getting an error.
    I have the following declared to have the parameter returned:
    Date datereq = admsql.getDate(9);
    String dtreq = replace(0,0,2(datereq));Do I need anything else or should I somehow use replace() wrapped around <%=dtreq%> ?
    Do I need to instead cast something to a SimpleDateFormat object in this case?
    Please advise. This is the one maddening area about Oracle!

    Hi,
    I'm getting a date parameter from Oracle returned as
    0006-08-13, for Aug 13, 2006.No, you're not. The date has probably been inserted incorrectly and is wrong in the database. Either that, or you need to learn how to format Java dates into Strings correctly.
    to_char is for converting a database DATE (or NUMBER) to a database character type such as VARCHAR2
    to_date is for converting a character type such as VARCHAR2 to a database DATE type
    I have no idea what it is you're trying to do with replace(); is that supposed to be String.replace()? If so, I don't think the code you've written should compile, and if it did, it still wouldn't do what you want; you can't do a string replacement on a Date object.
    You can get see what's been stored in your DATE (?) column with:
    // fix "your_date_column" and "your_table" and "where_clause"
    SQL = "select to_char(your_date_column, 'yyyy-mm-dd Day Month dd, Year') from your_table where where_clause";
    PreparedStatement ps = connection.prepareStatement(SQL);
    ResultSet rs = ps.executeQuery();
    rs.next();
    String dtreq = rs.getString(1);(Or you could run that SQL statement in SQL*Plus or some other general purpose SQL client; if you're going to program regularly with a database, such a thing is an essential professional tool).
    If the above SQL tells you the date really is Aug 13, 2006, then you need to figure out how to convert Java dates to Strings correctly; if the date is stored incorrectly, then you need to fix your program elsewhere.

  • Oracle Export Error For version 9.2.0.6.0

    I can run an export with owner='my user' however when i set it to run as full =Y i get the following error at the end:
    . exporting dimensions
    . exporting post-schema procedural objects and actions
    EXP-00008: ORACLE error 933 encountered
    ORA-00933: SQL command not properly ended
    ORA-06512: at "SYS.DBMS_RULE_EXP_RL_INTERNAL", line 311
    ORA-06512: at "SYS.DBMS_RULE_EXP_RULES", line 142
    ORA-06512: at line 1
    EXP-00083: The previous problem occurred when calling SYS.DBMS_RULE_EXP_RULES.schema_info_exp
    . exporting user history table
    . exporting default and system auditing options
    . exporting statistics
    Export terminated successfully with warnings.
    Can anybody indicate what the problem may be ?
    Many Thanks

    It seems that the problem is caused by double quoted user names.
    See Metalink Note:206512.1 - EXP-8 and ORA-903 or ORA-933 When Exporting From Oracle9i Release 2 (9.2.0.1)

  • Exp query parameter error

    Hi ,
    What is wrong in query parameter?
    userid=crmodrepo/reports file=crmodrepo4.dmp log=crmodrepo4.log statistics=NONE indexes=Y tables=(ODPERF_REQUEST_DATA) query=\"DATETIME >'10-MAY-08 01.00.00'\"
    I am getting bellow error. I have tried differently, but same result.
    -bash-3.00$ exp parfile=crmodrepo.par
    LRM-00112: multiple values not allowed for parameter 'query'
    LRM-00113: error when processing file 'crmodrepo.par'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    Could you please help me?
    Thanks in advance.
    THanks
    Asif Khan

    Try to format the string as you would in case of a normal query. so try with
    query='datetime > to_date (''01.01.2008 00:00:00'', ''dd.mm.yyyy hh24:mi:ss'')'
    HTH...

  • SSRS countrow Aggregate error(Aggregate and lookup functions cannot be used in query parameter expressions.)

    Below expression works fine with text box but gives error in dataset expression.
    ="SET FMTONLY OFF select  "+ join(Parameters!Column.Value,",") +" FROM pamcustom.dbo.vw_HFL_HFD_HotfileData INNER JOIN pamcustom.dbo.HFL_HFB_HotFileBatch  on BatchID = HFB_intBatchID where BatchID ="+Parameters!BatchId.Value+"
    and "+Parameters!cmbTranType.Value+" "+ iif(CountRows("DS_Aml_Mnr_Iss_Desc")=Parameters!Mnr_Iss_Desc.count," "," and aml_mnr_iss_desc in "+"('" & join(Parameters!Mnr_Iss_Desc.Value,"','")
    & "')")+iif(CountRows("ds_ReportingCategory")=Parameters!ReportingCategory.count," "," and ReportingCategory in "+"('" & join(Parameters!ReportingCategory.Value,"','") & "')")+iif(CountRows("ds_NAICSubGroup")=Parameters!NAICSubGroup.count,"
    "," and naicsubgroup in "+"('" & join(Parameters!NAICSubGroup.Value,"','") & "')")+iif(CountRows("ds_PortTrading")=Parameters!PortTrading.count," "," and porttrading in "+"('"
    & join(Parameters!PortTrading.Value,"','") & "')")+iif(CountRows("ds_GL_LE")=Parameters!GL_LE.count," "," and gl_le in "+"('" & join(Parameters!GL_LE.Value,"','") &
    "')")+iif(CountRows("ds_coagroup")=Parameters!cmbCoaGrp.count," "," and coagroup in "+"('" & join(Parameters!cmbCoaGrp.Value,"','") & "')")+iif(CountRows("Portfolio")=Parameters!cmbPort.count,"
    "," and portfolio in "+"('" & join(Parameters!cmbPort.Value,"','") & "')")+IIf(IsNothing(Parameters!txtSecID.Value)," "," and secid in ('"+Replace(Parameters!txtSecID.Value,",","','")+"')")+iif(IsNothing(Parameters!minPortFilter.Value)
    and IsNothing(Parameters!MinPort.Value)," "," and portfolio "+Parameters!minPortFilter.Value+Parameters!MinPort.Value)+iif(IsNothing(Parameters!maxPortFilter.Value) and IsNothing(Parameters!MaxPort.Value)," ","
    and portfolio "+Parameters!maxPortFilter.Value+Parameters!MaxPort.Value)+iif(IsNothing(Parameters!minCoaFilter.Value) and IsNothing(Parameters!txtMinCoa.Value)," "," and portfolio "+Parameters!minCoaFilter.Value+Parameters!txtMinCoa.Value)+iif(IsNothing(Parameters!maxCoaFilter.Value)
    and IsNothing(Parameters!txtMaxCoa.Value)," "," and portfolio "+Parameters!maxCoaFilter.Value+Parameters!txtMaxCoa.Value)
    I guess the error " Aggregate and lookup functions cannot be used in query parameter expressions." is because I am using CountRow to ensure that if all values of multi select all selected i will not use that filter in where clause.
    Pls. guide...

    Hi, Include your parameter total count in the dataset for parameter and instead of using countrows() function use the count from dataset in the expression.
    Hope this helps.........
    Ione

  • HT2479 Ok so imovie 11 won't let me export my movie anywhere, no matter what it seems. all it says is he project could not be prepared for publishing because an error occurred. (ParamErr: error in user parameter list).

    Any help would help.

    Hi
    Error -50 paramErr  - Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ?
    Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    • free space on internal boot hard disk? How much ?
    Video codec
    • streamingDV, AIC etc. (not .avi, .mp4, .m4v, .wmv etc as they are containers not codecs)
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    Corrupted preference file: The "com.apple.iMovie.plist" file - trash it
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    Where do Your material come from
    • Camera
    • External hard disk
    • USB-memory
    And all are connected so that iMovie can find it ?
    from: jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    from Karsten S
    Shorter clips than 1,5 sec might be one of the culptrits
    Bengt cont.
    Set-Up might differ
    • Mac OS - most probably X.7 or more
    • iMovie version - more than iM'11 v. 9.0.4
    Action taken
    • Finalizing project - I never do as I never understood the gain to do so
    • Share as HD to iDVD - never give any gain but if it works the resulting DVD is less quality than if SD-quality was shared
    fps - set
    •  I only use PAL (25fps
    Yours Bengt W

  • Error in user parameter list when I try to export my imovie project

    Please help!  iMovie cannot export this particular movie project, which is 14 minutes and 40 seconds.  It will export for several minutes, then give the following error message:
    Unable to prepare project for publishing.
    The project could not be prepared for publishing because an error occurred. (Error in user parameter list)
    What the heck?  I have iMovie 9.0.4, OSX 10.7.3
    Thank you!!!

    My latest attempt to export resulted in this crash and crash report:
    Date/Time:       2012-02-22 08:42:00 -0800
    OS Version:      10.7.3 (Build 11D50)
    Architecture:    x86_64
    Report Version:  9
    Command:         iMovie
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Version:         9.0.4 (1635)
    Build Version:   2
    Project Name:    iMovieApp
    Source Version:  16350000
    App Item ID:     408981434
    App External ID: 3919357
    Parent:          launchd [172]
    PID:             2402
    Event:           hang
    Duration:        0.32s
    Steps:           4 (100ms sampling interval)
    Pageins:         1
    Pageouts:        0
    Process:         iMovie [2402]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Architecture:    i386
    UID:             501
      Thread 0x1df3d    
      User stack:
        4 ??? (in iMovie) [0x2a6e]
          4 ??? (in iMovie) [0x31b3]
            4 NSApplicationMain + 1054 (in AppKit) [0x9b1a4261]
              4 -[NSApplication run] + 1007 (in AppKit) [0x9af106d5]
                4 ??? (in iMovie) [0x46e9e]
                  4 -[NSApplication sendEvent:] + 4788 (in AppKit) [0x9af7f0e7]
                    4 -[NSWindow sendEvent:] + 7533 (in AppKit) [0x9afe6ca5]
                      4 -[NSControl mouseDown:] + 943 (in AppKit) [0x9b01dcf3]
                        4 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 501 (in AppKit) [0x9b0a2551]
                          4 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2295 (in AppKit) [0x9b01f2b0]
                            4 -[NSCell _sendActionFrom:] + 160 (in AppKit) [0x9b01fef3]
                              4 -[NSControl sendAction:to:] + 102 (in AppKit) [0x9b01fff0]
                                4 ??? (in iMovie) [0x44eee]
                                  4 -[NSApplication sendAction:to:from:] + 232 (in AppKit) [0x9b020113]
                                    4 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x9ba39de1]
                                      4 -[NSSavePanel ok:] + 464 (in AppKit) [0x9b4bd155]
                                        4 -[NSSavePanel dismissWindow:] + 154 (in AppKit) [0x9b4bb4ed]
                                          4 ??? (in iMovie) [0x41440]
                                            4 -[NSApplication endSheet:returnCode:] + 337 (in AppKit) [0x9b1e35d2]
                                              4 -[NSSavePanel _didEndSheet:returnCode:contextInfo:] + 317 (in AppKit) [0x9b4be693]
                                                4 ??? (in iMovie) [0x18c064]
                                                  4 ??? (in iMovie) [0xfaead]
                                                    4 ??? (in iMovie) [0x18fb66]
                                                      4 ??? (in iMovie) [0x18f351]
                                                        4 ??? (in iMovie) [0x6f200]
                                                          4 ??? (in iMovie) [0x6fb02]
                                                            4 MovieExportFromProceduresToDataRef + 49 (in QuickTime) [0x946910d4]
                                                              4 CallComponentDispatch + 29 (in CarbonCore) [0x999854a6]
                                                                4 CallComponent + 223 (in CarbonCore) [0x9998545d]
                                                                  4 SpitMovieComponentDispatch + 95 (in QuickTimeComponents) [0x93efdfb3]
                                                                    4 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x99a0f47d]
                                                                      4 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x99a0f43d]
                                                                        4 callComponentStorage_444 + 32 (in CarbonCore) [0x99960546]
                                                                          4 ??? (in QuickTimeComponents) [0x93f006f6]
                                                                            4 ??? (in QuickTimeComponents) [0x93f19c53]
                                                                              4 ??? (in QuickTimeComponents) [0x93f18db3]
                                                                                4 ??? (in QuickTimeComponents) [0x93f18c85]
                                                                                  4 ??? (in iMovie) [0x6d981]
                                                                                    4 ??? (in iMovie) [0x6de2b]
                                                                                       4 ??? (in iMovie) [0x607c9]
                                                                                         4 MoviesTask_priv + 91 (in QuickTime) [0x944e1495]
                                                                                           4 TaskMovie_priv + 3712 (in QuickTime) [0x944d36c0]
                                                                                             4 MediaMoviesTask + 61 (in QuickTime) [0x944d4580]
                                                                                               4 CallComponentDispatch + 29 (in CarbonCore) [0x999854a6]
                                                                                                 4 CallComponent + 223 (in CarbonCore) [0x9998545d]
                                                                                                   4 Video2ComponentDispatch + 95 (in QuickTimeComponents) [0x93ccf252]
                                                                                                     4 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x99a0f47d]
                                                                                                       4 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x99a0f43d]
                                                                                                         4 callComponentStorage_44444 + 47 (in CarbonCore) [0x99960869]
                                                                                                           4 ??? (in QuickTimeComponents) [0x93cd1938]
                                                                                                             4 ??? (in QuickTimeComponents) [0x93cde7df]
                                                                                                               4 ??? (in QuickTimeComponents) [0x93cdc9cb]
                                                                                                                 4 ??? (in QuickTimeComponents) [0x93cdbae7]
                                                                                                                   2 ??? (in QuickTimeComponents) [0x93cdb5a0]
                                                                                                                     2 ??? (in QuickTimeComponents) [0x9428a757]
                                                                                                                       2 CallComponentDispatch + 29 (in CarbonCore) [0x999854a6]
                                                                                                                         2 CallComponent + 223 (in CarbonCore) [0x9998545d]
                                                                                                                           2 SDH_ComponentDispatch + 95 (in QuickTimeComponents) [0x93cb95bf]
                                                                                                                             2 CallComponentFunctionWithStorageProcInfo + 30 (in CarbonCore) [0x99a0f47d]
                                                                                                                               2 _ZL38CallComponentFunctionCommonWithStoragePPcP19ComponentParametersPFlvEm + 45 (in CarbonCore) [0x99a0f43d]
                                                                                                                                 2 callComponentStorage_4 + 15 (in CarbonCore) [0x999602c4]
                                                                                                                                   2 ??? (in QuickTimeComponents) [0x93cbcebf]
                                                                                                                                     2 QTIdleManagerSetNextIdleTimeNever + 22 (in QuickTime) [0x944c3861]
                                                                                                                                       2 QTIdleManagerSetNextIdleTimeNever_priv + 72 (in QuickTime) [0x944c38b4]
                                                                                                                                         1 QTIdleManagerSetNextIdleTime_priv + 172 (in QuickTime) [0x944ac177]
                                                                                                                                           1 pthread_mutex_unlock + 320 (in libsystem_c.dylib) [0x96341c4c]
                                                                                                                                         1 QTIdleManagerSetNextIdleTime_priv + 49 (in QuickTime) [0x944ac0fc]
                                                                                                                                           1 QTMLGrabMutex + 41 (in QuickTime) [0x94485262]
                                                                                                                                             1 pthread_mutex_lock + 704 (in libsystem_c.dylib) [0x963416f6]
                                                                                                                   2 ??? (in QuickTimeComponents) [0x93cdb5a5]
                                                                                                                     2 swtch_pri + 10 (in libsystem_kernel.dylib) [0x97232cfa]
      Kernel stack:
        3 hndl_allintrs + 290 (in mach_kernel) [0xffffff80002d7bd2]
          3 interrupt + 192 (in mach_kernel) [0xffffff80002c2790]
            3 lapic_interrupt + 121 (in mach_kernel) [0xffffff80002c7859]
              3 cpu_signal_handler + 172 (in mach_kernel) [0xffffff80002c970c]
                3 sync_iss_to_iks + 118 (in mach_kernel) [0xffffff80002c1bc6]
        1 hndl_mach_scall + 213 (in mach_kernel) [0xffffff80002d8015]
      Thread 0x1df4e      DispatchQueue 1701273966
      User stack:
        4 _dispatch_mgr_thread + 53 (in libdispatch.dylib) [0x959ca6a7]
          4 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x97234b5e]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x1e107    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254 (in FWAVCPrivate) [0xf84763]
              4 CFRunLoopRun + 129 (in CoreFoundation) [0x9b9eb1a1]
                4 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x9b9da47c]
                  4 __CFRunLoopRun + 1428 (in CoreFoundation) [0x9b9dada4]
                    4 __CFRunLoopServiceMachPort + 170 (in CoreFoundation) [0x9b9d1c7a]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x97232c22]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1e4a0    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 __select + 10 (in libsystem_kernel.dylib) [0x97234b42]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x1e4dd    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93cbebe6]
              4 TSWaitOnSemaphoreRelative + 24 (in CarbonCore) [0x9995bf76]
                4 TSWaitOnSemaphoreCommon + 490 (in CarbonCore) [0x9995c165]
                  4 TSWaitOnConditionTimedRelative + 178 (in CarbonCore) [0x9995c3ef]
                    4 pthread_cond_timedwait_relative_np + 47 (in libsystem_c.dylib) [0x96346f7b]
                      4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e54a    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x94199e43]
              4 ??? (in QuickTimeComponents) [0x93d2ed0d]
                4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x1e59c    
      User stack:
        4 pthread_cond_timedwait$UNIX2003 + 70 (in libsystem_c.dylib) [0x962f73e0]
          4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e5e9    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93de0b7d]
              4 pthread_cond_wait + 48 (in libsystem_c.dylib) [0x962ee82a]
                4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e5ea    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93de0b7d]
              4 pthread_cond_wait + 48 (in libsystem_c.dylib) [0x962ee82a]
                4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x1e5eb    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeComponents) [0x93de0b7d]
              4 pthread_cond_wait + 48 (in libsystem_c.dylib) [0x962ee82a]
                4 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x9723483e]
      Kernel stack:
        4 hndl_unix_scall + 281 (in mach_kernel) [0xffffff80002d7f39]
          4 unix_syscall + 472 (in mach_kernel) [0xffffff80005ca448]
            4 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              4 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x21689    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeH264.scalar) [0x69a9bedb]
              4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x2168a    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeH264.scalar) [0x69a9bedb]
              4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x2168b    
      User stack:
        4 thread_start + 34 (in libsystem_c.dylib) [0x963466de]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x96342ed9]
            4 ??? (in QuickTimeH264.scalar) [0x69a9bedb]
              4 semaphore_wait_trap + 10 (in libsystem_kernel.dylib) [0x97232c5e]
      Kernel stack:
        4 semaphore_wait_continue + 0 (in mach_kernel) [0xffffff80002345c0]
      Thread 0x22325    
      User stack:
        4 start_wqthread + 30 (in libsystem_c.dylib) [0x963466fe]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x9723502e]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32738    
      User stack:
        4 start_wqthread + 30 (in libsystem_c.dylib) [0x963466fe]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x9723502e]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
          0x1000 -   0x441feb  com.apple.iMovieApp 9.0.4 (1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
        0xf80000 -   0xfb0ff7  com.apple.FWAVCPrivate 52.47 (47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0x69800000 - 0x69b8dfe3  QuickTimeH264.scalar ??? (???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
      0x936d2000 - 0x94422feb  com.apple.QuickTimeComponents.component 7.7.1 (2315) <1826E4DB-15C2-3495-A278-A17ADEDB0A62> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
      0x94482000 - 0x94707fe3  com.apple.QuickTime 7.7.1 (2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
      0x959c9000 - 0x959d7fff  libdispatch.dylib ??? (???) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
      0x962e6000 - 0x963b1fff  libsystem_c.dylib ??? (???) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
      0x9721c000 - 0x9723aff7  libsystem_kernel.dylib ??? (???) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
      0x9991e000 - 0x99c20fff  com.apple.CoreServices.CarbonCore 960.20 (960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
      0x9af0b000 - 0x9b99eff6  com.apple.AppKit 6.7.3 (1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
      0x9b99f000 - 0x9bb76fff  com.apple.CoreFoundation 6.7.1 (635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         AirPort Base Station Agent [218]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x1155       DispatchQueue 1
      User stack:
        4 ??? (in AirPort Base Station Agent) [0x1045f8654]
          4 ??? (in AirPort Base Station Agent) [0x104609353]
            4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
              4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                  4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                    4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1174       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x117e     
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 __select + 10 (in libsystem_kernel.dylib) [0x7fff83493df2]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x1045f7000 -        0x10460efff  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <4B2DADB0-223B-32AA-9438-30FBEA0A8FE6> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         airportd [2788]
    Path:            /usr/libexec/airportd
    Architecture:    x86_64
    UID:             0
      Thread 0x32894    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32895      DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x32896      DispatchQueue 6
      User stack:
        4 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8a402954]
          4 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff83494022]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x32897    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328ae    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328af    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
             0x10a8d6000 -        0x10a90efff  airportd ??? (???) <229F3A9D-B095-3B7D-932E-28F9586C7FD1> /usr/libexec/airportd
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
    Process:         AppleSpell [206]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    UID:             501
      Thread 0x113b       DispatchQueue 1
      User stack:
        4 ??? (in AppleSpell) [0x10ee66a7c]
          4 ??? (in AppleSpell) [0x10ee66d2e]
            4 -[NSSpellServer run] + 74 (in Foundation) [0x7fff85d54c66]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x113f       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Binary Images:
             0x10ee65000 -        0x10ef21ff7  com.apple.AppleSpell 1.7.1 (131.1) <A994D9F1-C4D8-3361-B0F4-112A7BAED8BD> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff85bf8000 -     0x7fff85f11ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         ARDAgent [209]
    Path:            /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
    Architecture:    x86_64
    UID:             501
      Thread 0x114c       DispatchQueue 1
      User stack:
        4 ??? (in ARDAgent) [0x10966b924]
          4 ??? (in ARDAgent) [0x10966ba9c]
            4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
              4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                  4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                    4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1161       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x1190     
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 PrivateMPEntryPoint + 58 (in CarbonCore) [0x7fff8c8b2e36]
              4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x1191     
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 PrivateMPEntryPoint + 58 (in CarbonCore) [0x7fff8c8b2e36]
              4 __recvfrom + 10 (in libsystem_kernel.dylib) [0x7fff83493d7a]
      Kernel stack:
        4 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          4 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            4 recvfrom_nocancel + 248 (in mach_kernel) [0xffffff8000586608]
              4 shutdown + 495 (in mach_kernel) [0xffffff8000585edf]
                4 soreceive + 5591 (in mach_kernel) [0xffffff800057fbb7]
                  4 sbwait + 171 (in mach_kernel) [0xffffff800058428b]
                    4 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                      4 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                        4 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                          4 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                            4 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                              4 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x10966a000 -        0x10972ffff  com.apple.RemoteDesktopAgent 3.5.2 (3.5.2) <9990876B-F973-31E7-80A4-CB93667C9F65> /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8c829000 -     0x7fff8cb45ff7  com.apple.CoreServices.CarbonCore 960.20 (960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         autofsd [80]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    UID:             0
      Thread 0x29d        DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x29e        DispatchQueue 6
      User stack:
        4 _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8a402954]
          4 __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff83494022]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x10eaca000 -        0x10eacbfff  autofsd ??? (???) <A02D5E70-1BB1-30ED-A699-375CB0CCE901> /usr/libexec/autofsd
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
    Process:         blued [22]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    UID:             0
      Thread 0x14e        DispatchQueue 1
      User stack:
        4 ??? (in blued) [0x10d9ffe78]
          4 ??? (in blued) [0x10da356af]
            4 -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff85c03e8b]
              4 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267 (in Foundation) [0x7fff85c03f9f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x155        DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x1f8      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 __select + 10 (in libsystem_kernel.dylib) [0x7fff83493df2]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Binary Images:
             0x10d9fe000 -        0x10dab3fff  blued ??? (???) <85D33825-1A68-3F2C-A78D-6B9E43F3DCA9> /usr/sbin/blued
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff85bf8000 -     0x7fff85f11ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         com.apple.dock.extra [202]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:    x86_64
    UID:             501
      Thread 0x10de       DispatchQueue 1
      User stack:
        4 ??? (in com.apple.dock.extra) [0x100365974]
          4 xpc_service_main + 448 (in XPCService) [0x7fff86ef55ed]
            4 NSApplicationMain + 867 (in AppKit) [0x7fff8628bb88]
              4 -[NSApplication run] + 470 (in AppKit) [0x7fff8600d19d]
                4 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff86010861]
                  4 _DPSNextEvent + 659 (in AppKit) [0x7fff86010f5d]
                    4 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff892fd456]
                      4 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff892fd5c9]
                        4 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff892f631f]
                          4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                            4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                              4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                                4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1105       DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 kevent + 10 (in libsystem_kernel.dylib) [0x7fff834947e6]
      Kernel stack:
        4 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x32993    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32994    
      User stack:
      Kernel stack:
        4 workqueue_exit + 1088 (in mach_kernel) [0xffffff80005a1450]
      Binary Images:
             0x100364000 -        0x100368fff  com.apple.dock.extra 1.0 (1) <A3B7E3DB-E53E-32E4-83F6-6CFF99B13BB1> /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff8347d000 -     0x7fff8349dfff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff86008000 -     0x7fff86c0cfff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff86ef3000 -     0x7fff86efaff7  com.apple.XPCService 1.3 (1) <4C0AE300-9325-3950-A132-1562C03B05CE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
          0x7fff892f4000 -     0x7fff8961eff7  com.apple.HIToolbox 1.8 (???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8a3fe000 -     0x7fff8a40cfff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff8c6e4000 -     0x7fff8c7c1fef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff8d061000 -     0x7fff8d235fff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Process:         configd [16]
    Path:            /usr/libexec/configd
    Architecture:    x86_64
    UID:             0
      Thread 0x113        DispatchQueue 1
      User stack:
        4 ??? (in configd) [0x105bdafcc]
          4 ??? (in configd) [0x105bdb783]
            4 ??? (in configd) [0x105bdc088]
              4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                  4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                    4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x120        DispatchQueue 2
      User stack:
        4 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8a40014e]
          4 __select_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff83493e06]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x122      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 ??? (in configd) [0x105bdca66]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x135      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 ??? (in configd) [0x105be73dd]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x1c4      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 __select + 10 (in libsystem_kernel.dylib) [0x7fff83493df2]
      Kernel stack:
        4 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x1c5      
      User stack:
        4 thread_start + 13 (in libsystem_c.dylib) [0x7fff8c735b75]
          4 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff8c7328bf]
            4 pppcntl_run_thread + 2194 (in PPPController) [0x10601a142]
              4 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8d0a938f]
                4 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8d099676]
                  4 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8d099e64]
                    4 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8d0916fc]
                      4 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8349267a]
      Kernel stack:
        4 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x32890    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x32891    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328b0    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x328b1    
      User stack:
        4 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff8c735b85]
          4 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff83494192]
      Kernel stack:
        4 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Binary Images:
             0x105bda000 -        0x105c03ff7  configd ??? (???) <2F1DBCF7-E9C0-348D-B806-1AA71E536A84> /usr/libexec/configd
             0x10600c000 -        0x10604bfff  com.apple.SystemConfiguration.PPPController 1.7 (1.7) <E9A5AB07-EF72-34E2-9742-112AEB9C98AE> /System/Library/SystemConfiguration/PPPController.bundle/Contents/MacOS/PPPCont roller
          0x7fff8347d000 -     0x7

  • This pops up when exporting in iMovie "Unable to prepare project for publishing: The project could not be prepared for publishing because an error occurred. (ParamErr: error in user parameter list)" I have turned off my Time Machine in terminal.

    This pops up when exporting in iMovie "Unable to prepare project for publishing: The project could not be prepared for publishing because an error occurred. (ParamErr: error in user parameter list)" I have turned off my Time Machine in terminal yet it remains. What do I do, I need your help PLEASE.

    Hi
    Error -50 paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Video codec
    • streamingDV, AIC etc. (not .avi, .mp4, .m4v, .wmv etc as they are containers not codecs)
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    Where do Your material come from
    • Camera
    • External hard disk
    • USB-memory
    And all are connected so that iMovie can find it ?
    Yours Bengt W

  • Using IN Operator in Query Parameter querying an Oracle dataset

    I have created a main data set querying from Oracle in which I have two query parameters that are multi-valued lists.  I created a data set for each of those multi-valued lists.  These two parameters are configured to be multi-valued and selected
    from the query.  On the main data set, the parameters are set to an expression: = Join(Parameter.Field.Value, ",").  If I sent just one value as a default in each of those parameters, works great.  If I select "Select All"
    in my drop down and rerun the report then I get "Query execution failed for dataset" and "rsErrorExecutingCommand".  I am using Report Builder 3.0.  I have seen some older posts saying you have to use a stored procedure to generate
    a string from the selects to be passed to the parameter?  I don't get this.  Obviously I want to stick with using a query parameter for the performance gain.  Is there an easy way to make this work?
    Grateful for any help!  Laurie

    Laurie, you are right that the execution time is too long.  Your instinct is correct to put the burden on the database to return the correct resultset, rather than filtering it in the report.  
    I think I wasn't clear about my explanation and you may have made this more complicated than it needs to be.  The functionality that you want is already in ReportBuilder.  Please check out this example from MS:
    http://technet.microsoft.com/en-us/library/aa337396(v=sql.105).aspx
    This is the correct syntax:
    AND soh.SalesPersonID IN (@BusinessPersonID)
     Is this how you have your query configured? If not, could you supply an example.
    Hope that helps,
    Mark

  • Getting error, No SAMLart parameter in oracle identity federation.

    what does the following error means,
    Web Intersite Signon Error
    RECEIVER: ERROR: No SAMLart parameter in the inter-site signon request.
    We are destination domain and the client is getting this error when trying to federate to our environment. The method is Post profile.
    Thanks.
    Edited by: user504421 on Mar 20, 2009 1:34 PM

    With POST, it looks for SAMLArt in the URL (steps 3 and 4 in http://download.oracle.com/docs/cd/E10773_01/doc/oim.1014/b25355/deployinstall.htm#CHDFEHIC). Are you sure you don't have anything else going on, e.g artifact resolution based on a reference to an assertion (vs full assertion) in the URL?

Maybe you are looking for

  • Adobe Photoshop Elements 11 Error after disk install

    I have a windows 7 64 bit system, I purchased Elements both Photoshop and Premiere 11 disks.  After install without incident, Premiere works fine, but Photoshop gives me this message upon opening the program.  Adobe Photosp Elements 11 has stopped wo

  • Real benefits of object oriented programming

    Hello every one, I am working on a paper to assess the real benefits object oriented technology brought to IT industry. Can any one help me by providing reference information. Thank you Abrillo

  • Creating an Hyperion Planning connection in Financial Reporting

    We've got a lot of FM and Essbase reports, but now I'd like to connect to Planning so that I can display cell text in a report but I just can't get the connection setup from Workspace. Two things: 1. There's no button to pick my Application as with o

  • Cannot drag iMovie clips to Timeline!

    I imported some movies from my camcorder and when I try to drag them from the clip viewer, they just ghost out and won't move. I have worked successfully with this same camcorder and iMovie for many months. The only difference is these are longer cli

  • Enhancement spot BADI_MSA50

    hi all, has anyone worked on the following enhancement spots BADI_ORDER_CHANGE BADI_ORDER_SELECT BADI_ORDER_UPDATE Regards M