Executing multiple scripts with error reporting where necessary.

Hi,
I'm a developer using SQL developer to create scripts for Tables / Views / Procs. I'm relatively new to Oracle, as I've been using SQL server mostly. So please bear with me.
Now, the dev team constantly upset the dba due to subtle syntax issues between SQL Developer and SQL+. So, what we are now meant to do is test our scripts via SQL+ on the understanding that if it works with that it's good.
However, you DBAs know that developers don't always do what they are told :).
Hence, I have been tasked each morning to run all the scripts to make sure they are ok.
I know I can execute multiple scrips easily like this....
@c:\Scripts\Table1
@c:\Scripts\Table2
@c:\Scripts\Proc1
@c:\Scripts\Proc2
etc
However, this seems to echo all the contents of the scripts in the output window. So it's a bit of a task to trawl through the output to see if there are any errors.
What I would really like to do is as above, but rather than echoing the script contents, just provide output to say that each object (tables / views / procs) has been created correctly, or if an error occurred, output the relevant object name and the error.
eg - If Table2 DDL has errors, output along the lines of....
Table1 created successfully.
Error creating Table2: <Invalid data type>
Proc1 created successfully.
Error creating Proc2:<Object Table2 does not exist>
Is this possible?
Example pretty please.
Ultimately, I'd like to email the output automatically - however, that's a task for another day :).
Many thanks
DC

I'm not sure what you mean by "echo all the contents of the scripts in the output window". If I create a script a.sql
drop table a;
create table a ( col1 number );
drop table b;
create table b ( col1 number );
drop table c;
-- Note the error in the definition of c
create table c ( 123 number ); and run it in a vanilla SQL*Plus session, I get the output you appear to be looking for
SQL> @c:\temp\a.sql
Table dropped.
Table created.
Table dropped.
Table created.
drop table c
ERROR at line 1:
ORA-00942: table or view does not exist
create table c ( 123 number )
ERROR at line 1:
ORA-00904: : invalid identifierAre you looking for something different? Or are you getting different results?
Justin

