Caluclate time for insertion

hi ,
Heads up : oracle 10g
I have insert SQL script for insertion into table , It takes long time to insert into table.
I have tried loading by disable indexes , but some how want to discard that process and want to narrow down on how a batch of 100 rows take to insert from the insert SQL script . unfortunately I cant use wonderful features of SQLLDR . as the data come in excel format.
please help !

804282 wrote:
Yes , I make a repetitive (manual insert stmnts) SQL scripts. This means that each of these SQL statements need to be compiled (hard parsed). This is very expensive and consumes a lot of CPU. A better method is soft parsing - create a single SQL statement with bind variables. This compiled SQL can then be used and re-used again and again for inserting different row values.
Basically this requires a hard parse. Each of these SQL statements requires the SQL engine to create a cursor. A 100,000 SQL statements need to be executed, then a 100,000 cursors are created.
insert into foo_tab values( 1 );
insert into foo_tab values( 2 );
insert into foo_tab values( 100000 );The correct method is using bind variables. Your create a single SQL that contains bind variables. The SQL statement looks as follows:
insert into foo_tab values( :var );The +:var+ is a the bind variable - and this cursor is executed again and again by supplying different values, thereby inserting new rows. One cursor used for inserting a 100,000 rows.
Here's an practical example of the performance difference:
SQL> create table foo_tab( id number );
Table created.
SQL> var maxrows number
SQL> exec :maxrows := 100000;
PL/SQL procedure successfully completed.
SQL> -- insert using hard parsing
SQL> declare
  2          t1      number;
  3  begin
  4          t1 := dbms_utility.get_cpu_time;
  5          for i in 1..:maxrows
  6          loop
  7                  execute immediate 'insert into foo_tab values( '||i||' )';
  8          end loop;
  9          dbms_output.put_line( 'time: '||to_char(dbms_utility.get_cpu_time-t1) );
10          dbms_output.put_line( 'rows/sec: '||to_char (:maxrows/(dbms_utility.get_cpu_time-t1),9990.0));
11          rollback;
12  end;
13  /
time: 4144
rows/sec:    24
PL/SQL procedure successfully completed.
SQL> -- inserting using soft parsing
SQL> declare
  2          t1      number;
  3  begin
  4          t1 := dbms_utility.get_cpu_time;
  5          for i in 1..:maxrows
  6          loop
  7                  execute immediate 'insert into foo_tab values( :0 )' using i;
  8          end loop;
  9          dbms_output.put_line( 'time: '||to_char(dbms_utility.get_cpu_time-t1) );
10          dbms_output.put_line( 'rows/sec: '||to_char (:maxrows/(dbms_utility.get_cpu_time-t1),9990.0));
11          rollback;
12  end;
13  /
time: 304
rows/sec:   329
PL/SQL procedure successfully completed.
SQL> Using bind variables in the above example enables us to insert 329 rows per seconds. Not using bind variables and hard parsing instead, reduces the insert rate to 24 rows per second. That is more than a 100x slower!
So how do you do it using your data? You cannot with a SQL script - the SQL*Plus client is a bit primitive and does not provide the ability to turn a script containing a 100,000 insert statements into a bind variable statement. You can force cursor sharing for that Oracle session - this work-around will improve performance a little bit, but it will still be significantly slower than explicitly using bind variables.
Instead, you should look at using an external table or SQL*Loader and load the data in CSV format. These approaches will ensure that proper SQL is used with bind variables. It can also load in parallel using Oracle's Parallel Query feature.

