Minimize SQL round trips

We want to minimize SQL roun trips:
1. We have 3 object types: parcel, folder and document
     object schema:
          parcel - contains one or more folders          folder - contains one or
more documents
document - belong to one folder
     db schema contains these as 3 tables.
     use case: show all documents belong to all folders of a parcel.
     objective: minimize number of SQLs issued. Want to avoid[minimize]:
          1. one SQL to get collection of folders
          2. iterate thru folder collection, and issue separate SQL to get
documents belong to one folder.
If we have 50 folders, we will issue 51 SQL statements.
     possibility:
          Is there a way to be able to performa a "join" of folder and document to
obtain the collection via one SQL?? mapping? extension?

Stephen,
Just to clarify, here is simple example.
Did you mean something like this?
public class Person {
long id;
String name;
List addresses=new ArrayList();
public long getId() {
return id;
public void setId(long id) {
this.id = id;
public String getName() {
return name;
public void setName(String name) {
this.name = name;
public List getAddresses() {
return addresses;
public void setAddresses(List addresses) {
this.addresses = addresses;
public class Address {
long id;
String street;
Person person;
public long getId() {
return id;
public void setId(long id) {
this.id = id;
public String getStreet() {
return street;
public void setStreet(String street) {
this.street = street;
public Person getPerson() {
return person;
public void setPerson(Person person) {
this.person = person;
Query q = pm.newQuery();
q.setCandidates(pm.getExtent(Person.class,true));
q.setFilter("id>0");
List persons = (List)q.execute();
q=pm.newQuery();
q.setCandidates(pm.getExtent(Address.class, true));
q.declareParameters("java.util.Collection persons");
q.declareVariables("Person p");
q.setFilter("persons.contains(p) && p==person");
outputPersonsByIteratingOverAddressList((List)q.execute(persons));
when I am iterating over list of Addresses and doing .getPerson() there is
no additional select statement to load Person, so in this way it works,
but it would not work if I would be iterating over Person list and doing
getAddresses(), then additional select statement is executed per every
call regardless, what I kind of can understand (jdo needs to know which
Address instances belongs to this Person...)
Rihards
Stephen Kim wrote:
As I recall, in 2.5+ you may be able specify a Collection parameter in
which you could pass the document instances:
pm.newQuery (Folder.class, "paramFolders.contains (folder)")
Though I haven't tested this at all and may not work.
Rihards Freimanis wrote:
Abe White wrote:
Kodo 3.0 will support the type of "eager" loading of related objects you
are looking for. In the meantime, though, you may be able to meet your
objective with a single JDOQL query.Abe,
How JDOQL would help in this situation?
The problem is in way FCO are loaded, once I have collection of documents
and I am trying to access folder fields for that document, for every
document in collection additional SQL statement to load folder (assuming
that every document is in different folder) is executed.
Stephen Kim
[email protected]
SolarMetric, Inc.
http://www.solarmetric.com
S

Similar Messages

  • How to minimize Client-Server Round-trip in ADF Faces application ?

    Hi All,
    We have just finished POC on our prototype of ADF Faces + ADF BC application. The POC Emphasizes on Bandwidth requirement.
    After receing the result from the communication provider, including : TCP packets send, Bytes sent from/to server and number of Client-Server Round-Trip.
    There are several part of the application that Must be tuned for the application to run on acceptable performance.
    Here is some page/ function that should be tuned :
    - First page, ADF Read Only Table with two images and some buttons, cause 5 round-trip
    - ADF Dialog Returning Value (as LOV), cause 4 Round-trips
    - On ADF Form, press Commit button, cause 3 Round-trips.
    So the question is :
    1) How to reduce round-trips on ADF Faces application ?
    2) How to minimize the bytes send from / To server on a specific user action ?
    Please give me some recommendation..
    Thank you very much,
    xtanto

    Hi Frank and Steve,
    Thank you for your reply.
    Yes Frank, what I mean by Round-Trip is the traffic between Client and the Server. And Yes, we will use VSAT where the latency is 1 - 1.5 second, so that round-trip matters significantly.
    What I will do is :
    - use minimal skin and No image at all
    - don't use Dialog for LOV because it requires AutoSubmit there.
    - Use 'Apply-Changes' button to do server-side validation before Commit.
    Then do the POC / testing again.
    Thank you,
    xtanto

  • Only one round trip to database from BizTalk per message irrespective of number of records in message per table.

    I am creating biztalk application to store the data into sql server.
    and my client says this line what i am not understood .
    "Only one round trip to database from BizTalk per message irrespective of number of records in message per table."
    Any one can help me to understand this line.!
    Thanks,

    One more option is -
    Create a stored procedure to perform batch insert, you can insert into any number of tables you want.
    --sample SP code...just added the steps you need to know to extract XML and perform insert
    CREATE PROCEDURE <SPName>
    @YourXML XML
    AS
    BEGIN
    EXEC sp_xml_preparedocument @idoc OUTPUT, @youXML
    SET @j = 1
                WHILE @j <= @recordCount
                BEGIN
                     SET @xpath = '//ns1:RootNode/Record[' + CAST(@j AS VARCHAR(11)) + ']'
                     ;WITH XMLNAMESPACES('record namespace' as ns0, 'rootnode namespace' as ns1)
         INSERT INTO YourTable
                      (field1, field2....field20)             
                      SELECT                                 
                            field1, field2....field20
                      FROM OPENXML(@idoc, @xpath, 2)
                            WITH(field1 varchar(2), field2 varchar(20)........field20 varchar(100))                        
                      SET @j = @j + 1
                END    
    END
    On BizTalk side its quite simple...generate schema for your stored procedure...and in your map transform your XML to StoredProcedure schema using CDATA.
    Hope it helps!!

  • Problem with demo : Round-Tripping XML with Oracle9i

    Hi,
    We have recently installed a 9.2.0.1.0 database with the intention of trying some of the new XMLTYPE samples.
    I downloaded the demo : Round-Tripping XML with Oracle9i.
    The first part, Mapping XML into Oracle9i, worked fine.
    The second part, Re-composing XML from Oracle9i, doesn't seem to run.
    Here is what I get i SQLPLUS :
    (Step 1 to 15 is OK)
    SQL> create or replace type PURCHASEORDER_TYPE as object
    2 (
    3 "Reference" VARCHAR2(64),
    4 "Actions" SYS.XMLTYPE,
    5 "Requester" VARCHAR2(48),
    6 "User" VARCHAR2(32),
    7 "Reject" PURCHASEORDERREJECTION_TYPE,
    8 "CostCenter" VARCHAR2(3),
    9 "Vendor" VARCHAR2(32),
    10 "PONumber" NUMBER(10),
    11 "ShippingInstructions" PURCHASEORDERSHIPINST_TYPE,
    12 "SpecialInstructions" VARCHAR2(2048),
    13 "LineItems" SYS.XMLTYPE
    14 );
    15 /
    Type created.
    SQL> --script 16
    SQL> create or replace view PURCHASEORDERDOCUMENTS as
    2 select P.REFERENCE,
    3 sys_xmlgen(
    4 PURCHASEORDER_TYPE(
    5 P.REFERENCE,
    6 (
    7 select
    8 sys_xmlagg(
    9 sys_xmlgen(
    10 PURCHASEORDERACTION_TYPE(
    11 A.ACTIONEDBY,
    12 A.DATEACTIONED
    13 ),
    14 sys.xmlgenformattype.createFormat('Action')
    15 )
    16 ).extract('//Action')
    17 from PURCHASEORDERACTIONS A
    18 where A.REFERENCE = P.REFERENCE
    19 ),
    20 P.REQUESTER,
    21 P.USERID,
    22 PURCHASEORDERREJECTION_TYPE(
    23 R.REJECTEDBY,
    24 R.DATEREJECTED,
    25 R.COMMENTS
    26 ),
    27 P.COSTCENTER,
    28 P.VENDOR,
    29 P.PONUMBER,
    30 PURCHASEORDERSHIPINST_TYPE(
    31 S.SHIPTONAME,
    32 S.ADDRESS,
    33 S.PHONE
    34 ),
    35 P.SPECIALINSTRUCTIONS,
    36 (
    37 select
    38 sys_xmlagg(
    39 sys_xmlgen(
    40 PURCHASEORDERLINEITEM_TYPE(
    41 L.LINENO,
    42 L.DESCRIPTION,
    43 PURCHASEORDERPART_TYPE(
    44 L.PARTNO,
    45 L.QUANTITY,
    46 L.UNITPRICE
    47 )
    48 ),
    49 sys.xmlgenformattype.createFormat('LineItem')
    50 ),
    51 sys.xmlgenformattype.createFormat('LineItems')
    52 )
    53 from PURCHASEORDERLINEITEMS L
    54 where P.REFERENCE = L.REFERENCE
    55 )
    56 ),
    57 sys.xmlgenformattype.createFormat('PurchaseOrder')
    58 ) "PODOCUMENT"
    59 from PURCHASEORDERSTORE P,
    60 PURCHASEORDERREJECTION R,
    61 PURCHASEORDERSHIPINSTRUCTIONS S
    62 where R.REFERENCE = P.REFERENCE
    63 and S.REFERENCE = P.REFERENCE;
    View created.
    SQL> --script 17
    SQL> set heading off;
    SQL> set wrap on
    SQL> set pagesize 10000;
    SQL> set long 10000;
    SQL> select P.PODOCUMENT.getClobVal() from PURCHASEORDERDOCUMENTS P;
    select P.PODOCUMENT.getClobVal() from PURCHASEORDERDOCUMENTS P
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 1
    Has anyone had the same problem ?? I would appreciate any suggestions.
    Thanks,
    Frank

    I found the solution :
    The database was running with a multibyte characterset (UTF8).
    After changing that to WE8ISO8859P1 everything worked fine.
    It is strange that Oracle suggest to use UTF8 when installing the new database (9i)
    and on the other hand doesn't support multibyte charactersets for several of the XML-products.
    Cheers,
    Frank

  • Pictures round-tripped to Elements are correct in Browser but not in Viewer

    Hi all,
    This is a bit weird.  When I edit a photo in Photoshop Elements 10 (and then "save" and thereby send it back to Aperture), the edited photo shows up correctly edited in the Aperture browser, but it's uncorrected in the viewer.  I always use the "Split View," and so the corrected photo appears among the thumbnails, but when I click on it, the photo in the viewer doesn't have the PSE corrections!  Weird.  This worked well for many many months, but now doesn't seem to work.  If I close out of Aperture and come back in, the photos are correct in the viewer and the browser.  Any ideas?  (These are correctly saved -- not "saved as" -- in Photoshop.  And it worked well for months.  No need to discuss saving and round-tripping.)  Thank you!

    Mark,
    maybe this is caused by this bug:
    Aperture 3.2.3: Viewer does not update after editing an image in external editor
    http://support.apple.com/kb/TS4237
    If not, post back
    Regards
    Léonie

  • Trouble with Round trip between Soundtrack Pro 2 and Final Cut Pro 6

    I have edited a home movie together. I then have sent the sequence to Color for grading and then after completing the Color changes and Rendering. I sent it back to Final Cut Pro. It starts out working fine but during the transfer process it stops at somewhere between 50% and 60%. It is during the "Importing XML Data" phase. It just sits there and does not change and I have to force quit to get out of it. The exact same thing happens when I try to round trip from Soundtrack Pro 2 back to Final Cut Pro. So I am unable to make use of the changes I make in these programs.
    This is a round trip process that I have successfully made many times before. Nothing has changed. I am working in Final Cut Studio 2 with the latest updates on an Intel Mac. Any advice on how to remedy this situation would be greatly appreciated.
    Thank you in advance.

    Thanks.
    What's I've been doing is exporting the Soundtrack files as AIFF files, then importing them into Final Cut...
    It's working... at least well enough. Still seems harder then just being able to go back and forth between the two applications.
    Thanks for the advice.

  • Sun Java Studio Enterprise 8 UML Round Trip Engineering Problem on Linux

    Hi all,
    I know Linux is an unsupported platform but I thought I'd mention that the "Navigate to Source" context menu when trying to generate source from UML is missing.
    If you try to work through the "UML Modeling: Developing Applications" tutorial (http://developers.sun.com/prodtech/javatools/jsenterprise/learning/tutorials/jse8/uml_fe.html) on a linux box, everything goes to plan until step 3 "Choose Navigate To Source from the contextual menu" of the "Continuing Development Using Round Trip Engineering" section.
    I haven't tested it on Solaris but it definately appears on Windows.
    Cheers!
    Mike.

    I just tried on JDS3 Linux and I was able to complete this tutorial from the beginning to the end without any issue. I tried the Navigate to Source option on all classes from the project tree under the "bankpack" package node and source file for all classes were opened in the source editors. In fact, all UML quickstart tutorials have been tested and working as expected on all platforms including JDS3 Linux.
    Which Linux system are you having this problem on?
    Which JSE 8 build are you using (look at product line from Help->About, click on Detail tab)?
    Are you able to see "Navigate to Source" from the contextual menu for any other class from this tutorial?
    As Trey indicated in his response that the source must exist to have this menu option, do you see the corresponding source file generated in the Java project?
    Thanks,
    --Peter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Round trip to PS CS3 does not show the saved image in Aperture 2.1.1

    Good evening everyone; I hope someone can help me to solve this.
    I have PS CS3 set as my external photo processing app (exports are PSD 16-bit 300 dpi) in Aperture 2.1.1. When I process the picture in CS3 and then save it(mind you I only SAVE, I do not do SAVE AS) as PSD (or TIFF) Aperture only shows me the original file in preview with the little circle informing me about the round trip to CS3. So the processed file does not show. Instead I only see two identical versions of the same photo.( I mean, I see the master and the version with the little circle).
    If I save the work in PS CS3 as jpeg and then import into Aperture, it shows fine. When trying to import the processed and saved PSD and TIFF files, Aperture only shows the original file.
    If it helps, I am working on layered pictures (HDR) where I use different parts of different pictures to get wide dynamic range. I export 3 or so photos from Aperture at once to CS3, process them into one, flatten the picture and save it.
    And then Aperture just shows me the original file as version.
    I have done this before 2.1.1 and it worked. Not sure if I have changed anything that might be causing this.
    Thank you for your ideas.

    I am sure it is not stacked under the original, unfortunately. Any other tips?
    Also, as I mentioned earlier, even if I save the processed file in CS3 as PSD (so I use SAVE AS) and then try to import it into Aperture, it "magically" only shows the orginal (as if it was just importing some layer).

  • Round trip from Aperture to PS CS3 and back problem

    Hi everyone; I hope someone can help me to solve this. I posted it before but the only suggestion I got was to check if the processed photo is not stacked under, which it isn't.
    I have PS CS3 set as my external photo processing app (exports are PSD 16-bit 300 dpi) in Aperture 2.1.1. When I process the picture in CS3 and then save it(mind you I only SAVE, I do not do SAVE AS) as PSD (or TIFF) Aperture only shows me the original file in preview with the little circle informing me about the round trip to CS3. So the processed file does not show. Instead I only see two identical versions of the same photo or a layer from CS3.( I mean, I see the master and the version with the little circle).
    If I save the work in PS CS3 as jpeg and then import into Aperture, it shows fine. When trying to import the processed and saved PSD and TIFF files, Aperture only shows the original file.
    If it helps, I am working on layered pictures (HDR) where I use different parts of different pictures to get wide dynamic range. I export 3 or so photos from Aperture at once to CS3, process them into one, flatten the picture and save it.
    And then Aperture just shows me the original file as version. I really need your help with this.
    I have done this before 2.1.1 and it worked. Not sure if I have changed anything that might be causing this.
    Thank you for your ideas.

    Ernie, the photos are captured by Canon XTi so they are in CR2, saved to my internal HD and then "loaded" to Aperture as referenced files.
    As for PS CS3, I am not sure whether I have it set up as a scratch disk or not (if you could let me know where to check it).
    Yesterday, I did yet another round trip and found out that when I finish in PS and SAVE and CLOSE, then the file shows up properly in Aperture. What I was doing before was I SAVEd if but did not close. Then I would SAVE AS in PS to make sure I have some kind of a version of the file if the one in Aperture fails to work.
    So it seems I cracked it but I would still like to hear what you have to say, or anyone for that matter. It seems to me that the SAVE-CLOSE is crucial.

  • PI 7.1 Message Round Trip

    Good day,
    From rumors and small talk with fellow Netweaver technical consultants,
    I heard that with PI 7.1 - sending message without round trip  (sending message from one adapter to second adapter without entering the IS) will possible.
    1. Is that true?
    2.Where will the mapping take place if necessary?
    3.Will our monitoring capabilities will remain (message monitoring,end2end, AFW monitoring)
    If any of you experienced with PI 7.1 ,and currently not buried with development work, I'll appreciate you opinion\knowledge.
    Regards,
    Nimrod.G

    Hi,
    New highlights for SAP NetWeaver Process Integration 7.1 are:
    • Enterprise Services Repository as a central storage location for enterprise service definitions and lifecycle management data for all enterprise services
    • Universal Description, Discovery, and Integration (UDDI) 3.0–compliant services registry for runtime management of enterprise services
    • Improved support for standards such as Web Service Reliable Messaging (WS-RM), WS Policy, Security Assertion Markup Language (SAML)
    • Extended support for high volume scenarios
    • Business Activity Monitoring for process definition of milestone monitoring (event correlation)
    • Improved SAP NetWeaver Administrator support for central configuration and administration of both mediated and point-to-point scenarios.
    • XML payload validation
    • Process editor modeling enhancements: step groups, integrated alert management, configurable parameters
    • Integration of human interaction (generic user decision)
    • WS-BPEL 2.0 preview.
    • Message Packing.
    • Local Processing in Adapter Engine.
    • Reusable UDF’s.
    • Lookup function with multiple results.
    Regards,
    Soumya

  • PPro cs6 - Audition cs6 - PPro, round trip problem

    I'm having trouble completing the round trip. I got my audio tracks from PPro CS6 to Audition CS6 without problems, right by the manual. But I'm having trouble getting that audio work back  into PPro.
    I'm working a mid-sized project (one hour class, two cameras, etc. headed for DVD). Got edit lock. Everything is done now except for cleaning up audio. After the audio I can send the whole lot to Encore for DVD making. But first, audio.
    Took the entire sequence to Audition  via PPro's  "Edit...Edit in Adobe Audition...Sequence..."  path. This worked just fine. It pushed all the audio files to Audition, Audition opened up and gave me a "make an Audition project" dialog box, etc. Nearly 100 files came over to Audition, on the right tracks, in the right order. Very nice. Made my changes. So far so good.
    What I've read in the manual says that all I have to do when I'm done is "File...Save" in Audition, then PPro will have and use the changes. Sorta like Dynamic Link, but different. So I did the the project save.
    At this point, things deviated a little from the plan. I started up PPro, opened the project, and no sign of the Audition work. Can't find a file anywhere in the project panel that says Audition on it. The files on the timeline are still the dark green of the multi-camera edit, not the lighter green of an Audition file. When I've done this for individual clips, I've gotten back a file with a name like "*Audio Extracted_1.wav" that shows up with the same green as the Audition icon on my desktop.
    So I thought, fine. Not as easy as I had hoped. I'll just have to import it manually. But PPro doesn't seem to have any idea how to deal with a *.sesx file, which is the project file from Audition.
    Should I be exporting, say, a *.wav file from Audition (how?) and import that into PPro? And if I do, is there a good workflow to re-sync this audio with my video tracks?
    I'm confused. Don't know what I did wrong. Don't know what do to fix it. Don't know how to avoid this in the future. So any help gratefully received.
    Bruce Watson

    OK, now I *am* confused.
    Just did it again (a different DVD project however), as described in my original post. This time PPro stayed open for me. So I sent all the sequence audio files to Audition via the "Edit...Edit in Adobe Audition...Sequence..." comman, then did my editing in Audition, and saved it the Audition project. Go back to PPro, and... nothing. No sign of any file from Audition in the project panel. No sign on the time line. No sign of any Audition file anywhere in PPro that I can find.
    What gives? What am I doing wrong?
    What I did get was a folder at the same directory level as my PPro project file, a folder in it with the project_name I gave Auditon when it opened from the PPro  "Edit...Edit in Adobe Audition...Sequence..." command, and then two files for every clip in the project (a *.wav and a *.pkf), and finally two more files, a project_name.xml and a project_name.xml.sesx.
    I suppose I can export a *.wav file to PPro manually. Worked before. But I'd like to learn the "correct" way, the way Adobe intends it to work.
    Darned if I can figure out what I'm doing wrong though. Help???

  • Best workflow for round trip editing?

    I understand that iPhoto does not support (yet) round trip editing, i.e. a RAW file can be sent from within iPhoto to an external editor but the resulting edited file cannot be saved back directly into iPhoto but has to be temporarily stored somewhere (i.e. desktop) and reimported into iPhoto using the Import function.
    However,this screws up my "roll" filing structure, because the imported file is now part of a new roll and cannot be moved back to its original one.
    Sure, I could process my photos before importing but this only postpones the problem. Indeed, next year, there will be an other iteration of Nikon Capture with new features and I will want to reprocess some old files to get better results ... and they will have to be reimported into iPhoto!
    Has anyone come up with a suitable workaround that allows an imported file to be part of an existing roll or a solution to merge 2 rolls?
    Thanks
    Michel

    Solved!
    It's again RTFM ("Read The F*ng Manual").
    Workflow would be as follows:
    1. Edit RAW photo from roll, say "Xmas '05", with external editor.
    2. Save modified photo as jpg version (so that the modifications are visible in iPhoto) to desktop.
    3. Import into iPhoto (this creates a new roll, say "Roll 112", number is automatically assigned by iPhoto)
    4. Select all photos from "Xmas '05" and "Roll 112" in the iPhoto library
    5. Select Create New Roll from the File menu (all photos are now combined in a single roll, say "Roll 113" with today's date)
    6. Rename Roll 113 into Xmas '05 and change the date to keep the chronological sequence
    Voila! Roll "Xmas '05" has been updated (just tried it. It works).
    I should have completely read the manual before posting.

  • Re: (forte-users) Round-trip database design

    We have used Erwin quite sucessfully, but it's not cheap.
    "Rottier, Pascal" <Rottier.Pascalpmintl.ch> on 02/15/2001 04:51:01 AM
    To: 'Forte Users' <forte-userslists.xpedior.com>
    cc:
    Subject: (forte-users) Round-trip database design
    Hi,
    Maybe not 100% the right mailing list but it's worth a try.
    Does anyone use tools to automatically update the structure of an existing
    database?
    For example, you have a full database model (Power Designer) and you've
    created a script to create all these tables in a new and empty database.
    You've been using this database and filling tables with data for a while.
    Now you want to do some marginal modifications on these tables. Add a
    column, remove a column, rename a column, etc.
    Is there a way to automatically change the database without losing data and
    without having to do it manually (except the manual changes in the (Power
    Designer) model).
    Thanks
    Pascal Rottier
    Atos Origin Nederland (BAS/West End User Computing)
    Tel. +31 (0)10-2661223
    Fax. +31 (0)10-2661199
    E-mail: Pascal.Rottiernl.origin-it.com
    ++++++++++++++++++++++++++++
    Philip Morris (Afd. MIS)
    Tel. +31 (0)164-295149
    Fax. +31 (0)164-294444
    E-mail: Rottier.Pascalpmintl.ch
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    Hello Pascal,
    Forte has classes which might be able to scan the database structure
    (DBColumnDesc,etc.). Express use this classes to determine how the
    BusinessClass looks like. We use Forte to create the tables,indexes and
    constraints. We have the Problem that the above described classes are only
    readable but not fillable. The solution for us will be to create our own
    classes in
    the same manner than existing classes are. So we are able to make updates in
    the database structure and maybe able to change the database tables with tool
    code. Another reason for us to have the database structure in the
    application is the
    ability to see the table structure on which the Forte code works always up
    to date
    with the code. You are always able to compare the structure of the database
    with
    your businessclasses and able to convert a wrong structure to the correct
    structure
    with maybe just a little piece of code.
    Hope this helps
    Joseph Mirwald

  • Round Trip form Preiemer to Audition more than Once

    Hoping someone can help.  I am struggling to work out how to send a project back to Audition more than once?  Basically I have a job that I sent from Premiere to Audition already but the client has come back with some further edits.  What I can't work out is how I can send that project back from Premiere to Audition for a second time once I have made the various edits requested Premiere so that I can just tidy up those bits back in audtion again.  At the moment it seems like I will have to try and re do all the work I had originally done in Audition or try and copy and paste clips form one Audition project to another and re align all the wave forms.
    I am sure I am being stupid and missing something really basic so if someone can shed any light on how I can do this that would be great.
    Thanks in advance.
    Mark

    Hi Alan
    Your right the files are there but all as separate wav files that were created when the Audition project was first created and I have the original Audition timeline that was created when I first sent the project back to Premiere. What I can't seem to figure out though is that when you send the project back from Premiere to Audition the new audio tracks that were created don't link back to the originally extracted wav files or the Audition Project that created them.  Instead Audition creates a new wav file for each complete track (for those tracks that came from Audition first time round).  However if you click on one of the single track clips from the original Audition to Premiere round trip and choose edit original it opens the original Audition project with all the clips in that created. Which isn't the behaviour I was expecting  I was hoping for something a bit like the dynamic link relationship between after effects and premiere so if you have round tripped your audio any further changes in premiere are reflected in the audition project or a copy of the audition project. Is there away of doing this?
    Thanks

  • Aperture 3.03 & Photoshop CS4 round-trip

    I'm trying to make a round-trip between Aperture 3.03 and CS4 Photoshop.
    Background: I've chosen CS4 Photoshop as my external editor - 16-bit PSD
    Problem: When I select an image and "Edit with CS4", I successfully launch the image in CS4. I made a filter change (Lens Correction) and then did a "SAVE" within CS4. The PS version appears "very briefly" within Aperture 3.03 and then disappears.
    Attempt at a solution: Tossed "com.apple.Aperture.plist" preferences file and re-launched Aperture.... result - CS4 edited version still disappears in Aperture browser window.
    Any suggestions?
    Thank you.
    Dale

    Ensure maximise compatibility is checked when you save the psd file.
    Ensure you're in RGB colour space.
    What happens when you quit and re-open aperture does it show for a second or stay disappear - does it show a dotted outline? Can you open the file in full screen?
    Thanks
    M.

Maybe you are looking for