Insert Match EQ in 2 of 4 outputs??

Hi,
I'm working on a big quadraphonic documentary project (4 video screens, each 1 speaker), and Logic is doing this smoothly. So far, so good. The problem is that I only have 1 good set of speakers. For the "rear speakers" I use an old Philips multimedia speaker set. I recorded white noise coming from the good speakers and white noise from the Philips, and with these 2 audio files I created a Match EQ that kind of makes the Philips speakers similar to the good monitors (cool Logic feature!).
Now the question... is there a trick to insert the Match EQ in output 3-4?? Outputs are JUST outputs, so they don't have plugin slots... If I'd be working in stereo, I'd probably know a trick or 2, but all 70+ tracks have surround outputs...
Thanks!
Regards,
Jaap

Outputs definitely have plugin slots.
Oh, maybe you need to create an "object" (channel strip) for Output 3&4. So...
Go into the Environment, Mixer layer. New > Channel Strip > Output. Once that's created, assign it to Output 3/4. Use the text tool to rename it. Done!
There are other ways to do it too:
Select and CMD-C copy your existing Output 1/2 ("stereo out") in the Environment's mixer layer. CMD-V paste. Now you have a copy of it. Change its assignment to Output 3/4 via the "channel" parameter. Make sure you select from the stereo output menu. Now, use the text tool to re-name this new output.
Done!