Similar Messages

  • Query is taking too much time for inserting into a temp table and for spooling

    Hi,
    I am working on a query optimization project where I have found a query which takes hell lot of time to execute.
    Temp table is defined as follows:
    DECLARE @CastSummary TABLE (CastID INT, SalesOrderID INT, ProductionOrderID INT, Actual FLOAT,
    ProductionOrderNo NVARCHAR(50), SalesOrderNo NVARCHAR(50), Customer NVARCHAR(MAX), Targets FLOAT)
    SELECT
    C.CastID,
    SO.SalesOrderID,
    PO.ProductionOrderID,
    F.CalculatedWeight,
    PO.ProductionOrderNo,
    SO.SalesOrderNo,
    SC.Name,
    SO.OrderQty
    FROM
    CastCast C
    JOIN Sales.Production PO ON PO.ProductionOrderID = C.ProductionOrderID
    join Sales.ProductionDetail d on d.ProductionOrderID = PO.ProductionOrderID
    LEFT JOIN Sales.SalesOrder SO ON d.SalesOrderID = SO.SalesOrderID
    LEFT JOIN FinishedGoods.Equipment F ON F.CastID = C.CastID
    JOIN Sales.Customer SC ON SC.CustomerID = SO.CustomerID
    WHERE
    (C.CreatedDate >= @StartDate AND C.CreatedDate < @EndDate)
    It takes almost 33% for Table Insert when I insert the data in a temp table and then 67% for Spooling. I had removed 2 LEFT joins and made it as JOIN from the above query and then tried. Query execution became bit fast. But still needs improvement.
    How I can improve further. Will it be good enough if I create Indexes on the columns for the temp table and try.or what If I use derived tables?? Please suggest.
    -Pep

    How I can improve further. Will it be good enough if I create Indexes on the columns for the temp table and try.or what If I use derived tables??
    I suggest you start with index tuning.  Specifically, make sure columns specified in the WHERE and JOIN columns are properly indexed (ideally clustered or covering, and unique when possible).  Changing outer joins to inner joins is appropriate
    if you don't need outer joins in the first place.
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • JDBC adapter taking too much time for inserting

    we` have given a "update insert" query to be used in the JDBC adapter to insert these records into the database. Consists of 3 tables with 29fields in first, 4 fields in the other two.
    While message in XI gets processed in just 1-3 secs, the database processing time goes up to as much as 8 minutes for one record to get inserted.
    As immediate solution, is there any way we can have the JDBC adapter process these messages faster? These messages get queued up and hence all the other messages also get queued up delaying the other interfaces. We have a central adapter engine...
    Also is there any way we can get alert when the status is in "Processing/To be delivered/Delivering" and the message count exceeds a certain number say 1000

    I am using only one receiver JDBC channel
    We have been inserting three different table by using 3 different statemets tags(i.e) statement1(for table1),statement2(for table2),statement3(for table3).
    My structure is,
    <messagetype Name>
        <Statement1>
                 <tag1>
                          <action>UPDATE_INSERT</action>
                          <table>Table1</table>
                           <access>
                                        <field1>
                                         <field2>
                                          <field28>
                            <key>
                                   <MatNumber>
                 </tag1>
        </statement1>
       <Statement2>
                 <tag1>
                          <action>UPDATE_INSERT</action>
                          <table>Table2</table>
                           <access>
                                        <field1>
                                         <field2>
                                          <field4>
                            <key>
                                   <MatNumber>
                 </tag1>
        </statement2>
        <Statement3>
                 <tag3>
                         <action>UPDATE_INSERT</action>
                          <table>Table3</table>
                           <access>
                                        <field1>
                                         <field2>
                                          <field4>
                            <key>
                                   <MatNumber>
                 </tag3>
        </statement3>
    You can see we are also using key as well.In the first table we have 28 fields,second & third we are having 4.
    Edited by: rajesh shanmugasundaram on Jul 31, 2008 11:08 AM

  • Poor throughput for inserting/removing

    In our solution, we are trying to use Oracle Timesten In-Memory Database to store session information. And Oracle Timesten Database cache to cache business entities from backend Oracle Database. When the session initialed, the session(with session id) information is stored into session table (some columns are VARBINARY type) . During the session lifecycle, the entities are updated. After the session terminated, the session is removed from session table.
    And the test environment,
    Timesten 11.2.1.4.0,
    OS: HP-UX on pa-risc and has 16 CPUs (16* 1GHz).
    And I set the working thread to 16. inserting and removing session maybe use different threads. Thread-connection binding mechanism is used.
    During testing, with low stress, the average time for inserting is about 1.5 ms, and removing is about 0.5 ms. While, in high stress, the inserting and removing are about 10 ms. And average CPU usage is less than 30%. From monitor, LOCK_GRANTS_WAIT is becoming larger and larger. with iostat, the bps is about 14000
    And DurableCommit=0, LogBufMB=512, and default row-level is used.
    Any suggestion about this?
    thanks

    During the higher load tests when performance is not so good are you seeing the value of SYS.MONITOR.LOG_BUFFER_WAITS increasing over time?
    Chris

  • Execution time for an insert/update

    Hello!
    We are using EJB entities 3.0 and JPA configured to run on WAS and DB2. We also are using Container Managed Persistence
    We have a transactional method let's name it addA(), when executed, ultimately inserts data in 11 DB2 tables.
    In some of the 11 tables there are could be multiple rows inserted, in average, about 2 inserts.
    We are using the EntityManager.persist method to handle each entity.
    The method completes in about 11 seconds when the resources on the server (CPU,memory) are in a good state (so not overloaded).
    Is this a reasonable/decent time for the operation we are trying to do?
    If not, what would be a reasonable running time for such an operation?
    What do we need to do in order to improve the performance and decrease the execution time, other than switching to BMP and coding manual SQL inserts?

    user2617486 wrote:
    Do you have any idea how we can localize/isolate better the problem at the DB level?
    Can we programatically insert log statements to see how long it takes the processing on the WAS and how long takes the actual SQL statements execution once they hit the DB2 database?You need help from a DBA, you can't reason this problem away. You need cold hard facts from whatever tooling the database provides. Of course you could try adding log statements to see how long each database operation is taking on the Java side of things, but that only proves that it is slow, not WHY it is slow.
    The network latency can not be considered in this case since we run the test application on the same WAS where the application resides so it no networking involved.and the database runs on that machine as well? This is new information you are pulling out of your hat by the way, now all of a sudden there are two applications? And with the limited information you give I am to assume you are having performance problems from the test application and not from your "main application"? Otherwise I see no point in you making this argument.

  • I downloaded the latest operating system for my iPhone 5.  It worked fine for about two minutes then the phone requested a password number to continue. Each time I inserted numbers, the phone would lock up for a period of time.  Now, it says "iPhone

    I downloaded the latest operating system for my iPhone 5.  It worked fine for about two minutes then the phone requested a password number to continue. Each time I inserted numbers, which were incorrect, the phone would lock up for a certain period of time.  Now, it says “iPhone is Disabled”.  It said to “Connect to iTunes” which I did, but iTunes does not recognize my phone.  If I scroll the face to the right, it goes to the phone number face and says, "No Service". Can I do something to make the phone work?

    Forgot passcode for your iPhone, iPad, or iPod touch, or ...

  • BAPI for insert time machine  values

    Hai all,
    Kindly tell me is there any BAPI available for insert values(date, time,emp no) from time machine?
    Pls let me know the BAPI name.
    Otherwise is there any other solution available to insert values into bapi?
    Regards

    Hi,
    Try BAPI BAPI_PTIMEOVERVIEW_GET
    Cheers,
    Surinder

  • Insert multiple images in one slide and setting dsiplay time for each

    Hi,
    I am using Adobe Captivate4.
    I could not able to insert multiple images in one slide and set display time for each image.
    Need help in this regard.

    This is not about background image.
    I have 3 images and want to insert in one slide only. I could able to insert image1 for first time, but could not able to insert image2 and image3.
    I have followed the same steps: Insert Menu>Image.

  • I need an app or software that records the date/time each time a write something and press enter. This needs to be quick so I can continue writing right after I press enter, and the date/time is inserted for each word. Does this sort of software exist?

    I need an app or software that records the date/time each time a write something and press enter. This needs to be quick so I can continue writing right after I press enter, and the date/time is inserted for each word. Imagine a spreadsheet - each time a write something in a cell and press enter to go into the next cell, I need the app/software to automatically insert the corresponding dat and time. Does this sort of software exist?

    No one here is going to do anything about it. Send feedback to Apple.
    http://www.apple.com/feedback/ipad.html
    Basic troubleshooting steps. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

  • I updated my iphone and when it came time for activation it won't work and keeps telling me to try again. At the top it says "No Service" and I have my SIM card in and a good WiFi connection and have connected it through iTunes but it says I have no SIM

    I updated my iphone and when it came time for activation it won't work and keeps telling me to try again. At the top it says "No Service" and I have my SIM card in and a good WiFi connection and have connected it through iTunes but it says I have no SIM card and need to disconnect and insert my SIM. I don't understand why this keeps happening and it's been going on for a wile now. I have tried over and over again to get this iPhone to work but nothig is happening. I've even gone on the website for support (apple.com/support) but cannot find anything that will help me with this situation. Can someone please help me find a solution to this problem? I have been without a phone and do not have money to buy another one and it is crucial for me to get it fixed. Thanks.

    wesb
    What computer operating system is involved in the Premiere Elements 11 and 13 issues? Same computer or different ones? Are you installing from purchased download installation files or from purchased installation disc? Does Premiere Elements 11 work completely on this computer whereas 13 will not?
    Let us go through the typical drill so as to take nothing for granted.
    1. Does the problem exist with or without the antivirus and firewall(s) disabled? Are you working with an individual home computer or in a
    school or company network?
    2. Are you running the program as Administrator and is there any "domain" account involved?
    3. Is your video card/graphics card up to date according to the web site of the manufacturer of the card?
    4. Do you have the latest version of QuickTime installed on the computer with Premiere Elements?
    Let us start by ruling in or out any of the above, and then we can decide what next.
    Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • How to Change Outlook Default Folder for Insert-Attachment and Save Email/Attachemnt while Outlook is open (VBA)

    Hello,
    Office 2010 32bit, VBA
    Is it possible to programmatically do the above while Outlook is running?  If so, I'm hoping to make that change from a Word macro.
    I tried tinkering with the reg key and that doesn't work because it appears Outlook only respects it at startup time. Similary changing Word File-options-location of documents is respected only when Outlook starts.
    I'm looking to seamlessly keep Outlook's default folder in sync with Word's default folder as the users change working folders in Word, which they do many times per day (and they chose the folder among a couple of thousand possibilities).
    I'm hoping there is a difficult-to-find Outlook object I can manipuate to get to the end result.  IF there is such an Object I have been unable to find it.
    Many thanks!
    Julie

    Hi Julie,
    Based on my research, I think outlook object model doesn’t provide the way to change the default folder for insert attachment and save email/attachment.
    The way to change it is that we need to modify the registry setting and the outlook app should be restart.
    # How to set the default attachment folder in Outlook
    https://support.microsoft.com/kb/252732?wa=wsignin1.0
    You may create the add-in to custom these actions (e.g. attach attachment, save email)
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to identify date & time of insertion of rows in a table

    Hi,
    Is it possible to identify the date & time of insertion of rows in a table?
    for example:
    Table name: emp
    I have rows like this
    emp_code name dept
    pr01 ram edp
    ac05 gowri civil
    pr02 sam pro
    i want to know the date and time of the insertion this( ac05 gowri civil).
    Could you please help me.....
    Thanks in advance....

    psram wrote:
    sorry for the confusion. I dont want to store date and time. I said that for example only.
    I have table which consists of thousands of rows. I want to know the insertion date & time of a particular row.
    Is it possible?So, if I have a table that stores a load of employee numbers, do you think I could get the database to tell me their names?
    If you don't store the information, you can't query the information.
    Ok, there are some dribbs and drabbs of information available from the back end of the database via the SCN's, Archive Logs etc., but those sort of things disappear or get overwritten as time goes by. The only way to know the information it to ensure you store it in the first place.
    So, in answer to your question, No, there isn't a true and reliable way to get the data/time that rows were inserted into the table, unless you have chosen to store it alongside the data.

  • Taking More Time while inserting into the table (With foriegn key)

    Hi All,
    I am facing problem while inserting the values into the master table.
    The problem,
    Table A -- User Master Table (Reg No, Name, etc)
    Table B -- Transaction Table (Foreign key reference with Table A).
    While inserting the data's in Table B, i need to insert the reg no also in table B which is mandatory. I followed the logic which is mentioned in the SRDemo.
    While inserting we need to query the Table A first to have the values in TableABean.java.
    final TableA tableA= (TableA )uow.executeQuery("findUser",TableA .class, regNo);
    Then, we need to create the instance for TableB
    TableB tableB= (TableB)uow.newInstance(TableB.class);
    tableB.setID(bean.getID);
    tableA.addTableB(tableB); --- this is for to insert the regNo of TableA in TableB.. This line is executing the query "select * from TableB where RegNo = <tableA.getRegNo>".
    This query is taking too much time if values are more in the TableB for that particular registrationNo. Because of this its taking more time to insert into the TableB.
    For Ex: TableA -- regNo : 101...having less entry in TableB means...inserting record is taking less than 1 sec
    regNo : 102...having more entry in TableB means...inserting record is taking more than 2 sec
    Time delay is there for different users when they enter transaction in TableB.
    I need to avoid this since in future it will take more time...from 2 sec to 10 sec, if volume of data increases mean.
    Please help me to resolve this issue...I am facing it now in production.
    Thanks & Regards
    VB

    Hello,
    Looks like you have a 1:M relationship from TableA to TableB, with a 1:1 back pointer from TableB to TableA. If triggering the 1:M relationship is causing you delays that you want to avoid there might be two quick ways I can see:
    1) Don't map it. Leave the TableA->TableB 1:M unmapped, and instead just query for relationship when you do need it. This means you do not need to call tableA.addTableB(tableB), and instead only need to call tableB.setTableA(tableA), so that the TableB->TableA relation gets set. Might not be the best option, but it depends on your application's usage. It does allow you to potentially page the TableB results or add other query query performance options when you do need the data though.
    2) You are currently using Lazy loading for the TableA->TableB relationship - if it is untriggered, don't bother calling tableA.addTableB(tableB), and instead only need to call tableB.setTableA(tableA). This of course requires using TopLink api to a) verify the collection is an IndirectCollection type, and b) that it is hasn't been triggered. If it has been triggered, you will still need to call tableA.addTableB(tableB), but it won't result in a query. Check out the oracle.toplink.indirection.IndirectContainer class and it's isInstantiated() method. This can cause problems though in highly concurrent environments, as other threads may have triggered the indirection before you commit your transaction, so that the A->B collection is not up to date - this might require refreshing the TableA if so.
    Change tracking would probably be the best option to use here, and is described in the EclipseLink wiki:
    http://wiki.eclipse.org/Introduction_to_EclipseLink_Transactions_(ELUG)#Attribute_Change_Tracking_Policy
    Best Regards,
    Chris

  • ITunes crashes every time I insert a cd

    I am using the latest iTunes and all updates to OS X installed. I have reinstalled a bunch of times, to no avail. Right now I'm playing a cd using Quicktime player because iTunes crashes every single time I insert a cd. I've deleted plists for iTunes, as well. I have searched the support forums endlessly and can't figure this out. Here is the crash report:
    Process: iTunes [302]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 10.0.1 (10.0.1)
    Build Info: iTunes-10012201~1
    Code Type: X86 (Native)
    Parent Process: launchd [78]
    Date/Time: 2010-10-03 10:45:30.624 -0400
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 344444 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report: 303 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 4B84716A-F37D-4D8C-8EE0-9ABC62225757
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x95d662b0 strlen + 16
    1 com.apple.framework.IOKit 0x994e58d5 IOBSDNameMatching + 24
    2 com.apple.DiscRecording 0x92a1fd33 DRDevicePlugIn::GetSharedBusATADevice(unsigned int) + 265
    3 com.apple.DiscRecording 0x92a1f607 DRDevicePlugIn::DRDevicePlugIn(__CFString const*) + 3227
    4 com.apple.DiscRecording 0x92a1e5aa DROpticalDevice::Initialize(void*, __CFData const*, __CFString const*) + 180
    5 com.apple.DiscRecording 0x92a1e1ad _DRDeviceCreate(void*, __CFData const*, __CFString const*, __CFDictionary const*) + 164
    6 com.apple.DiscRecording 0x92a1e0e4 -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:usingProfile:] + 50
    7 com.apple.DiscRecording 0x92a1e0ac -[DRDevice(InternalBridgeMethods) initWithRegistryPath:forGUID:] + 56
    8 com.apple.DiscRecording 0x92a62c00 _DRDeviceCreate + 199
    9 com.apple.DiscRecording 0x92a1d8ac DROpticalDevice::Create(__CFData const*, __CFString const*) + 24
    10 com.apple.DiscRecording 0x92a1d7f0 DRDeviceManager::RegisterAuthoringDevice(__CFData const*, __CFString const*) + 66
    11 com.apple.DiscRecording 0x92a1d723 DRDeviceManager::IOCDDeviceMatched(DRDeviceManager*, unsigned int) + 237
    12 com.apple.DiscRecording 0x92a1d36a DRDeviceManager::DRDeviceManager() + 380
    13 com.apple.DiscRecording 0x92a1d1d2 DRDeviceManager::Create() + 34
    14 com.apple.DiscRecording 0x92a1bd22 DRAutoInit::Initialize() + 758
    15 com.apple.DiscRecording 0x92a1b836 DRDeviceCopyDeviceForBSDName + 169
    16 com.apple.iTunes 0x001ee665 0x1000 + 2020965
    17 com.apple.iTunes 0x00033515 0x1000 + 206101
    18 com.apple.iTunes 0x00026995 0x1000 + 154005
    19 com.apple.iTunes 0x000347db 0x1000 + 210907
    20 com.apple.iTunes 0x00033830 0x1000 + 206896
    21 com.apple.iTunes 0x00026773 0x1000 + 153459
    22 com.apple.iTunes 0x00025fc0 0x1000 + 151488
    23 com.apple.iTunes 0x00025e39 0x1000 + 151097
    24 com.apple.iTunes 0x0000fc69 0x1000 + 60521
    25 com.apple.iTunes 0x0000c2e7 0x1000 + 45799
    26 com.apple.iTunes 0x0000c0ad 0x1000 + 45229
    27 com.apple.iTunes 0x00004797 0x1000 + 14231
    28 com.apple.iTunes 0x000044ea 0x1000 + 13546
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x95d89942 kevent + 10
    1 libSystem.B.dylib 0x95d8a05c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x95d89519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x95d892be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x95d88d41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x95d88b86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x95d889d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x95d88f68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x95d88b86 start_wqthread + 30
    Thread 3:
    0 libSystem.B.dylib 0x95d630fa machmsgtrap + 10
    1 libSystem.B.dylib 0x95d63867 mach_msg + 68
    2 com.apple.CoreFoundation 0x933c6faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x933c6094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x933cbfd4 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0000b50f 0x1000 + 42255
    6 libSystem.B.dylib 0x95d9081d pthreadstart + 345
    7 libSystem.B.dylib 0x95d906a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x95d91066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x95d90d22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x95d929b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iTunes 0x00024333 0x1000 + 144179
    4 com.apple.iTunes 0x000237df 0x1000 + 141279
    5 libSystem.B.dylib 0x95d9081d pthreadstart + 345
    6 libSystem.B.dylib 0x95d906a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x95d82086 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9340680d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x95d9081d pthreadstart + 345
    3 libSystem.B.dylib 0x95d906a2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x95d63142 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95d68c06 pthreadmutexlock + 490
    2 com.apple.DiscRecording 0x92a1ba63 DRAutoInit::Initialize() + 55
    3 com.apple.DiscRecording 0x92a1d596 DRDiskArbitor::DiskAppearedCallback(__DADisk*, void*) + 40
    4 com.apple.DiskArbitration 0x994d87c0 _DADispatchCallback + 260
    5 com.apple.DiskArbitration 0x994d83ec _DASessionCallback + 339
    6 com.apple.CoreFoundation 0x933cc316 __CFMachPortPerform + 198
    7 com.apple.CoreFoundation 0x933c810b __CFRunLoopRun + 6523
    8 com.apple.CoreFoundation 0x933c6094 CFRunLoopRunSpecific + 452
    9 com.apple.CoreFoundation 0x933cbfd4 CFRunLoopRun + 84
    10 com.apple.DiscRecording 0x92a1cddb DRWorkLoop::WorkLoop() + 271
    11 com.apple.DiscRecording 0x92a1ccb9 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    12 com.apple.DiscRecording 0x92a1ca25 DRThreadObject::StartRoutine(DRThreadObject*) + 151
    13 libSystem.B.dylib 0x95d9081d pthreadstart + 345
    14 libSystem.B.dylib 0x95d906a2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffffffff ebx: 0x00000001 ecx: 0x00000001 edx: 0x00000000
    edi: 0x0000a60b esi: 0x00000000 ebp: 0xbfffc888 esp: 0xbfffc85c
    ss: 0x0000001f efl: 0x00010286 eip: 0x95d662b0 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0xc93fd7 com.apple.iTunes 10.0.1 (10.0.1) <1030FC3F-E0D8-BE52-D5D1-23940029F4B7> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xe9a000 - 0xe9fff7 com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xea5000 - 0xf31ffb com.apple.iTunes.iPodUpdater 9.2 (9.2) <D2A36BFD-75DE-F33F-92DD-8D0E07F87C3E> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0xf86000 - 0x1095fe7 com.apple.WebKit 6533.18 (6533.18.1) <157D0DD9-F3CE-4339-858B-B0EFFAA3B008> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1131000 - 0x1328feb com.apple.JavaScriptCore 6533.18 (6533.18.1) <EE3897A8-E1C0-DE28-A631-4B0C32DF737B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x1382000 - 0x139fff7 +libgnsdk_musicid.1.7.1.dylib 1.7.1 (compatibility 1.7.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.7.1.dylib
    0x13ac000 - 0x1469feb +libgnsdk_sdkmanager.1.7.1.dylib 1.7.1 (compatibility 1.7.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.7.1.dylib
    0x147d000 - 0x14b7fff +libgnsdk_submit.1.7.1.dylib 1.7.1 (compatibility 1.7.1) /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.7.1.dylib
    0x14bc000 - 0x14fcff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x1515000 - 0x1f60ff7 com.apple.WebCore 6533.18 (6533.18.1) <B96BFDB8-3D11-E220-1148-206D8A176352> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x13a06000 - 0x13a07ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x13a0c000 - 0x13a10ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <5570694E-039D-7970-6083-1C8A7B7C937B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x13a15000 - 0x13a1bffb com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <0FE8B697-6D19-69C6-FA94-E18064ACFAEC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x13a4a000 - 0x13a4dff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x13a62000 - 0x14a1cfff com.apple.CoreFP 1.9.18 (1.9.18) <3E01DAF2-585E-0B1B-E1BF-7D4DEAAE5AB3> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x14a54000 - 0x14b09fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x14ce2000 - 0x14ce7ff7 com.apple.iokit.SCSITaskLib 2.6.5 (2.6.5) <0BC45C23-6FD2-C76E-4DCE-9C21F559AA50> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0x15b5a000 - 0x15baffdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x18f21000 - 0x18f90fff com.apple.mobiledevice 396.7 (396.7) <4A48BC80-F9B9-1B21-8C01-8553DF57D401> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x18fca000 - 0x18ff0fff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <AEC44B68-A209-4093-36B0-7B740361249B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90051000 - 0x90065ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90066000 - 0x900e8ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x900f1000 - 0x901a1ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x901a2000 - 0x901f8ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x90223000 - 0x90225ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90402000 - 0x90433ff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x908b6000 - 0x90936feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90937000 - 0x90d6cff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90d6d000 - 0x90ddcff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90ddd000 - 0x90de7fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90eef000 - 0x91071fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x91072000 - 0x9110dff7 com.apple.ApplicationServices.ATS 275.11.1 (???) <5FF65EC7-F512-530A-7771-3DE240EE6E43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91b5a000 - 0x91b7cfef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91b8a000 - 0x92379557 com.apple.CoreGraphics 1.545.0 (???) <DCED8E1A-7504-C31A-B6EF-98BFF1A61060> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9237a000 - 0x923b8ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x923b9000 - 0x92456fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92457000 - 0x92461ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92462000 - 0x92468ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92469000 - 0x92789feb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9278a000 - 0x927f8ff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x927f9000 - 0x92870ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92871000 - 0x9287eff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92882000 - 0x928fdfe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x928fe000 - 0x92968fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92969000 - 0x92969ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9296a000 - 0x92978ff7 com.apple.opengl 1.6.9 (1.6.9) <4F06C166-00CF-5ACF-77E3-5A960A5E8AD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92979000 - 0x9299ffff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x929a0000 - 0x929a0ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x929a1000 - 0x92a19fef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92a1a000 - 0x92af6ff3 com.apple.DiscRecording 5.0.5 (5050.4.3) <7BFF81A5-BBFA-5D2F-FFEE-65BEA7697134> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x92af7000 - 0x92ba0ff7 com.apple.CFNetwork 454.9.8 (454.9.8) <DB2A5C33-E833-1B3A-4DE0-5FF172B2048B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92bee000 - 0x92d25ff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92d26000 - 0x92d27ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92d9d000 - 0x9300dffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93030000 - 0x93173fef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x931e9000 - 0x9320dff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9320e000 - 0x9324dff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93287000 - 0x93388fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x93389000 - 0x93389ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9338a000 - 0x93504fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9350f000 - 0x9352aff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9352b000 - 0x93547fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93639000 - 0x9366aff7 libGLImage.dylib ??? (???) <9340012D-595A-6243-9C97-7D30D76D9D9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9366b000 - 0x93735fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93736000 - 0x9373bff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9373c000 - 0x939a0fef com.apple.security 6.1.1 (37594) <3F68A006-6B30-85D5-1A75-8D748F72A6D5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x939c8000 - 0x93cc1fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x93cc2000 - 0x93d78ffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x93d79000 - 0x93d7cff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93d7d000 - 0x93d92fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93e12000 - 0x93e56ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93e57000 - 0x93f10fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x93f11000 - 0x93f21ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x93f22000 - 0x93f22ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93f45000 - 0x9414bfeb com.apple.AddressBook.framework 5.0.2 (870) <3E9D6CF3-6C41-245D-5343-941A185C8384> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9414c000 - 0x94229ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9422a000 - 0x9454efef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9454f000 - 0x94553ff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94554000 - 0x9496aff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9496b000 - 0x9499fff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0B900F26-51C1-7639-346F-24B080AEDAF3> /usr/lib/libssl.0.9.8.dylib
    0x949ab000 - 0x949abff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x949b7000 - 0x94ae3ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x94ae4000 - 0x94b0cff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x94b55000 - 0x94b59ff7 libGFXShared.dylib ??? (???) <2D32BDBF-C941-93FD-E233-F03D28DB9E94> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94fdb000 - 0x94fe2ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94fe3000 - 0x95044fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95045000 - 0x95048ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95049000 - 0x9514bfef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x95165000 - 0x9517dff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9517e000 - 0x9519ffe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x951a0000 - 0x951e6ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x951e7000 - 0x95241fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9526d000 - 0x95281fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x953de000 - 0x9548efe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9548f000 - 0x954d2ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x954d3000 - 0x9550efeb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x955f1000 - 0x95637ffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x95638000 - 0x95675ff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95676000 - 0x95677ff7 libScreenReader.dylib ??? (???) <49C5CBC6-5AD5-B201-F988-C4E5556D42B2> /usr/lib/libScreenReader.dylib
    0x95678000 - 0x957a6fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x957a7000 - 0x957a7ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x957a8000 - 0x9583afe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9583b000 - 0x9583cff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95844000 - 0x95881ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95882000 - 0x95885ff7 libCoreVMClient.dylib ??? (???) <CA0BA8DC-0159-A808-A300-750358A6970C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x95886000 - 0x95886ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x958c9000 - 0x95aabfff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95aac000 - 0x95b10ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95b1b000 - 0x95b64fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95b65000 - 0x95b83ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95b94000 - 0x95b9bff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95b9c000 - 0x95be0fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95c00000 - 0x95c0efe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x95c1a000 - 0x95cf5fe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95d1e000 - 0x95d56ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x95d62000 - 0x95f08feb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x95f09000 - 0x95fb1ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95fb5000 - 0x95fb5ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95fb6000 - 0x96003feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96004000 - 0x96008ff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9604b000 - 0x96072ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96073000 - 0x9629eff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9629f000 - 0x962cfff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x96375000 - 0x96381ff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x96382000 - 0x96384ff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96385000 - 0x963c5ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x963c6000 - 0x964d2ff7 libGLProgrammability.dylib ??? (???) <1B315838-F477-5416-7504-67EC3433AD4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x964d3000 - 0x964e5ff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x964e6000 - 0x96537ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96574000 - 0x96622ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96623000 - 0x9662eff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9662f000 - 0x96667ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x966c9000 - 0x96776fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x96777000 - 0x96931fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96a93000 - 0x96a99fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96adb000 - 0x96f94ffb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x96f95000 - 0x96fa6ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x970ea000 - 0x97142fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97143000 - 0x97163fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x97172000 - 0x97175fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x97176000 - 0x97176ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9746e000 - 0x9759afff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x975a2000 - 0x97e82ff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97ea1000 - 0x97ed4ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97ed5000 - 0x97f25ff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x97f6a000 - 0x97facff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97fad000 - 0x97fb8ff7 com.apple.CrashReporterSupport 10.6.3 (250) <981124CA-6E89-94C5-C7E9-4E0D6CA06F1D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97fb9000 - 0x97fc9ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x97fca000 - 0x98f1afe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98f72000 - 0x992daff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x993d0000 - 0x994c2ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x994d6000 - 0x994dfff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x994e0000 - 0x9953bff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9953c000 - 0x995b5ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x995b6000 - 0x995c1ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x995c2000 - 0x99605ff7 libGLU.dylib ??? (???) <2093A1FB-67BD-39E0-CDE5-A97A77BDDBCE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x99702000 - 0x998ddff3 libType1Scaler.dylib ??? (???) <6FBA8250-3271-6ED4-052D-E27C2136E38F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x998f2000 - 0x998f3ff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x998f4000 - 0x9998cfe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacBookPro4,1, BootROM MBP41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.27f2
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS542520K9SA00, 186.31 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N, 365.8 MB
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: iPhone, 0x05ac (Apple Inc.), 0x1297, 0xfa200000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0230, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x820f, 0x1a110000

    I had the same problem, I realised it was my proxy server blocking itunes from going away and getting the track information. I unchecked *Itunes>preferences>general>automatically retrieve cd track names from the internet* and it stopped it crashing.

  • Task-flow for inserting record in a popup

    Hi all,
    I am using Jdeveloper 11.1.1.0.
    I have a page with a lot of panelTabbed that displays a lot of data of a table.
    I would like to have a button that show a popup and launch a task-flow for inserting data in the table in more steps.
    I have created:
    1) one fragments for every inserting step
    2) a bounded task-flow having an activity (createInsert before the activities (fragments) to insert a new record), with a task flow return (cancel and commit) to save or rollback the data.
    3) obviusly, a button that show the popup for inserting a new record. I have inserted the task-flow defined in 2) as a region in the dialog of my popup.
    When I launch my page:
    1) I see an empty form (instead of seeing the first record)
    2) the data inserting on the popup are not saved
    3) the second time I try to launch the popup, I see nothing, only the OK button of the dialog.
    I know, in the new version of Jdeveloper it is possible to insert a task flow in a popup, but is it possible, in the previous (my) version?
    Thanks
    Andrea

    1) You are seeing an empty form because you are probably calling CreateInsert method of your data control. You should call it only if you are going to create a new record. Also, if this is a new record, you should not show the tabs below. In my case, i am doing like this:
    There are 3 pages, ListPage, CreatePage and Edit Page.
    User first enters to List page (because it is the default activity in taskflow), to list Master records in a table. There are also 2 buttons, Create and Edit. If Create button is clicked, CreateInsert method is invoked and then CreatePage is called. In create page, there are only 1 form of Master's attributes. After user commits, taskflow redirects the page back to ListPage.
    If user selects a row in list page then press Edit button, EditPage is called, but without calling a CreateInsert method. You don't have to invoke any methods if your table in ListPage has a SelectionListener (which is set by default).
    in launch listener, you can run a method like this:
    public void saveState(LaunchEvent launchEvent) {
    DCIteratorBinding ib = ADFUtils.findIterator("YourMasterIterator");
    RequestContext requestContext = RequestContext.getCurrentInstance();
    //we save key.
    String key = ib.getCurrentRow().getKey().toStringFormat(true);
    requestContext.getPageFlowScope().put("yourKey", key);
    and in return listener:
    public void loadState(ReturnEvent returnEvent) {
    RequestContext requestContext = RequestContext.getCurrentInstance();
    if (null == requestContext.getPageFlowScope().get("yourKey"))
    return;
    DCIteratorBinding ib = ADFUtils.findIterator("YourMasterIterator");
    if (null != ib)
    ib.setCurrentRowWithKey((String)requestContext.getPageFlowScope().get("yourKey"));
    You can find ADFUtils.java and JSFUtils.java in Store Front Demo project and some other sample projects.
    2) About the X button... This is the biggest problem of inline-popups. As far as i learned from people in this forum, it is not possible to remove that if you use an inline-popup. And it does not invoke returnListener. But, it does a rollback! I think it is a big problem and i am hoping to find a solution too. Using a popup component instead of inline-popup as dialog can be a workaround.
    user10799119 wrote:
    Hi Deniz,
    thank you for you reply.
    My task flow is sharing data controls with its caller, because main page displays updatable record, while the button launch a task flow in the popup to create a new record of the same table.
    I have understood what you are saying (save the current key when I launch the popup and restore the key when I return from the popup), but:
    1) when I enter in the main (caller) page, I see an empty form, and not the first record of my table. Why?
    2) the returnListener works even if I close the dialog with the "x" (in the up-right angle of the dialog) or only with its buttons?
    3) where can I find the code/links/examples/guides to implement launchListener and the returnListener for my button?
    Thank you
    Andrea
    Edited by: user10799119 on 2-dic-2009 05:26
    Edited by: user10799119 on 2-dic-2009 05:31Edited by: Deniz Gulmez on 02.Ara.2009 09:52
    Edited by: Deniz Gulmez on 02.Ara.2009 09:58

Maybe you are looking for

  • JMenuItem Background Image

    i am trying to put a background image for a JMenuItem (i am kinda adding skinning abilites to my application....) this is wut i have... public class MenuListItem extends JMenu {   String text;   public MenuListItem(String _text) {     text = _text;  

  • Trouble on monitor switch

    I currently have two computers (PC + Mac Mini Server) and two monitors. The PC is hooked up using two DVI cables while my Mac is using HDMI for the main monitor and Thunderbolt to HDMI for the secondary. Many times I'll use my PC on the main monitor

  • EDI EDI867 problem please help

    Hi Alll, I am new in EDI . I am not able to understand what is EDI867 . guyz please guide me this issue is very critical for me . Thanks & Regards

  • Exporting animated symbol to image sequence

    Hi guys! I'm unable to export an animated symbol to image sequence properly because the symbol does not animate. I created the tweens in multiple layers, then cut-pasted all layers to a new symbol. I did this so I could then just do some tween motion

  • I need to re-install airport card

    Hello all, I was trying to update my macbook pro (software update) and after the update was completed the i could not connect to my wireless network any more due to the fact that my airport card was missing. How it happened i do not know. I need to r