Similar Messages

  • Session completed successfully with errors reported in error tables.

    Which table would contain the errors for this error message?
    "Session completed successfully with errors reported in error tables."
    The Snp_Exp_Txt table?
    Edited by: user8702914 on Mar 2, 2011 11:28 AM

    Sutirtha,
    The FLOW_CONTROL option must be set to 'Yes', as it is the CKM that creates and populates the E$ table. If it was set to 'No' there would not be any 'errors reported in error table' as the error table would not exist.
    Cheers
    Bos

  • SQLDeveloper tool script execution aborts with Error report: No more data to read from socket

    Hello,
    Strange behaviour of  the SQLdeveloper tool while executing script with typical DDLs like:
    Create Table,
    Alter Table
    Create Trigger ( use of :new and : old attributes in tehe body of trigger ).
    Insert Into....
    Scripts works ok from time to time.
    But sometimes coincidentally aborts with the error :
    Error report:
    No more data to read from socket
    Do not understand where is the problem.
    Scripts works ok when executed in SQL*Plus on server ( where Oracle RDBMS resides ).
    The version of SQLDeveloper is
    Version 3.2.20.09 Build MAIN-09.87
    The version of RDBMS is  11.2.0.2.0 .
    Thanx for any reference or direction or hint for upgrade or experience.
    Greetings,

    Welcome to the forum!
    Please provide the 4 digit Oracle version (result of SELECT * FROM V$VERSION) for the source and target servers; 10g and 11g are not versions. You also mention sql developer so what is the exact version you are using?
    >
    If delete the "OF out_a.ALLOCATION_ID" of the for update clause of CURSOR exist_allocation, this prolbem will not happen, and the code is comple succesfully on sql developer for oracle 10g.
    >
    Please clarify what works and what doesn't work because your statements are both incorrect and misleading.
    You can't delete the "OF out_a.ALLOCATION_ID" of the for update clause or you would get a syntax error by leaving FOR UPDATE OF with nothing specified after it.
    Also you original statement said
    >
    But when compile a package which is fine on oracle 10g
    >
    But now you say that if you delete the "OF..." the problem doesn't happen and the code compiles on 10g.
    Does the original code compile on 10g or not? Does it compile on 11g or not? After the original code is migrated to 11g does it compile? That is, the code is there can you manually compile it?

  • Smo.Server.ExecuteNonQuery throw an error executing a script with IF statement

    I am trying to executed this script (see below) using Smo libraries with powershell (this script works in SSMS)
    use master;
    GO
    use master;
    if (not exists(select * from sys.databases where name = 'dbname'))
        alter database [dbname] set offline with rollback immediate;
    GO
    however, I always got an
    Exception calling "ExecuteNonQuery" with "1" argument(s): "An exception occurred while executing a Transact-SQL statement or batch."
    if I delete the if statement, the script execute without erros... is there any problem to use if statements?  I would really appreciate any help
    regards.!

    Olaf
    Helper answer does make sense and you won't be able to modify database which doesn't exists. However, your syntax's are correct.
    However, if you are executing it via Powershell as mentioned by HoroChan then
    I recommend you to increase the statementTimeout to appropriate value. 
    There may be chances that alerting database got hanged and exceeded the timeout.  So instead of IMMEDIATE ROLLBACK you can use
    WITH NO WAIT
    From MSDN:
    Specifies that if the requested database state or option change cannot complete immediately without waiting for transactions to commit or roll back on their own, the request will fail.
    So your overall code will look like 
    USE MASTER;
    IF EXISTS(select * from sys.databases where name = 'dbname')
    ALTER DATABASE [dbname] SET OFFLINE WITH NO_WAIT
    GO
    Hope this will help.

  • Error when executing multiple scenarios with same ProgramID for RFC-JDBC

    Hi,
    I am working on the RFC-JDBC scenario.
    I see the following error in the dev_jrfc.trc file when I try to execute multiple scenarios which are using same program id (different communication channels).
    RfcException:
        message: Commit fault: com.sap.aii.af.rfc.afcommunication.RfcChannelMismatchException: Wrong Sender Agreement:The Sender agreement does not have channel CC_SAP_XXXXX configured for the functionmodule Z_XXXXX_SO_CREATE_CHANGE
        Return code: RFC_CLOSED(6)
        error group: 108
        key: RFC_ERROR_INTERNAL
    Can one program id be used for multiple scenarios? Or do we need to create a new ProgramId for each scenario.
    Any response will be highly appreciated.
    Thanks
    Shyam

    Hello Shyam,
    >>>>>>>>Do you think that I still need to create a new Program Id for each of these processes.
    You should not use same program ID for different RFC adapters. It is recommended by SAP (check FAQ's on RFC).
    Although technically you can use but it gives you unpredictable behaviour based on connection pool.

  • How to execute vb script with out using Remote manager in oim 11g r2

    Hi Currently,
    i have a requirement to execute  vb script (present on a remote machine in which connector server is installed) from oim machine while using Exchange connector (11.1.1.6).
    This can be achieved by using remote manager,but i dont want to use remote manager.
    Hence decided to use Action scripts.
    As per connector configuration,
    i have configured Action scripts in Lookup.Exchange.UM.Configuration lookup definition, by means of three entries
    After Create Action Language      Shell
    After Create Action Target           Resource
    After Create Action File              /home/scripts/Disable.bat
    Disable.bat has the following ,
    Powershell.exe -File C:\scripts\Setup.vbs
    -%Log on Name%
      Exit
    As Setup.vbs is expecting a parameter of log on name, i was providing the same.
    But while creating the user,as this script gets called, getting the following error and hence 'create User' is getting failed.
    Problem while PowerShell execution System.Management.Automation.RemoteException: This task does not support recipients of this type. The specified recipient XXXXXXXXXXX...XXXXX is of type UserMailbox. Please make sure that this recipient matches the required recipient type for this task.
    While provisioning the user to Exchange , i have selected 'Recepient type' as 'User Mail box' explicitly, but still getting the error.
    Please provide any pointers to resolve the issue.
    Thanks in advance
    Kumar

    As far as I know Oracle and MySQL are two different products.
    Why do you clutter an Oracle forum with MySQL questions?
    If MySQL is such a tremendous RDBMS, like many people state (as 'free' means per definition better),
    why don't you visit a MySQL forum where fellow MySQL aficionados can answer you MySQL questions?
    In short, why don't you stop abusing Oracle forums?
    Sybrand Bakker
    Senior Oracle DBA

  • Executing multiple commands with sudo fails

    Hi,
    We're having trouble with sudo and bash.  When we want to execute multiple commands and there are spaces, the commands don't run.  Here's an example of what works:
    [root@erpapp1-prod ~]# sudo -i -u oracle bash -c 'ls;pwd'
    In this case, I get a listing of the files in /home/oracle followed by the current directory of /home/oracle.
    Here's an example of what DOESN'T work:
    [root@erpapp1-prod ~]# sudo -i -u oracle bash -c 'ls; pwd'
    Notice the space before "pwd".  In this case, all I get is the listing of files in /home/oracle.
    Caveat:  I'm a real beginner with Linux.  I've compared many of the files (/home/oracle/.bash_profile, /home/oracle/.bashrc, /etc/bashrc, /etc/profile) from this server to another where we don't have issues and, other than some logic being in different order, don't see much of a difference.  Again, very beginner here.
    Any ideas?  Thanks!
    Todd

    What shows up as a space may not necessarily be a space. For instance, it could be some control character like a newline, which might interfere with the execution. For example:
    $ test=`echo -e "test;\ntest"`
    $ echo $test
    test; test
    $ echo "$test"
    test;
    test
    Here is another example:
    # test=`echo -e "ls;\npwd"`
    # su - oracle -c "$test"
    oradiag_oracle
    /home/oracle
    # su - oracle -c $test
    oradiag_oracle
    I cannot guess how you construct the command list. Perhaps the problem is a text files that was created under Windows and copied as binary to Linux, or a shell script using a different IFS environment variable, etc.
    Personally I would use a different approach. From a security standpoint it is a bad idea to use passwords at the command prompt because every user can see them using the ps -ef  output.

  • Executing sql scripts with command line Sql plus

    Hello
    Well I will be gradefull if I have an answer to the follow questions
    a) How can I connect to a remote XE using sqlplus (command line)?
    for example I'm trying to connect like this : sqlplus sys/syspassw@//remoteserver:1521/xe
    and I get responce from server that I have to connect as SYSDBA or SYSOPER, so what is the proper syntax in this case?
    b) I want to execute a script file with DDL commands from Windows conscole using sqlplus. Inside this script I have the connect command and others. Is there a way to pass the name of script file as parameter to the sqlplus and execute it ? If yes what is the proper syntac from command line of Windows?
    Thank you

    There are two ways to do that...
    Either use the spool command in sqlplus, or on your command line calling sqlplus use a >> to direct the output to a file. Usually the spool is cleaner.
    It goes like this:
    spool C:\logfile.txt
    {sql commands here}
    spool off
    or
    sqlplus /nolog @sqlfile.sql >> C:\logfile.txt
    The output will be formatted slightly differently, and if you use the DOS method you won't be able to see the output as it's running.
    ~Jer

  • ITunes 10.5.3 keeps crashing with error report

    This is the error report (sorry, but I thought it would be most useful to paste it here! ):
    Date/Time:       2012-03-01 22:22:54 +0000
    OS Version:      10.7.3 (Build 11D50b)
    Architecture:    x86_64
    Report Version:  9
    Command:         iTunes
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Version:         10.5.3 (10.5.3)
    Build Version:   1
    Project Name:    iTunes
    Source Version:  10530301
    Parent:          launchd [143]
    PID:             1580
    Event:           hang
    Duration:        0.98s
    Steps:           10 (100ms sampling interval)
    Pageins:         0
    Pageouts:        0
    Process:         iTunes [1580]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Architecture:    x86_64
    UID:             501
      Thread 0x42041      DispatchQueue 1
      User stack:
        10 ??? (in iTunes) [0x107bd0114]
          10 ??? (in iTunes) [0x107bd02ad]
            10 -[NSApplication run] + 470 (in AppKit) [0x7fff96b1719d]
              10 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in AppKit) [0x7fff96b1a861]
                10 _DPSNextEvent + 659 (in AppKit) [0x7fff96b1af5d]
                  10 BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8ee05456]
                    10 ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8ee055c9]
                      10 RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8edfe31f]
                        10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                          10 __CFRunLoopRun + 1617 (in CoreFoundation) [0x7fff8c5c3001]
                            10 __CFRunLoopDoTimer + 534 (in CoreFoundation) [0x7fff8c5e2776]
                              10 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (in CoreFoundation) [0x7fff8c5e2c24]
                                10 ??? (in iTunes) [0x107cc8c78]
                                  10 ??? (in iTunes) [0x107cc9f63]
                                    10 ??? (in iTunes) [0x107cca74b]
                                      10 ??? (in iTunes) [0x107eb6d97]
                                        10 ??? (in iTunes) [0x1082df02f]
                                          10 ??? (in iTunes) [0x1082d6ff2]
                                            10 ??? (in iTunes) [0x1083fa09a]
                                              10 ??? (in iTunes) [0x1083f9d60]
                                                10 ??? (in iTunes) [0x1083f9b63]
                                                  10 ??? (in iTunes) [0x1083e74ca]
                                                    10 ??? (in iTunes) [0x10829cd03]
                                                      10 ??? (in iTunes) [0x107e6b9f4]
                                                        10 ??? (in iTunes) [0x1081bb92e]
                                                          10 ??? (in iTunes) [0x1081b9969]
                                                            10 ??? (in iTunes) [0x1081b97e4]
                                                              10 ??? (in iTunes) [0x1081b9241]
                                                                10 ??? (in iTunes) [0x1081bc522]
                                                                  10 ??? (in iTunes) [0x1081bb389]
                                                                    10 ??? (in iTunes) [0x107e7748e]
                                                                      10 AVCFAssetImageGeneratorCopyCGImageAtTime + 72 (in AVFoundationCF) [0x108ff95e9]
                                                                        10 generator_copyCGImageAtTime + 215 (in AVFoundationCF) [0x108ffa31d]
                                                                          10 ??? (in MediaToolbox) [0x7fff980da33e]
                                                                            10 ??? (in MediaToolbox) [0x7fff980d9d75]
                                                                              10 FigSemaphoreWaitRelative + 181 (in CoreMedia) [0x7fff9797fd85]
                                                                                10 WaitOnCondition + 14 (in CoreMedia) [0x7fff9797fb8d]
                                                                                  10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4204f      DispatchQueue 2
      User stack:
        10 _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff933b414e]
          10 kevent + 10 (in libsystem_kernel.dylib) [0x7fff8bb907e6]
      Kernel stack:
        10 kqueue_scan + 416 (in mach_kernel) [0xffffff8000537d10]
      Thread 0x4205e    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4206a    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107be6b2b]
                10 ??? (in iTunes) [0x107bd649a]
                  10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4206d    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 __select + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x42070    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107beecaa]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x42097    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 _ZL13startIOThreadPv + 148 (in CoreVideo) [0x7fff91c4785d]
              10 CVDisplayLink::runIOThread() + 710 (in CoreVideo) [0x7fff91c47b3c]
                10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4209f    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x1084af8dd]
                10 ??? (in iTunes) [0x1084af8b8]
                  10 ??? (in iTunes) [0x107bd63d6]
                    10 ??? (in iTunes) [0x107bd649a]
                      10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x420a0    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x107cbc9cd]
              10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420a1    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339db5]
                  10 ??? (in iTunes) [0x1083393c0]
                    10 __select + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fdf2]
      Kernel stack:
        10 wakeup + 992 (in mach_kernel) [0xffffff80005526a0]
      Thread 0x420a5    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x10832ba9e]
                10 ??? (in iTunes) [0x10832b8fb]
                  10 __accept + 10 (in libsystem_kernel.dylib) [0x7fff8bb8f47a]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 accept_nocancel + 469 (in mach_kernel) [0xffffff80005876f5]
              10 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                10 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                  10 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x420a6    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x10832ba9e]
                10 ??? (in iTunes) [0x10832b8fb]
                  10 __accept + 10 (in libsystem_kernel.dylib) [0x7fff8bb8f47a]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 accept_nocancel + 469 (in mach_kernel) [0xffffff80005876f5]
              10 msleep + 119 (in mach_kernel) [0xffffff8000552a27]
                10 wakeup + 267 (in mach_kernel) [0xffffff80005523cb]
                  10 lck_mtx_sleep + 74 (in mach_kernel) [0xffffff8000227e6a]
                    10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                      10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                        10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x420a9    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420ce    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420df    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x420f0    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4210a    
      User stack:
        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4210b    
      User stack:
        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4210c    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 __NSThread__main__ + 1575 (in Foundation) [0x7fff8ea986c6]
              10 -[NSThread main] + 68 (in Foundation) [0x7fff8ea9874e]
                10 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in Foundation) [0x7fff8eaa3ffb]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x42110    
      User stack:
        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x4219e    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339d10]
                  10 ??? (in iTunes) [0x108339556]
                    10 ??? (in iTunes) [0x107bd63d6]
                      10 ??? (in iTunes) [0x107bd649a]
                        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x421a1    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339d10]
                  10 ??? (in iTunes) [0x108339556]
                    10 ??? (in iTunes) [0x107bd63d6]
                      10 ??? (in iTunes) [0x107bd649a]
                        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x421a2    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x108339d10]
                  10 ??? (in iTunes) [0x108339556]
                    10 ??? (in iTunes) [0x107bd63d6]
                      10 ??? (in iTunes) [0x107bd649a]
                        10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42231    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x423ff    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6e26]
                10 ??? (in iTunes) [0x10837b0e5]
                  10 ??? (in iTunes) [0x10837b03b]
                    10 ??? (in iTunes) [0x10837b1b3]
                      10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42f91    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x42f92    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bd62ed]
                10 CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8c5d238f]
                  10 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff8c5c2676]
                    10 __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff8c5c2e64]
                      10 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8c5ba6fc]
                        10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        9 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
        1 hndl_mach_scall64 + 19 (in mach_kernel) [0xffffff80002d8383]
          1 thread_set_child + 336 (in mach_kernel) [0xffffff80002aeb80]
            1 mach_msg_overwrite_trap + 442 (in mach_kernel) [0xffffff800021bc5a]
              1 ipc_mqueue_receive + 63 (in mach_kernel) [0xffffff80002157ff]
                1 thread_block_reason + 275 (in mach_kernel) [0xffffff800022f383]
                  1 thread_go + 608 (in mach_kernel) [0xffffff800022dfd0]
                    1 processor_idle + 149 (in mach_kernel) [0xffffff800022d2e5]
                      1 machine_idle + 163 (in mach_kernel) [0xffffff80002c4213]
      Thread 0x42f9a    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 ??? (in iTunes) [0x1083afec6]
              10 ??? (in iTunes) [0x107bf6eb6]
                10 ??? (in iTunes) [0x107ebe06b]
                  10 ??? (in iTunes) [0x107ebd43a]
                    10 ??? (in iTunes) [0x107f84bdd]
                      10 ??? (in iTunes) [0x107f86d5d]
                        10 ??? (in iTunes) [0x107bd63d6]
                          10 ??? (in iTunes) [0x107bd649a]
                            10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42fb6    
      User stack:
        10 start_wqthread + 13 (in libsystem_c.dylib) [0x7fff902a1b85]
          10 __workq_kernreturn + 10 (in libsystem_kernel.dylib) [0x7fff8bb90192]
      Kernel stack:
        10 workqueue_exit + 1616 (in mach_kernel) [0xffffff80005a1660]
      Thread 0x42ffb    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 figThreadMain + 385 (in CoreMedia) [0x7fff97980b22]
              10 ??? (in MediaToolbox) [0x7fff98066e57]
                10 FigSemaphoreWaitRelative + 181 (in CoreMedia) [0x7fff9797fd85]
                  10 WaitOnCondition + 14 (in CoreMedia) [0x7fff9797fb8d]
                    10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Thread 0x42ffc    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 figThreadMain + 385 (in CoreMedia) [0x7fff97980b22]
              10 ??? (in VideoToolbox) [0x7fff8f7b27a2]
                10 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8bb8e67a]
      Kernel stack:
        10 ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff80002158b0]
      Thread 0x4300b    
      User stack:
        10 thread_start + 13 (in libsystem_c.dylib) [0x7fff902a1b75]
          10 _pthread_start + 335 (in libsystem_c.dylib) [0x7fff9029e8bf]
            10 figThreadMain + 385 (in CoreMedia) [0x7fff97980b22]
              10 ??? (in MediaToolbox) [0x7fff97ffaaa4]
                10 FigSemaphoreWaitRelative + 181 (in CoreMedia) [0x7fff9797fd85]
                  10 WaitOnCondition + 14 (in CoreMedia) [0x7fff9797fb8d]
                    10 __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8bb8fbca]
      Kernel stack:
        10 hndl_unix_scall64 + 19 (in mach_kernel) [0xffffff80002d8363]
          10 unix_syscall64 + 507 (in mach_kernel) [0xffffff80005caa7b]
            10 psynch_cvwait + 1913 (in mach_kernel) [0xffffff800059f149]
              10 ksyn_block_thread_locked + 67 (in mach_kernel) [0xffffff800059a7d3]
                10 thread_block_reason + 299 (in mach_kernel) [0xffffff800022f39b]
                  10 thread_continue + 1661 (in mach_kernel) [0xffffff800022f11d]
                    10 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c0939]
      Binary Images:
             0x107bcd000 -        0x108c57fef  com.apple.iTunes 10.5.3 (10.5.3) <F2A947DF-4408-401C-43EF-340F966C91CC> /Applications/iTunes.app/Contents/MacOS/iTunes
             0x108fe4000 -        0x109010ff7  com.apple.avfoundationcf 2.0 (63.1) <B36CB7A2-C5EB-3BB6-924B-531868A092EB> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
          0x7fff8bb79000 -     0x7fff8bb99fff  libsystem_kernel.dylib ??? (???) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8c58a000 -     0x7fff8c75efff  com.apple.CoreFoundation 6.7.1 (635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8ea3e000 -     0x7fff8ed57ff7  com.apple.Foundation 6.7.1 (833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8edfc000 -     0x7fff8f126ff7  com.apple.HIToolbox 1.8 (???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f73e000 -     0x7fff8fb70fef  com.apple.VideoToolbox 1.0 (705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
          0x7fff90250000 -     0x7fff9032dfef  libsystem_c.dylib ??? (???) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
          0x7fff91c46000 -     0x7fff91c6eff7  com.apple.CoreVideo 1.7 (70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
          0x7fff933b2000 -     0x7fff933c0fff  libdispatch.dylib ??? (???) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
          0x7fff96b12000 -     0x7fff97716fff  com.apple.AppKit 6.7.3 (1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff97962000 -     0x7fff979a9ff7  com.apple.CoreMedia 1.0 (705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
          0x7fff97f95000 -     0x7fff98333fef  com.apple.MediaToolbox 1.0 (705.61) <F48F2150-0573-354C-BBB2-BA52DD0FD0AB> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    Process:         AirPort Base Station Agent [190]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    UID:             501
      Thread 0x6e0        DispatchQueu

    Turns out the podcast I was downloading was corrupted. Deleted the podcast and all was well.
    Of course I did a complete software reinstall anyway(!) :)

  • HT6114 computer gives restart message with error report, follows update 10.9.2

    following update to 10.9.2 get restart message with error report

    Hi g4towerman,
    Thanks for visiting Apple Support Communities.
    You may find the information in this article helpful with diagnosing and resolving the error you are seeing:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem."
    http://support.apple.com/kb/TS4636
    Best Regards,
    Jeremy

  • Need help with error report. itunes won't come up

    I tried to download itunes many times and a error report comes up everytime. I already sent it once but itunes won't come up. what do I do?

    I tried to download itunes many times and a error report comes up everytime. I already sent it once but itunes won't come up. what do I do?

  • Executing multiple scripts using sqlcmd utility and halt execution on error

    Hello Everyone,
    This is a kind of urgent. I'm stuck with this from last couple of days and had a bad weekend due to this.
    Any help on this topic will be appreciated.
    I'm running through an issue in which I am executing 214 sql scripts in a folder using
    sqlcmd -S %Server% -E -d Employee2K6 -b -i "!dir!!file" -b -r1 1>NUL 2>"%logs%\!file!.log"
    I'm able to generate the logs as well.  I'm not able to stop the execution on error.
    Can anybody tell me how to stop the subsequent scripts execution if any of the scripts fails?
    Many Thanks!
    Kusum 

    Hi Visakh,
    Thanks for the reply. 
    I think I didn't put together my question correctly here. 
    Here's some more information for you.
    I'm executing the below mentioned command in a batchfile.
    sqlcmd -S %Server% -E -d Employee2K6 -b -i "!dir!!file" -b -r1 1>NUL 2>"%logs%\!file!.log"
    the !dir!!file here brings the folder that contains 214 scripts. I want the script execution to halt whenever a script
    fails.
    Right now all the scripts are getting executed and if some of them fails it generates the logs as well.
    I checked sqlcmd commands to halt execution on error. The msdn has it has -b but that's not working for me.
    Any help on this is highly appreciated.
    Thanks!

  • BAPI multiple records with error log-- Ex.Error & Success

    Hi,
    I have bapi with 10 records, while executing in loop , if 6th number records stuck due to error then i want it should proceed for 7th records. Program should not stop even i am getting error in middle for records.
    and at last i want a summery for all successful and fail records in Standard BAPI.
    How to do that ?
    Already i Erich existing forum but i could not found related one.

    hi,
    you can display the error if you want.
    it will not stop while some thing or record is an error record in the middle of the processing.
    you can store error and success messages into one itnernal table and display those at the last.
    balajia

  • How to execute SQL scripts with MaxDB ..?

    Hi all,
    i got some clue from another thread and i observed the command is like
    sqlcli -d DBNAME -u SQLUSER,SQLPASS -i filename.sql -c <delimiter> is there,
    when i use this the only first query is successfully executing,
    this might be problem with delimiter.
    can any body help how to use delimiter in the script file with an example.
    thanks in advance.
    --Hari

    Hi,
    Sample Script
    CREATE TABLE city
    (zip                CHAR (5)    KEY CONSTRAINT zip BETWEEN '10000' AND '99999',
    name               CHAR(20)    NOT NULL,
    state              CHAR(2)     NOT NULL)
    CREATE TABLE customer
    (cno                FIXED (4)   KEY CONSTRAINT cno BETWEEN 1 AND 9999,
    title              CHAR (7)    CONSTRAINT title IN ('Mr', 'Mrs', 'Company'),
    firstname          CHAR (10)   ,
    name               CHAR (10)   NOT NULL,
    zip                CHAR (5)    CONSTRAINT zip BETWEEN '10000' AND '99999',
    address            CHAR (25)   NOT NULL,
    FOREIGN KEY (zip) REFERENCES city ON DELETE RESTRICT)
    \dt customer
    COMMIT
    Regards
    Ayyapparaj

  • Report multiple failures with TestStand reporting

    I'm pretty new to TestStand so please bear with me. I'm using LabView to test a connector on a digital interface board. So I'm reading and writing dig. signals on say 15 pins in a test. I'm using TestStand to run my VI's. When a test fails TestStand seems to only report one measurement at a time. I want all of the pins that failed to show up in the TestStand report in a format like :
    InputPin:A1 OutputPin:B1 Expected:0 Read:1
    InputPin:a2 outpuPIn:b1 expected:1 read:0
    I tried using the ReportText section of the TestData Cluster but I couldn't format it properly. All of the data sort of runs into each other like this
    input:a1 output:b1 expect:0 read:1 input:a2 output:b2
    the carriage returns I tried to put in were i
    gnored.
    Does anybody know how I can report a lot of failures in one report. I hope I explained properly.Thanks

    Hi,
    Find attached an example using the MultipleNumericLimitTest step type.
    All it does is use the array found in Locals call Digital as the DataSource for the Limits. You can check this by selecting the step and doing a right mouse click - select Edit Limits. Then select the Data source Tab. I have add 16 Measurements, one for each of the array elements.
    This will give a you a result of each element of the array in the report for that step. But by default it will look like:
    Measurement[0] (Measurement 0):
    Limits:
    Low: 0b1
    Comparison Type: EQ (==)
    Data: 0b0
    Status: Failed
    To get the format you require will mean modifying the report sequence file.
    Hope this helps a bit
    Regards
    Ray
    Farmer
    Regards
    Ray Farmer
    Attachments:
    Sequence_File1.seq ‏26 KB

Maybe you are looking for