Similar Messages

  • Inserting or embed and image into cfmail output from a database-stored path to an actual image.

    I am trying to insert or embed and image into cfmail from a database-stored path to an actual image. The actual JPEG image is stored in a folder called "images_personnel". The path to the image under the column titled photopath is stored in my database table as "/file/images_personnel/28.jpg". Displaying the image on the screen renders without a problem, embedding the same image as part of a cfloop query does not insert/embed the image into an email. All of the other output of the same cfloop displays and emails just fine. However none of the photos of each personelle show up. What an I doing wrong?
    My code is below:
    <cfquery name="Staffreport" datasource="master">
    Select staffreport.*, name.personnelid, name.email, name.last, name.noiid, stafflt, CONCAT(name.fname,' ',name.middle,' (',name.last,')') AS teammember, CONCAT(name.fname,' ',name.middle) AS teammember2, concat(name.photopath,'',name.photo)as hisphoto, stafflt.*, trim(concat(ltfname,' ',ltmiddle)) as LT from Staffreport, name, stafflt
    where 0=0
    and stalt = '#Session.user_id#'
    and ltid = '#session.user_id#'
    and staweekbegin = <cfqueryparam value="#form.staweekbegin#" cfsqltype="cf_sql_date" />
    AND staweekend = <cfqueryparam value="#form.staweekend#" cfsqltype="cf_sql_date" />
    AND stapersonnelid = personnelID
    <!---AND ltid = stalt--->
    AND CITY = 'richmond'
    AND STATUS <> 'd'
    AND STATUS <> 'T'
    AND type = 'personnel'
    Group by personnelid
    Order by teammember
    </cfquery>
    <cfmail>...
    <cfloop query="staffreport"><br />
    <table width="90%" border="0" cellspacing="2" cellpadding="4" align="left">
      <tr>
        <td colspan="2" align="center" valign="top" nowrap="nowrap" bgcolor="cccccc"><strong><font color="black"><cfif #staffreport.last# eq ".">#Ucase(Staffreport.teammember2)# <cfelse>#Ucase(Staffreport.teammember)#</cfif> - ID: <cfoutput>#Staffreport.noiid#</cfoutput></font></strong></td>
      </tr>
    <tr>
        <td align="left" valign="top" nowrap="nowrap" bgcolor="#000000">Name:</td>
        <td>#Staffreport.teammember#</td>
      </tr>
    <tr>
        <td bgcolor="E6E1FD">Photo:</td>
        <td bgcolor="EBEBEB">
    <img src="#staffreport.hisphoto#" alt="Photo" width="98" height="98">
    </td>
      </tr>
    <tr>
        <td bgcolor="E6E1FD">Email:</td>
        <td bgcolor="EBEBEB">#staffreport.email#</td>
      </tr>
    </table>
    </cfloop>
    </cfmail>

    You'll need to provide a full URL link to the image ("http://mywebserver/file/images_personnel/28.jpg"), not just a relative path.  Remember, the email client that is used to view the email content knows nothing of the internals of your web server - it can only follow a complete URL to get images and other resources.
    -Carl V.

  • Insert Matching Records from Lookup Table to Main Table

    First off, I want to say many thanks for all the help that I've been provided on here with my other posts. I really feel as though my SQL knowledge is much better than it was even a few short weeks ago, largely in part to this forum.
    I ran into a snag, which I'm hoping someone can provide me some guidance on. I have 2 tables an import table and a lookup table. What I need to have happen is anytime there are matches between the "Types" in the 2 tables, I need a single instance
    of the "Type" and all corresponding fields from the lookup table appended to the import table. There will only be a single instance of each type in the "Lookup" table. Below is an example of how the data might look and the results that
    I would need appended.
    tblLookup
    Type Name Address City
    A Dummy1 DummyAddress No City
    B Dummy2 DummyAddress No City
    C Dummy3 DummyAddress No City
    tblImport
    Type Name Address City
    A John Maple Miami
    A Mary Main Chicago
    A Ben Pacific Eugene
    B Frank Dove Boston
    Data that would be appended to tblImport
    Type Name Address City
    A Dummy1 DummyAddress No City
    B Dummy2 DummyAddress No City
    As you can see only a single instance will be inserted even though there may be multiple instances in the import table. This is the part that I'm struggling on. Any assistance would be appreciated.

    I'm not really sure how else to explain it. With my example, the join would be on "Type" As you can see, there are 2 matching records between the tables (A and B). I would need a single instance of A and B to be inserted into the import table. 
    Below is a SQL statement, which I guess is what you're asking for but it will not do what I need it to do. With the example that I have below, it would insert multiple instances of type "A" into the import table.
    INSERT INTO tblImport (Type, Name, Address, City)
    Select tblLookup.Type, tblLookup.Name,
    tblLookup.Address, tblLookup.City)
    From tblLookup
    Join tblImport on tblLookup.Type = tblImport.Type

  • How to create stored procedure for insert update and delete operations with input output paramters?

    I  have the follwing table is called master table contain the follwing fields,
    So here i need to create  three Stored procedures 
    1.Insert operations(1 o/p paramter,and  14 input paramters)              - uspInsert
    2.Update operations(1 o/p paramter,and  14 input paramters)          - uspUpdate
    3.Delete Operations(1 o/p paramter,and  14 input paramters)          
     - uspdelte
    The following is the table ,so using this to make the three sp's ,Here we will use Exception machanism also.
    Location 
    Client Name
    Owner 
    ConfigItemID
    ConfigItemName
    DeploymentID
    IncidentID
    Package Name
    Scope 
    Stage
    Type 
    Start Date
    End Date
    Accountable 
    Comments
    So can u pls help me out for this ,bcz i knew to stored procedure's creation.

    I  have the follwing table is called master table contain the follwing fields,
    So here i need to create  three Stored procedures 
    1.Insert operations(1 o/p paramter,and  14 input paramters)              - uspInsert
    2.Update operations(1 o/p paramter,and  14 input paramters)          - uspUpdate
    3.Delete Operations(1 o/p paramter,and  14 input paramters)            - uspdelte
    The following is the table ,so using this to make the three sp's ,Here we will use Exception machanism also.
    Location 
    Client Name
    Owner 
    ConfigItemID
    ConfigItemName
    DeploymentID
    IncidentID
    Package Name
    Scope 
    Stage
    Type 
    Start Date
    End Date
    Accountable 
    Comments
    So can u pls help me out for this ,bcz i knew to stored procedure's creation.
    Why you have to pass 14 parameters for DELETE and UPDATE? Do you have any Primary Key?  If you do NOT have primary key in your table then in case you have duplicate information, SQL will update both or delete them together. You need to provide DDL of
    you table. What are the data types of fields?
    Best Wishes, Arbi; Please vote if you find this posting was helpful or Mark it as answered.

  • How to insert LOGO in a simple report output

    Hi all,
    I need to insert a logo in a simple report output. can anybody help me

    Hi Anil,
    First upload logo to SAP by T-Code -SE78 or check the name of the logo that you want in your programm..
    then
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
           EXPORTING
                IT_LIST_COMMENTARY = G_HEADER.
       I_LOGO                   =                                                "Logo name
       I_END_OF_LIST_GRID       =
    ENDFORM.
    Thanks.

  • Anychart pie chart - setting colours to match output (RAG)

    Hi,
    I have a table detailing outstanding issues each with a traffic light status of either red, amber or green. I would like to create an anychart pie chart whose colours match their status to give an easy visual representation of the data.
    I have managed to get it working if there's data in the table for each status type; I've used customised colours in the pie chart and used ORDER by in my SQL (the order of the customised colours listed to match the order of the SQL output), however, if one of the status' has a null value, the colours are assigned Amber 1st, Green 2nd and Red 3rd meaning that if there are no issues of Amber status the green status issues will be amber in colour on the pie chart etc.
    Is this possible to assign specific colours and if so how can I do it?
    I'm working on Apex 3.2.1.
    Thanks in advance

    I've managed to sort this now.
    In case anyone is interested, I created a view that would display the totals for each RAG status including a 0 if total is null and then set custom colours for the pie chart in the order to match the SQL output (i.e. A (amber) first, G (green) second, R (red) third). Simple but it works for my needs.

  • Insert Error: Column name or number of supplied values does not match table definition.

    I'm getting this error when I try to run my stored procedure, I have checked that the inserts matches the select, which seemed to be
    the issue for most of the time this question is asked. As far as I can tell they match so something else must be wrong.
    Code:-
    CREATE proc [dbo].[prc_ITEM_master_Customer]
    as 
    begin 
    set nocount on
    /****** Object:  Table [dbo].[tempdb..tmpWebCustomers]    Script Date: 03/05/2014 20:49:28 ******/
    IF  EXISTS (SELECT * FROM tempdb.sys.objects WHERE name = 'tmpWebCustomers' AND type in (N'U'))
    DROP TABLE tempdb..tmpWebCustomers
    CREATE TABLE tempdb..tmpWebCustomers
    [Customer Number] varchar(6),
    [Store Number] varchar(6),
    [Company Name] varchar(35),
    [Email Address] varchar(75),
    [Password] varchar(20),
    [Contact Name] varchar(20),
    [Phone] varchar(20),
    [Billing Address] varchar(40),
    [Billing City] varchar(30),
    [Billing State] varchar(2),
    [Billing Zip] varchar(10),
    [Billing Country] varchar(15),
    [Shipping Address] varchar(40),
    [Shipping City] varchar(30),
    [Shipping State] varchar(2),
    [Shipping Zip] varchar(10),
    [Shipping Country] varchar(15),
    [Payment Terms] varchar(1),
    [Prepaid Freight Amount] decimal(14,4),
    [Is Preferred] bit,
    [Fuel Surcharge Exempt] bit,
    [Sales Tax Addback] bit,
    [Broken Box Exempt] bit,
    [Canada Freight Exempt] bit,
    [Furniture Handling Exempt] bit,
    [Create At] datetime,
    [Updated At] datetime,
    [Sales Rep] varchar(50),
    [Sales Rep Phone] varchar(15),
    [Sales Rep Email] varchar(50),
    [Inside Rep] varchar(50),
    [Inside Rep Email] varchar(50),
    [Parent] bit
    --Insert All Non-National Account Customers--
    INSERT INTO tempdb..tmpWebCustomers
    SELECT
    C.CUSTNO as 'Customer Number',
    '' as 'Store Number',
    C.COMPANY as 'Company Name',
    RTRIM(C.EMAIL) as 'Email Address',
    C.MISC6 as 'Password',
    C.CONTACT as 'Contact Name',
    C.PHONE as 'Phone',
    C.ADDRESS1 as 'Billing Address',
    C.CITY as 'Billing City',
    C.STATE as 'Billing State',
    C.ZIP as 'Billing Zip',
    C.COUNTRY as 'Billing Country',
    '' as  'Shipping Address',
    '' as 'Shipping City',
    '' as 'Shipping State',
    '' as 'Shipping Zip',
    '' as 'Shipping Country',
    CASE
    WHEN C.PTERMS='CREDIT CARD' THEN 1
    WHEN C.PTERMS='CREDIT CART ONLY' THEN 1
    WHEN C.PNET=0 THEN 0
    ELSE 2
    END as 'Payment Terms',
    C.PPFREIGHT as 'Prepaid Freight Amount',
    C.PRPRICE as 'Is Preferred',
    C.FSEXEMPT as 'Fuel Surcharge Exempt',
    C.STADDBACK as 'Sales Tax Addback',
    C.BROKEN as 'Boken Box Exempt',
    C.CANADAFREIGHT as 'Canada Freight Exempt',
    C.FHEXEMPT as 'Furniture Handling Exempt',
    C.ADDDATE as 'Created At',
    C.LCKDATE as 'Updated At',
    RTRIM(R.SFIRST) +' '+ RTRIM(R.SLAST) as 'Sales Rep',
    R.PHONE as 'Sales Rep Phone',
    CASE
    WHEN R.EMAIL='[email protected]' then ''
    ELSE R.EMAIL
    END as 'Sales Rep Email',
    RTRIM(I.SFIRST) +' '+ RTRIM(I.SLAST) as 'Inside Rep',
    I.EMAIL as 'Inside Rep Email',
    0
    FROM tblARCUST C 
    INNER JOIN tblICSLSP R ON C.SALESMN=R.SLSMN
    LEFT OUTER JOIN tblICSLSP I ON R.INSIDESALES=I.SLSMN
    WHERE 
    C.NATION=0
    AND C.ACTIVE=1
    AND C.MISC6 !=''
    AND C.EMAIL like '%@%'
    --Populate Shipping Address Data--
    UPDATE tempdb..tmpWebCustomers
    SET 
    [Shipping Address]=RTRIM(S.ADDRESS1),
    [Shipping City]=RTRIM(S.CITY),
    [Shipping State]=RTRIM(S.STATE),
    [Shipping Zip]=RTRIM(S.ZIP),
    [Shipping Country]=RTRIM(S.COUNTRY)
    from tempdb..tmpWebCustomers W
    INNER JOIN tblARCADR S ON W.[Customer Number]=S.CUSTNO
    WHERE S.DEFASHIP='Y'
    UPDATE tempdb..tmpWebCustomers
    SET
    [Shipping Address]=[Billing Address],
    [Shipping City]=[Billing City],
    [Shipping State]=[Billing State],
    [Shipping Zip]=[Billing Zip],
    [Shipping Country]=[Billing Country]
    WHERE
    [Shipping Address]=''
    --Insert National Account Customers
    INSERT INTO tempdb..tmpWebCustomers
    SELECT
    C.CUSTNO as 'Customer Number',
    S.CSHIPNO as 'Store Number',
    S.COMPANY as 'Company Name',
    RTRIM(S.EMAIL) as 'Email Address',
    S.MISC6 as 'Password',
    S.CONTACT as 'Contact Name',
    S.PHONE as 'Phone',
    C.ADDRESS1 as 'Billing Address',
    C.CITY as 'Billing City',
    C.STATE as 'Billing State',
    C.ZIP as 'Billing Zip',
    C.COUNTRY as 'Billing Country',
    S.ADDRESS1 as  'Shipping Address',
    S.CITY as 'Shipping City',
    S.STATE as 'Shipping State',
    S.ZIP as 'Shipping Zip',
    S.COUNTRY as 'Shipping Country',
    CASE
    WHEN C.PTERMS='CREDIT CARD' THEN 1
    WHEN C.PTERMS='CREDIT CART ONLY' THEN 1
    WHEN C.PNET=0 THEN 0
    ELSE 2
    END as 'Payment Terms',
    C.PPFREIGHT as 'Prepaid Freight Amount',
    C.PRPRICE as 'Is Preferred',
    C.FSEXEMPT as 'Fuel Surcharge Exempt',
    C.STADDBACK as 'Sales Tax Addback',
    C.BROKEN as 'Boken Box Exempt',
    C.CANADAFREIGHT as 'Canada Freight Exempt',
    C.FHEXEMPT as 'Furniture Handling Exempt',
    S.ADDDATE as 'Created At',
    S.LCKDATE as 'Updated At',
    RTRIM(R.SFIRST) +' '+ RTRIM(R.SLAST) as 'Sales Rep',
    R.PHONE as 'Sales Rep Phone',
    CASE
    WHEN R.EMAIL='[email protected]' then ''
    ELSE R.EMAIL
    END as 'Sales Rep Email',
    RTRIM(I.SFIRST) +' '+ RTRIM(I.SLAST) as 'Inside Rep',
    I.EMAIL as 'Inside Rep Email',
    0
    FROM tblARCUST C
    INNER JOIN tblARCADR S ON C.CUSTNO=S.CUSTNO 
    INNER JOIN tblICSLSP R ON C.SALESMN=R.SLSMN
    LEFT OUTER JOIN tblICSLSP I ON R.INSIDESALES=I.SLSMN
    WHERE 
    C.NATION=1
    AND C.ACTIVE=1
    AND S.MISC6 !=''
    AND S.EMAIL LIKE '%@%'
    --Insert National Account Parents
    INSERT INTO tempdb..tmpWebCustomers
    SELECT
    C.CUSTNO as 'Customer Number',
    '' as 'Store Number',
    C.COMPANY as 'Company Name',
    RTRIM(C.EMAIL) as 'Email Address',
    C.MISC6 as 'Password',
    C.CONTACT as 'Contact Name',
    C.PHONE as 'Phone',
    C.ADDRESS1 as 'Billing Address',
    C.CITY as 'Billing City',
    C.STATE as 'Billing State',
    C.ZIP as 'Billing Zip',
    C.COUNTRY as 'Billing Country',
    C.ADDRESS1 as  'Shipping Address',
    C.CITY as 'Shipping City',
    C.STATE as 'Shipping State',
    C.ZIP as 'Shipping Zip',
    C.COUNTRY as 'Shipping Country',
    CASE
    WHEN C.PTERMS='CREDIT CARD' THEN 1
    WHEN C.PTERMS='CREDIT CART ONLY' THEN 1
    WHEN C.PNET=0 THEN 0
    ELSE 2
    END as 'Payment Terms',
    C.PPFREIGHT as 'Prepaid Freight Amount',
    C.PRPRICE as 'Is Preferred',
    C.FSEXEMPT as 'Fuel Surcharge Exempt',
    C.STADDBACK as 'Sales Tax Addback',
    C.BROKEN as 'Boken Box Exempt',
    C.CANADAFREIGHT as 'Canada Freight Exempt',
    C.FHEXEMPT as 'Furniture Handling Exempt',
    C.ADDDATE as 'Created At',
    C.LCKDATE as 'Updated At',
    RTRIM(R.SFIRST) +' '+ RTRIM(R.SLAST) as 'Sales Rep',
    R.PHONE as 'Sales Rep Phone',
    CASE
    WHEN R.EMAIL='[email protected]' then ''
    ELSE R.EMAIL
    END as 'Sales Rep Email',
    RTRIM(I.SFIRST) +' '+ RTRIM(I.SLAST) as 'Inside Rep',
    I.EMAIL as 'Inside Rep Email',
    1
    FROM tblARCUST C 
    INNER JOIN tblICSLSP R ON C.SALESMN=R.SLSMN
    LEFT OUTER JOIN tblICSLSP I ON R.INSIDESALES=I.SLSMN
    WHERE 
    C.NATION=1
    AND C.ACTIVE=1
    AND C.MISC6 !=''
    AND C.EMAIL like '%@%'
    end
    GO

    Cant spot anything obvious
    Are you sure you're running this in a new window? Make sure there's not any other bits of code present in window where you're running this.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to I insert ABAP Programs in Process Chain ?

    Hi mates,
      I need to know how exactly in a Process Chain can I start a ABAP Program ?
      For Instance, if X happens the go and execute this program it not execute Y program ?
      Kindly advice

    Hi,
    Yes you can definitely insert an ABAP program process in a PC.
    You can include a ABAP Process which is available in the Processes under PC. And it asks for a Variant and ABAP report name.
    You need to create a Variant for the ABAP program.
    This will also have a Output, like if in case the variants are correct and the Program logic is matched then in that case the output is given else not given. Which turns the process GREEN / RED accordingly.
    Hope this helps,
    Pradip Parmar

  • Color Space Management & Final Color Output-not WYSIWYG?

    I have constantly had problems with getting final output color to match what i am seeing on my monitors when color correcting. This has been a continual problem mainly with R3d footage and going to Prores...but for the sake of this discussion here is my prime example:
    Start a new project in PrPro and clor from PrPro adding effects, 3 way color, 3rd party effects like Finesse and Colorista...then output the project to Tiff for master then convert from Tiff sequence to Prorest; H264 or anything else....But, when i output a prores file, and then open the prores file on its own--not brining it back into Premier...i notice a shift in colors....completely desaturated etc...this happens whehter i choose for gamma as "auto" or "none" when choosing codec settings for prores. I've had this continual problem for many years and the ONLY way i have found it to work is by using Apple's Color and then going to Prores....seems apple hardware and software work well together...but this cannot be an isolated incident with me only...AND coloring a project on your desktop and putting all that work into it and seeing it DIFFERENT at the end of the day is more than a let down...
    ...so maybe a discussion on properly setting a project for color work is in order...I came across another forum members website reToolednet and he had some great info on setting up the sequence timeline and video preview area that is great info...but even when i do that i cannot get a perfect match at the end of the output....Exapmples below all done in PrPro and then output to Prores 4444.
      I've found info on Adobe site that does not seem current about setting project settings and color space, but no place in PrPro do i find that setting...is this only AE?  OR...can we even do a proper color job within PrPr?  or should that be done elsewhere?
      Id like to go through the proper steps of setting workspace and color schemes for say a Prores output since that is likely 75% to 90% of everyone's deliverables in the tv realm....
    Snapsot of Tiff sequence WITHIN PrPro (colored)
    Final Output from PrPro to Prores--snap from actual QT prores file--(Desaturated)
    When i began this project i had my sequence settings to R3d 1080p @ 29.97 and video previews to Iframe....
    **NOW, i think i would have been better off to change video preview to my final output of Prores 4444...BUT, i tried that and still see a color shift.
    **Note, i oriingally colored this on 5.5 with Matrox out to my color corrected monitors....and results on those monitors DO and WILL be diffrent than what you see on your computer screen....my monitors were set to rec709 and RGB at end of the line for viewing....but i see nothing within PrPro on how to set this....however at end of the day i do not get what i see on my preview monitors....

    Thanks Jim....yes, i'm covered on all cc monitors and quite used ot viewing output on color calibrated...as well viewing both on the same platform/monitor....The BIG question is PrPr being able to do color work---and my question is why would it have all the color effects if it did not?  But i agree with you....first place to start is can you do proper color work on PrPr AT ALL?  no problem to do a quick web video...but can you properly color a for television product---I seem to think NO....i could not get colors in end to match....i can view out on PrPr view my I/O box (Matrox MXO2) and see great colors that i colored the project on to my FSI color corrected monitor....but then when i view the ProRes file back (not on PrPro)...but on it's own with its own codec engine...this is where things go awry and stray from colors i originally put on the images...
    But this is a PARAMOUNT subject as Pr is offering coloring....i hate to bring this in, but in FCP i can get accurate colors on my Matrox and same when rendered out to Prores file....Again, i think Apple plays well with apple.....but as you say, there are a great number of varialbes involved in the preferences etc...within PrPr...seems to me AE may be better just by reading about it...but why not both?

  • "...an Output Module failed" error screen...

    Greetings AE Peeps!!
    Long time - no see - been stupid busy. My Studio has just ponied up and upgraded our 5 Edit Stations to AE CS5. I personally am a huge advocate of not upgrading software while in the middle of a project, but this was out of my control. I am having a lot of crashing (app just quits for no reason while scrubbing) and other weirdness...like today. I am rendering a 3 minute piece in ProRes 4:2:2 (1280x720p) to my RAID (no special plug-ins or anything) and I get the following error at the very end of every render:
    After Effects Error: Rendering error while writing to file (insert my RAID path here). An output module failed. The file may be damaged or corrupted (-1610153464)
    I have never in 11 years got a "failed Output Module error". Can anyone speak to this and tell me how to get rid of it short of reinstalling AE?
    Grazie! Ciao!
    Joey

    First, make sure that you've installed the After Effects CS5 (10.0.1) update.
    Regarding the output module failure: It may be that this is because you have an output module created in a previous version of After Effects that refers to a codec or set of settings that isn't working in After Effects CS5. The best thing to do is to remove the output modules from the render items and then rebuild them in After Effects CS5. That may sound tedious, but you only need to do it once, and then you can save output module templates that you know work with After Effects CS5.
    As Mylenium suggested, there are some challenges associated with the fact that there is no 64-bit QuickTime, so we had to create our own 32-bit-to-64-bit QuickTime conversion layer (QT32 Server). QuickTime does work with After Effects CS5, but there are some hiccups in some cases on first use.
    If this doesn't help, answer back and we'll help you through.
    Oh, this might be useful, too:
    http://blogs.adobe.com/toddkopriva/2011/02/troubleshooting-quicktime-errors-with-after-eff ects.html

  • Compare String in a table and insert the common values into a New table

    Hi all,
    Anyone has idea on how to compare a string value in a table.
    I have a Students Table with Student_id and Student_Subject_list columns as below.
    create table Students( Student_id number,
    Student_Subject_list varchar2(2000)
    INSERT INTO Students VALUES (1,'Math,Science,Arts,Music,Computers,Law,Business,Social,Language arts,History');
    INSERT INTO Students VALUES (2,'Math,Law,Business,Social,Language arts,History,Biotechnology,communication');
    INSERT INTO Students VALUES (3,'History,Spanish,French,Langage arts');
    INSERT INTO Students VALUES (4,'History,Maths,Science,Chemistry,English,Reading');
    INSERT INTO Students VALUES (5,'Math,Science,Arts,Music,Computer Programming,Language arts,History');
    INSERT INTO Students VALUES (6,'Finance,Stocks');
    output
    Student_id     Student_Subject_list
    1     Math,Science,Arts,Music,Computers,Law,Business,Social,Language arts,History
    2     Math,Law,Business,Social,Language arts,History,Biotechnology,communication
    3     History,Spanish,French,Langage arts
    4     History,Maths,Science,Chemistry,English,Reading
    5     Math,Science,Arts,Music,Computer Programming,Language arts,History
    6     Finance,Stocks
    I need help or some suggestion in write a query which can compare each row string value of Student_Subject_list columns and insert the
    common subjects into a new table(Matched_Subjects).The second table should have the below colums and data.
    create table Matched_Subjects(Student_id number,
    Matching_studesnt_id Number,
    Matched_Student_Subject varchar2(2000)
    INSERT INTO Matched_Subjects VALUES (1,2,'Math,Law,Business,Social,Language arts,History');
    INSERT INTO Matched_Subjects VALUES (1,3,'History,Langage arts');
    INSERT INTO Matched_Subjects VALUES (1,4,'History,Maths,Science');
    INSERT INTO Matched_Subjects VALUES (1,5,'Math,Science,Arts,Music,Language arts,History');
    INSERT INTO Matched_Subjects VALUES (2,3,'History,Langage arts');
    INSERT INTO Matched_Subjects VALUES (2,4,'History,Maths');
    INSERT INTO Matched_Subjects VALUES (2,5,'Math,Language arts,History');
    INSERT INTO Matched_Subjects VALUES (3,4,'History');
    INSERT INTO Matched_Subjects VALUES (3,5,'Language arts,History');
    INSERT INTO Matched_Subjects VALUES (4,5,'Math,Science');
    output:
    Student_id      Match_Student_id     Matched_Student_Subject
    1     2     Math,Law,Business,Social,Language arts,History
    1     3     History,Langage arts
    1     4     History,Maths,Science
    1     5     Math,Science,Arts,Music,Language arts,History
    2     3     History,Langage arts
    2     4     History,Maths
    2     5     Math,Language arts,History
    3     4     History
    3     5     Language arts,History
    4     5     Math,Science
    any help will be appreciated.
    Thanks.
    Edited by: user7988 on Sep 25, 2011 8:45 AM

    user7988 wrote:
    Is there an alternate approach to this without using xmlagg/xmlelement What Oracle version are you using? In 11.2 you can use LISTAGG:
    insert
      into Matched_Subjects
      with t as (
                 select  student_id,
                         column_value l,
                         regexp_substr(student_subject_list,'[^,]+',1,column_value) subject
                   from  students,
                         table(
                               cast(
                                    multiset(
                                             select  level
                                               from  dual
                                               connect by level <= length(regexp_replace(student_subject_list || ',','[^,]'))
                                    as sys.OdciNumberList
      select  t1.student_id,
              t2.student_id,
              listagg(t1.subject,',') within group(order by t1.l)
        from  t t1,
              t t2
        where t1.student_id < t2.student_id
          and t1.subject = t2.subject
        group by t1.student_id,
                 t2.student_id
    STUDENT_ID MATCHING_STUDESNT_ID MATCHED_STUDENT_SUBJECT
             1                    2 Math,Law,Business,Social,Language arts,History
             1                    3 Language arts,History
             1                    4 Science,History
             1                    5 Math,Science,Arts,Music,Language arts,History
             2                    3 Language arts,History
             2                    4 History
             2                    5 Math,Language arts,History
             3                    4 History
             3                    5 History,Language arts
             4                    5 History,Science
    10 rows selected.
    SQL> Prior to 11.2 you can create your own string aggregation function STRAGG - there are plenty of example on this forum. Or use hierarchical query:
    insert
      into Matched_Subjects
      with t1 as (
                  select  student_id,
                          column_value l,
                          regexp_substr(student_subject_list,'[^,]+',1,column_value) subject
                    from  students,
                          table(
                                cast(
                                     multiset(
                                              select  level
                                                from  dual
                                                connect by level <= length(regexp_replace(student_subject_list || ',','[^,]'))
                                     as sys.OdciNumberList
           t2 as (
                  select  t1.student_id student_id1,
                          t2.student_id student_id2,
                          t1.subject,
                          row_number() over(partition by t1.student_id,t2.student_id order by t1.l) rn
                    from  t1,
                          t1 t2
                    where t1.student_id < t2.student_id
                      and t1.subject = t2.subject
      select  student_id1,
              student_id2,
              ltrim(sys_connect_by_path(subject,','),',') MATCHED_STUDENT_SUBJECT
        from  t2
        where connect_by_isleaf = 1
        start with rn = 1
        connect by student_id1 = prior student_id1
               and student_id2 = prior student_id2
               and rn = prior rn + 1
    STUDENT_ID MATCHING_STUDESNT_ID MATCHED_STUDENT_SUBJECT
             1                    2 Math,Law,Business,Social,Language arts,History
             1                    3 Language arts,History
             1                    4 Science,History
             1                    5 Math,Science,Arts,Music,Language arts,History
             2                    3 Language arts,History
             2                    4 History
             2                    5 Math,Language arts,History
             3                    4 History
             3                    5 History,Language arts
             4                    5 History,Science
    10 rows selected.SY.

  • How to get server output in SQL Developer

    I am learning SQL Deverloper and am using it in a University environment as well as Oracle test instances at Oracle.
    I know my way around SQL some but I am just learning PL/SQL.  I want to run an anonymous block and see output for the "dbms_output.put_line" items.
    At school, I enter my block in the "SQL Worksheet" and receive the "anonymous block completed" in the "Script Output" screen.  Then there is a 3rd screen, the name of which I cannot remember, but I believe it is the equivalent of "server output".  When I open it I have to tell it which database I'm using.  Then, I see the dbms output lines in this 3rd section.
    The problem is when I am using SQL Developer at work, I see only 2 sections:  "SQL Worksheet" and "Script Output".
    I have looked but cannot find an option or a button or a window that is called something like "server output" or "view server output."
    Can a more experienced user please help me?
    I am using:
    SQL Developer Version 3.1.07
            Build MAIN-07.42
    Linux x86-64
    (Oracle Internal:
    Instance: http://celalnx38.us.oracle.com:10507/
    tnsnames: 10500)

    Hi Makel,
    There are no changes of which I am aware in the Dbms_Output view functionality between the 3.2 and 4.0 releases.
    As to your point about confusion, keep in mind the following:
    1. Each Worksheet tab and Dbms_Output tab include the name of the connection in use.  Match on that name when checking output results.
    2. Opening multiple Worksheets on the same connection name will share one database connection by default.
    3. Multiple Worksheets sharing a database connection also share one Dbms_Output tab.  That is by design.
    To force worksheets to use unshared connections:
    4. Change the default behavior of (2) via Tools -> Preferences -> Database -> Worksheet -> New Worksheet to use unshared connection.
    5. Or avoid (4's) overhead of always using unshared connections by opening one-off unshared Worksheets: Ctrl + Shift + N from a shared Worksheet.
    Finally:
    6. When using unshared Worksheets, one Dbms_Output tab may be opened per unshared Worksheet.  Note that the names of any unshared Worksheets will appear in Dbms_Output's Select Connection dialog drop down list. That should avoid any confusion.
    Hope this helps,
    Gary

  • Please help with an embedded query (INSERT RETURNING BULK COLLECT INTO)

    I am trying to write a query inside the C# code where I would insert values into a table in bulk using bind variables. But I also I would like to receive a bulk collection of generated sequence number IDs for the REQUEST_ID. I am trying to use RETURNING REQUEST_ID BULK COLLECT INTO :REQUEST_IDs clause where :REQUEST_IDs is another bind variable
    Here is a full query that use in the C# code
    string sql = "INSERT INTO REQUESTS_TBL(REQUEST_ID, CID, PROVIDER_ID, PROVIDER_NAME, REQUEST_TYPE_ID, REQUEST_METHOD_ID, " +
    "SERVICE_START_DT, SERVICE_END_DT, SERVICE_LOCATION_CITY, SERVICE_LOCATION_STATE, " +
    "BENEFICIARY_FIRST_NAME, BENEFICIARY_LAST_NAME, BENEFICIARY_DOB, HICNUM, CCN, " +
    "CLAIM_RECEIPT_DT, ADMISSION_DT, BILL_TYPE, LANGUAGE_ID, CONTRACTOR_ID, PRIORITY_ID, " +
    "UNIVERSE_DT, REQUEST_DT, BENEFICIARY_M_INITIAL, ATTENDING_PROVIDER_NUMBER, " +
    "BILLING_NPI, BENE_ZIP_CODE, DRG, FINAL_ALLOWED_AMT, STUDY_ID, REFERRING_NPI) " +
    "VALUES " +
    "(SQ_CDCDATA.NEXTVAL, :CIDs, :PROVIDER_IDs, :PROVIDER_NAMEs, :REQUEST_TYPE_IDs, :REQUEST_METHOD_IDs, " +
    ":SERVICE_START_DTs, :SERVICE_END_DTs, :SERVICE_LOCATION_CITYs, :SERVICE_LOCATION_STATEs, " +
    ":BENEFICIARY_FIRST_NAMEs, :BENEFICIARY_LAST_NAMEs, :BENEFICIARY_DOBs, :HICNUMs, :CCNs, " +
    ":CLAIM_RECEIPT_DTs, :ADMISSION_DTs, :BILL_TYPEs, :LANGUAGE_IDs, :CONTRACTOR_IDs, :PRIORITY_IDs, " +
    ":UNIVERSE_DTs, :REQUEST_DTs, :BENEFICIARY_M_INITIALs, :ATTENDING_PROVIDER_NUMBERs, " +
    ":BILLING_NPIs, :BENE_ZIP_CODEs, :DRGs, :FINAL_ALLOWED_AMTs, :STUDY_IDs, :REFERRING_NPIs) " +
    " RETURNING REQUEST_ID BULK COLLECT INTO :REQUEST_IDs";
    int[] REQUEST_IDs = new int[range];
    cmd.Parameters.Add(":REQUEST_IDs", OracleDbType.Int32, REQUEST_IDs, System.Data.ParameterDirection.Output);
    However, when I run this query, it gives me a strange error ORA-00925: missing INTO keyword. I am not sure what that error means since I am not missing any INTOs
    Please help me resolve this error or I would appreciate a different solution
    Thank you

    It seems you are not doing a bulk insert but rather an array bind.
    (Which you will also find that it is problematic to do an INSERT with a bulk collect returning clause (while this works just fine for update/deletes) :
    http://www.oracle-developer.net/display.php?id=413)
    But you are using array bind, so you simply just need to use a
    ... Returning REQUEST_ID INTO :REQUEST_IDand that'll return you a Rquest_ID[]
    see below for a working example (I used a procedure but the result is the same)
    //Create Table Zzztab(Deptno Number, Deptname Varchar2(50) , Loc Varchar2(50) , State Varchar2(2) , Idno Number(10)) ;
    //create sequence zzzseq ;
    //CREATE OR REPLACE PROCEDURE ZZZ( P_DEPTNO   IN ZZZTAB.DEPTNO%TYPE,
    //                      P_DEPTNAME IN ZZZTAB.DEPTNAME%TYPE,
    //                      P_LOC      IN ZZZTAB.LOC%TYPE,
    //                      P_State    In Zzztab.State%Type ,
    //                      p_idno     out zzztab.idno%type
    //         IS
    //Begin
    //      Insert Into Zzztab (Deptno,   Deptname,   Loc,   State , Idno)
    //                  Values (P_Deptno, P_Deptname, P_Loc, P_State, Zzzseq.Nextval)
    //                  returning idno into p_idno;
    //END ZZZ;
    //Drop Procedure Zzz ;
    //Drop Sequence Zzzseq ;
    //drop Table Zzztab;
      class ArrayBind
        static void Main(string[] args)
          // Connect
            string connectStr = GetConnectionString();
          // Setup the Tables for sample
          Setup(connectStr);
          // Initialize array of data
          int[]    myArrayDeptNo   = new int[3]{1, 2, 3};
          String[] myArrayDeptName = {"Dev", "QA", "Facility"};
          String[] myArrayDeptLoc  = {"New York", "Chicago", "Texas"};
          String[] state = {"NY","IL","TX"} ;
          OracleConnection connection = new OracleConnection(connectStr);
          OracleCommand    command    = new OracleCommand (
            "zzz", connection);
          command.CommandType = CommandType.StoredProcedure;
          // Set the Array Size to 3. This applied to all the parameter in
          // associated with this command
          command.ArrayBindCount = 3;
          command.BindByName = true;
          // deptno parameter
          OracleParameter deptNoParam = new OracleParameter("p_deptno",OracleDbType.Int32);
          deptNoParam.Direction       = ParameterDirection.Input;
          deptNoParam.Value           = myArrayDeptNo;
          command.Parameters.Add(deptNoParam);
          // deptname parameter
          OracleParameter deptNameParam = new OracleParameter("p_deptname", OracleDbType.Varchar2);
          deptNameParam.Direction       = ParameterDirection.Input;
          deptNameParam.Value           = myArrayDeptName;
          command.Parameters.Add(deptNameParam);
          // loc parameter
          OracleParameter deptLocParam = new OracleParameter("p_loc", OracleDbType.Varchar2);
          deptLocParam.Direction       = ParameterDirection.Input;
          deptLocParam.Value           = myArrayDeptLoc;
          command.Parameters.Add(deptLocParam);
          //P_STATE -- -ARRAY
          OracleParameter stateParam = new OracleParameter("P_STATE", OracleDbType.Varchar2);
          stateParam.Direction = ParameterDirection.Input;
          stateParam.Value = state;
          command.Parameters.Add(stateParam);
                  //idParam-- ARRAY
          OracleParameter idParam = new OracleParameter("p_idno", OracleDbType.Int64 );
          idParam.Direction = ParameterDirection.Output ;
          idParam.OracleDbTypeEx = OracleDbType.Int64;
          command.Parameters.Add(idParam);
          try
            connection.Open();
            command.ExecuteNonQuery ();
            Console.WriteLine("{0} Rows Inserted", command.ArrayBindCount);
              //now cycle through the output param array
            foreach (Int64 i in (Int64[])idParam.Value)
                Console.WriteLine(i);
          catch (Exception e)
            Console.WriteLine("Execution Failed:" + e.Message);
          finally
            // connection, command used server side resource, dispose them
            // asap to conserve resource
            connection.Close();
            command.Dispose();
            connection.Dispose();
          Console.WriteLine("Press Enter to finish");
          Console.ReadKey();
        }

  • Mapping with Match and Merge operater giving ORA-06550 error while deploy..

    Created a simplet mapping to source from Customer table to tstcustomer table thru' Match and Merge operator. The mapping validated successful but giving ORA-06550 line x column y error while deploying the mapping.
    It is a simple mapping consisting of source Customer table, Match and Merge operator, tstcustomer target table.
    Could anyone advise me on how to resolve this?

    The test mapping basically consists of :
    source table - sh.customers
    target table - tstcustomers (similar to sh.customers)
    Match-Merge operator.
    The mapping validation was successful but when attempt was made to deploy, its giving errors starting with ORA-06550.
    I saved the code and executed thru' SQL Plus and the error details are as follows:
    SQL> show errors;
    Errors for PACKAGE BODY MMTEST4:
    LINE/COL ERROR
    594/6 PL/SQL: Statement ignored
    594/37 PLS-00306: wrong number or types of arguments in call to 'RTRIM'
    601/6 PL/SQL: Statement ignored
    601/36 PLS-00306: wrong number or types of arguments in call to 'RTRIM'
    1017/655 PL/SQL: SQL Statement ignored
    30
    1020/27 PL/SQL: ORA-00942: table or view does not exist
    2163/6 PL/SQL: Statement ignored
    2163/43 PLS-00201: identifier 'CUSTOMERS_0_CUST_GENDER' must be declared
    2170/6 PL/SQL: Statement ignored
    LINE/COL ERROR
    2170/42 PLS-00201: identifier 'CUSTOMERS_0_COUNTRY_ID' must be declared
    2586/655 PL/SQL: SQL Statement ignored
    30
    2589/27 PL/SQL: ORA-00942: table or view does not exist
    SQL>
    For your info, the same mapping without Match-Merge Operator is getting deployed and executed successfully.
    But with Match-Merge operator, after setting Match bins, Match rules, Merge rules etc the mapping is validated successfully but errorring out while deployment.
    Pls advise on how to resolve this.
    I understand that the Match-Merge Operator gives Pl/Sql output from the documentation.
    thanks
    Naren.

  • Output determination fields for MM

    Hi;
    I want to insert material field to field catalog for output inventory management. I couldn't find anyway. Is it possible? How can I insert any field to field catalog for output inventory management.
    Thanks, best regards.
    Yasar Unalp

    Hi,
    You can use t-code M705 to maintain your condition table, on the maintenance screen from menu Edit-->Insert Row, you can add another field into your condition table! But not all fields can be selected!
    Good luck
    Tao

Maybe you are looking for

  • How do i change my sign in details on the cloud download

    it tries to sign in with a non excisiting account but cant fnd anywhere to change this

  • Can not burn playlists

    Until recently all was well with Itunes and the way it functioned. I believe it was after a software upgrade I lost the abilty to burn playlists. The error message is something like can not find cd driver software. It shows the DVD Burner but instead

  • Netflix on ATV and Xbox

    Netflix. Same internet. Works on the Xbox. Freezes on ATV. Why?

  • A query on Weblogic developer licenses

    Hello, Firstly I would ask your excuse if I am posting this in the wrong forum. My organisation (s/w vendor) is planning to develop a j2ee project for one of our clients who would be using Weblogic 10 for deployment in Production. So naturally we wou

  • Mighty Mouse is freaking out!!

    Sorry folks, don't know where else to post this. Last night my mighty mouse started reacting as if I was pressing the two side buttons but I was not touching them, it kept trying to launch Expose. The slightest touch would trigger the side button act