Matching colour across clips based on one or more reference points

I usually use three cameras of different makes and occasionally five (adding two GoPros)  This leaves me with the task of colour matching in post as even when manually adjusting for WB, the sensors just record some colours differently.
Here's a sample where I've manully adjusted the colours so that the shirt is more or less the same from all three angles:  http://www.youtube.com/watch?v=fMacSgwjFBc  The CU of the fly tyer has the best colour representation of the three cameras so I would want to match colour or the other two, to it. FCPx's colour match doesn't cut it for this job.
What I'd like is a colour adjustment tool where I could pick one or more shades in one clip, from his shirt for example, and then paste that pick onto a different clip and have the tool adjust the colour of that clip, based on the difference. 
Is there anything out there that will do this?  Failing that, would Hawaiki Autograde be a decent alternative for this sort of colour balancing between cameras?

In the end, I bought AutoGrade as its tint and WB balance controls let me manage things just like these controls do in Aperture.  It would be nice if FCPx had them as it's a simple way to manage WB issues, vs. playing with colour correction.

Similar Messages

  • Identifying records based on one or more common fields

    Hi all
    This should be easy - but going round in circles. I want to be able to group together records based on whether at least one field is the same as the corresponding field in a different record.
    So:
    Account No Tel No PostCode
    ABC123 17654231 TS24 4ZX
    DEF987 8764573 NE1 1AL
    QWE921 17654321 SR9 8BD
    ASD579 24697615 SR9 8BD
    So in the above example the first, third and fourth record would all form one group because the first links to the third based on Tel No and the third links to the fourth based on PostCode. The second record will be in a group of its own. I want to output the above (into a new table) with an additional field linking relevant records together (a group number).
    My first pass was to simply:
    select the minimum group number from the output table where either the Tel No or Phone No match the current record. If no match then create a new record for this record with the next incremental group number.
    This would give
    Account No Tel No PostCode Group
    ABC123 17654231 TS24 4ZX 1
    DEF987 8764573 NE1 1AL 2
    QWE921 17654321 SR9 8BD 1
    ASD579 24697615 SR9 8BD 1
    On the surface that looks OK. The problem occurs if for instance the PostCode in the second record is 'SR9 8BD'. The output would be identical to the above - but I want them to all share the same group number as now there is some commonality between all four records. I'm sure I need to do something recursively but just can't get my head around it.
    Would really appreciate some help.
    Thanks
    Ian

    Hi, Ian,
    Welcome to the forum!
    Be sure to read the forum FAQ {message:id=9360002} It contains several tips that can help you get good answers quickly
    976560 wrote:
    Hi all
    This should be easy - but going round in circles.Ironically, the solution below involves NOCYCLE.
    I want to be able to group together records based on whether at least one field is the same as the corresponding field in a different record.
    So:
    Account No Tel No PostCode
    ABC123 17654231 TS24 4ZX
    DEF987 8764573 NE1 1AL
    QWE921 17654321 SR9 8BD
    ASD579 24697615 SR9 8BDWhenever you have a problem, please post CREATE TABLE and INSERT statments for all tables inolved. Since this is your fist message, I'll do it for you:
    DROP TABLE     table_x;
    CREATE TABLE  table_x
    (   Account_No     VARCHAR2 (10)     PRIMARY KEY
    ,   Tel_No      VARCHAR2 (10)
    ,   Post_Code     VARCHAR2 (10)
    INSERT INTO table_x (account_no, tel_no,     post_code)
           VALUES         ('ABC123',       '17654321', 'TS24 4ZX');
    INSERT INTO table_x (account_no, tel_no,     post_code)
           VALUES         ('DEF987',       '8764573',  'NE1 1AL');
    INSERT INTO table_x (account_no, tel_no,     post_code)
           VALUES         ('QWE921',       '17654321', 'SR9 8BD');
    INSERT INTO table_x (account_no, tel_no,     post_code)
           VALUES         ('ASD579',       '24697615', 'SR9 8BD');
    COMMIT;
    So in the above example the first, third and fourth record would all form one group because the first links to the third based on Tel No Be careful! It looks like you made a typo there. I changed the number ending in '231' to '321'.
    and the third links to the fourth based on PostCode. The second record will be in a group of its own. I want to output the above (into a new table) with an additional field linking relevant records together (a group number).
    My first pass was to simply:
    select the minimum group number from the output table where either the Tel No or Phone No match the current record. If no match then create a new record for this record with the next incremental group number.
    This would give
    Account No Tel No PostCode Group
    ABC123 17654231 TS24 4ZX 1
    DEF987 8764573 NE1 1AL 2
    QWE921 17654321 SR9 8BD 1
    ASD579 24697615 SR9 8BD 1
    On the surface that looks OK. The problem occurs if for instance the PostCode in the second record is 'SR9 8BD'. The output would be identical to the above - but I want them to all share the same group number as now there is some commonality between all four records. I'm sure I need to do something recursively but just can't get my head around it.You said it exactly: you need to do something recursively.
    What features of Oracle SQL are recursive? CONNECT BY (as shown below) and, starting in Oracle 11.2, recursive WITH clauses.
    Would really appreciate some help.Here's one way to do that:
    CREATE TABLE     table_y
    AS
    WITH   got_related_account_no      AS
         SELECT  table_x.*
         ,     CONNECT_BY_ROOT account_no     AS related_account_no
         FROM     table_x
         CONNECT BY NOCYCLE  account_no     != PRIOR account_no
              AND   (         tel_no      = PRIOR tel_no
                    OR    post_code      = PRIOR post_code
                 -- OR ...   -- other columns as needed
    SELECT       account_no, tel_no, post_code
    ,       DENSE_RANK () OVER (ORDER BY  MIN (related_account_no))
                         AS grp
    FROM       got_related_account_no
    GROUP BY  account_no, tel_no, post_code
    ;This will work in Oracle 10.1 and up.
    At the end of this, table_y contains:
    ACCOUNT_NO TEL_NO     POST_CODE         GRP
    ABC123     17654321   TS24 4ZX            1
    ASD579     24697615   SR9 8BD             1
    DEF987     8764573    NE1 1AL             2
    QWE921     17654321   SR9 8BD             1

  • Af:tree group by one or more view attribute(s)

    Hi.
    How to create af:tree with one or more levels based on one or more attribute's group by?
    I have a view with two attributes (Attr1 (possible values are 1 or 2) and Attr2 (value is string like name)). I want to create tree with root level of Attr1 and childer of Attr2.
    Example:
    + - 1
    | - - - 'Name1'
    | - - - 'Name2'
    + - 2
    | - - - 'Name3' Do I have to create new view object (based on same table with only distinct data) for each level in tree? Or is there any "better" way of doing this?
    Regards

    You are right !!
    The problem is inside the report generated by Oracle Reports
    The XML code, which I retrieve running the report request is the following:
    <?xml version="1.0" encoding="&Encoding"?>
    - <!-- Generated by Oracle Reports version 6.0.8.20.2
    -->
    - <MODULE1>
    - <LIST_G_MANAGER_NO>
    - <G_MANAGER_NO>
    <MANAGER_NO>1000</MANAGER_NO>
    <MANAGER_NAME>Anil Passi</MANAGER_NAME>
    </G_MANAGER_NO>
    - <G_MANAGER_NO>
    <MANAGER_NO>1001</MANAGER_NO>
    <MANAGER_NAME>Martin</MANAGER_NAME>
    </G_MANAGER_NO>
    </LIST_G_MANAGER_NO>
    </MODULE1>
    and the problem is the "&" !!!
    So, inside Oracle Reports, when I try to generate the XML code from a preexisting report, the encoding variable is not set.
    Now, I'm trying to understand how to set it, but I didn't find nothing....
    Somebody knows where can I find a Report's configuration file in order to set this "encoding" ?
    Thanks
    Alex

  • Color matching with multicam clips

    Hello,
    I'm trying to figure out how I can color match between my multicam clips in FCPX.  I'm kind of a newbie, but I'm trying... :-)
    If I double click on a multicam clip that I just created, I see all the clips expanded on the timeline.  At that point, I can sync, edit, etc.  If I color match there, it's very easy, and it works well.  The problem is that I can't figure out how to save all my edits and then "un-expand" the mulitcam clip so it's just the one layered clip (same as if you just drag the multicam clip down from the events list). 
    I suppose I could just leave it expanded - but it would be easier to work with if it was just the one multicam clip, instead of all the clips inside it expanded out.  So - how do I do it?  Am I making sense?  If the color matching applied to the actual event, it would be easy - and I could just create a new multicam clip and start a new project.  However, it doesn't work that way and only applies the color matching to the clip in the timeline (as it should....).
    Thanks for any help you might have.
    Johnny

    Hi Tom,
    I've got a similar problem to the one you helped on this thread.
    I'm trying to colour correct one of the multicam clips in the angle editor.
    When I click colour match and hover over the other clip part of this multi cam clip nothing happens and the 'apply match' button remains greyed out.
    I can colour match the individual cuts back in normal time line but of course I don't want to waste time doing it to every single clip/cut.
    Why won't it let me colour correct in angle editor?
    The mouse icon turns into a mini monitor when I hover over the clip i want to match to.
    Any ideas?

  • Can iTunes share purchased content across Apple IDs within one household, OR

    QUESTION ONE
    Will iTunes share purchased content using TWOApple IDs, across different devices within one household?
    QUESTION TWO
    Should each device with a separate user have its own iCloud ID? CONCURRENTLY, should each device belonging to the SAME user use the SAME cloud ID?
    QUESTION THREE
    I think I "can" use one Apple ID, and just usedifferent iCloud IDs for EACH device. Am I fundamentally wrong? Am I legallywrong?
    UNDERSTOOD FACTS:
    1)  Apple states, each person should have their own AppleID:  http://support.apple.com/kb/HE37 
    2)  iCloud servicesare: mail, contacts,calendar etc...
    3)  iTunes servicesare: music, videos, Apps, etc...
    You can sync iTunes across up to5 different computers using your Apple ID: http://support.apple.com/kb/ht1420, however there does not seem to be alimit of how many Apple devices youcan sync within using a single iTunes account (Apple ID). *NOTE: beware automaticsynchronization of new apps..
    4)  iTunesin the Cloud is a different animal altogether! This should allow sharing of all iTunes content across all “your” devices, aslong as it was purchased thru iTunes (If not, you need to shell out an additional $25/yr for iTunes Match)
    SCENARIO:  I got a new iPhone, and am giving theold iPhone to my spouse. ALL iTunes content has been managed and purchased using oneApple ID that matches one iCloud ID. Ideally, just like anyother family using multiple Apple products and usingiCloud; we would like to SHARE songs & Apps, but NOT share calendars, mail etc...(sharing contacts would be nice).
    QUESTION FOUR
    Under the above scenario, must I have a “.me email” account?
    I have been reading threadsabout managing content across multiple devices, using different IDs, both AppleIDs and Cloud IDs, and there is a LOT of confusion. I'm visual, so I've attached the graphic illustrating how I "think" I should proceed.  **I have not set up the new iPhone yet.
    We do not have a Mac or a".me email" account, and we use Gmail.
    Any help is appreciated!

    I have the computer authorized to use the Apple ID content (been using iTunes since 2007).
    My issue is I cannot create sperate iCloud IDs for each device. I get prompted/directed to create a new Apple ID, which is what I want to avoid. I want to use one "FAMILY" AppleID as it is, and use iCloud IDs for each device.
    My logic is: ALL my purchases are tied to an AppleID, and I just want to share on devices that leave the house, like another iPhone.
    So- what to do? How to get a seperate iCloud ID without a seperate AppleID? I have an iPhone &amp; iPad, husband has an iTouch &amp; iPhone. How to share selectively? All devices were originally setup using one Cloud ID and one Apple ID. Now I need new IDs to represent the new user on the iTouch &amp; iPhone.

  • Preaggregation across value based hierarchy dimension in 11g

    Hi All,
    I have created a cube with 6 dimensions in olap 11g. One of those six dimensions has only one hierarchy which is value based hierarchy. I have chosen level based aggregation as I know at what levels exactly users are going to query. When I was going through the dimensions to choose levels to preaggregate I noticed there were no options available for my value based hierarchy dimension ( I could see "all" option for the same case in 10g) then I tried to look for definitions of underlying objects just to make sure it will preaggregate data across my value based hierarchy dimension.
    I found value set corresponding to my value based hierarchy dimension in <CUBE NAME>SOLVEAGGMAP object , which AWM uses to decide which dimension values to preaggregate but if I do rpr on that value set (rp r<CUBE NAME>SOLVE<DIMENSION NAME>_PVSET) it shows NA so my question is can I pre aggregate across value based hierarchy dimension in olap 11g?
    Olap Version: 11.2.0.1
    AWM version: 11.2.0.1
    Thanks

    Even if you know exactly which levels your users will query, percent based precompute (e.g. 30%) may still be faster in practice because queries are returned using 'sparse looping' instead of 'dense looping'. This was the single biggest performance advantage of 11g over 10g.
    But if you still want to use level based precompute, then you should look at the XML template for the cube (as saved by AWM, for example). In it you should find something called PrecomputeCondition. This defines the set of members that are precomputed. Here is an example I just created using the GLOBAL schema
    <PrecomputeCondition>
    <![CDATA[
      "TIME" LEVELS ("TIME"."MONTH", "TIME".CALENDAR_QUARTER, "TIME".CALENDAR_YEAR),
      CHANNEL LEVELS (CHANNEL.TOTAL_CHANNEL, CHANNEL.CHANNEL),
      CUSTOMER LEVELS (CUSTOMER.MARKET_SEGMENT, CUSTOMER.REGION, CUSTOMER.SHIP_TO),
      PRODUCT LEVELS (PRODUCT.CLASS, PRODUCT.FAMILY, PRODUCT.ITEM)]]>
    </PrecomputeCondition>The PrecomputeCondition is also visible through the USER_CUBES view.
    SELECT PRECOMPUTE_CONDITION
    FROM USER_CUBES
    WHERE CUBE_NAME = 'MY_CUBE';You can hand modify this condition in the XML to specify an alternative 'non level based' precompute condition for any dimension. For example, if you define an attribute named 'SHOULD_PRECOMPUTE' on your PRODUCT dimension that is 1 for members to be precomputed and 0 for all others, then you can change the condition as follows.
    <PrecomputeCondition>
    <![CDATA[
      "TIME" LEVELS ("TIME"."MONTH", "TIME".CALENDAR_QUARTER, "TIME".CALENDAR_YEAR),
      CHANNEL LEVELS (CHANNEL.TOTAL_CHANNEL, CHANNEL.CHANNEL),
      CUSTOMER LEVELS (CUSTOMER.MARKET_SEGMENT, CUSTOMER.REGION, CUSTOMER.SHIP_TO),
      PRODUCT WHERE PRODUCT.SHOULD_PRECOMPUTE = 1]]>
    </PrecomputeCondition>If you recreate the cube from the XML with this condition, then the PVSET valueset you discovered should contain all dimension members for which the attribute value is 1.   This gives you complete control over what is precomputed.   Note that AWM doesn't support this form of condition, so it won't show up if you go to the Precompute tab, but it is valid for the server.  The PL/SQL below will modify the PrecomputeCondition (for the cube named MYCUBE) without going through AWM.
    begin
      dbms_cube.import_xml(q'!
    <Metadata
      Version="1.3"
      MinimumDatabaseVersion="11.2.0.2">
      <Cube Name="MY_CUBE">
        <Organization>
          <AWCubeOrganization>
            <PrecomputeCondition>
              <![CDATA[
               "TIME" LEVELS ("TIME"."MONTH","TIME".CALENDAR_QUARTER, "TIME".CALENDAR_YEAR),
               CHANNEL LEVELS (CHANNEL.TOTAL_CHANNEL,CHANNEL.CHANNEL),
               CUSTOMER LEVELS (CUSTOMER.MARKET_SEGMENT,CUSTOMER.REGION,CUSTOMER.SHIP_TO),
               PRODUCT WHERE PRODUCT.SHOULD_PRECOMPUTE = 1]]>
            </PrecomputeCondition>
          </AWCubeOrganization>
        </Organization>
      </Cube>
    </Metadata>
    end;
    /

  • Matching Video/Audio Clip Lengths

    I import a series of video clips (from 35 mm slides) into the video track time line, each 7 seconds in length with transitions. If desired, I may reorder the sequence of these clips. Then I add voice-over for each clip on an audio track. The voice over time for a particular video clip may run 10-15 seconds. To extend the video clip time to match the length of the audio clip, I set an "in" and "out" marker to match the length of the audio clip, drag the video clip from the Browser to "fit to fill" in the canvas thus extending the time of the video clip. Is there a more efficient way of extending the length of the video clip to match the length of the voice-over clip? Many thanks. Jack A2

    Are these still images or video clips? You said they came from slides is why I ask. One way is to use the ripple tool to lengthen the clips in the timeline.

  • HT204053 I want to play newly purchased music but cant, i get the message "You can use iTunes Match on this computer with just one Apple ID every 90 days. (mobileme family pack is the problem i think)

    I purchase a new album on my phone but then cannot download it to my laptop -  I get the message:
    "You can use iTunes Match on this computer with just one Apple ID every 90 days. All I can think is that the problem stems from purchasing a mobileme family & some of the music being my daughters. (she is 9 & I need to be ble to listen to more than Katy Perry & Justin Bieber) Please help! :-(

    Welcome to the Apple Community.
    Youll get that message when you change the iTunes account you are logged into, you can't keep changing it.

  • How do I set up a 2 column fixed, left sidebar... in CC Dreamweaver based on one of the 16 samples in Dreamweaver CS5?

    I am in Graphic Design school and we are studying Dreamweaver CS5.  One of the projects is to create a new page based on one of the 16 samples available which is the 2 column, fixed, left sidebar, header and footer option.
    However, in CC Dreamweaver, I only see the 2 column, fixed, right sidebar option.

    Change line 62 to
    float: left;

  • How do I combine several clips to make one movie?

    The iPhone 6 doesn't have a video pause button (ingenious) so I recorded several clips.  I downloaded these clips to iMovie and put them all in one event.  When I play the event, the video jumps a little every time it goes from one clip to the next.  Is there a way to combine the clips to make one movie that doesn't have those jumps.  Thanks!

    Thanks for your response.  I already figured this out but was unable to post a reply sooner.  I just figured out that you can't reply when you are in private browsing.  Another Apple glitch.  Regarding this issue, in typical Apple fashion, the products can be confusing to use, the user manuals are poorly written, the help menus, many times, aren't very helpful, and the product development decisions can be baffling.
    In the case of video-making and editing, Apple has hit the triple-crown: First, the iPhone 6 video recorder doesn't have a pause button; Second, in iMovie, you CAN'T combine separate clips; And third, again in iMovie, you can't download clips directly from iPhoto - you have to move the clips out of iPhoto first.  By the way, iPhoto is the default location when clips are uploaded to iCloud.  Unbelievable! 
    For any first-time user reading this, a project is a movie or a trailer.  And even when you are in a project, you can't combine separate clips.  You can only combine a clip that was separated back to the clip it was separated from.  Thanks, Karsten, for taking the time to respond.

  • I have a new laptop and want to transfer my itunes music across from the old one. What's the easiest /quickest method?

    I have a new laptop and want to transfer my itunes music across from the old one. What's the easiest /quickest method?

    Refer to this article:
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751

  • You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 5 days.

    I only have 1 Apple ID.  I turned off iTunes Match on my iMac, and now I cannot turn it back on.  I get this error when I try to just turn iTunes Match back on, on the same computer, with the same Apple ID that I used orginially to subscribe to iTunes Match:
    This computer is already associated with an Apple ID.
    You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 5 days.
    I checked for iTunes updates.  None are available since I am using the latest.
    I stopped/started iTunes.  I rebooted the iMac.
    NOTHING HELPS!!!!!!!!
    I have a Mac Mini and I use the same Apple ID on iTunes there.  I was able to turn iTunes Match off and back on with no trouble at all but my iMac refuses to allow me to turn on iTunes Match.
    Now what do I do?

    Unless you really only have one AppleID that you use with the iTunes Store there's really nothing you can do. In the case of having only one AppleID you should contact iTunes Store support, since that would be a server-side problem.

  • HT4913 iTunes Match:You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 85 days. What can I do?

    I'm subscribed to iTunes Match but when I turn it on I get this message:You can use iTunes Match on this computer with just one Apple ID every 90 days. You cannot associate this computer with a different Apple ID for 85 days. What can I do?

    I had this happen back in December/January. I sold my MBP that I used to subscribe to iTunes Match back in December. In January, I bought a used MB and tried to use iTunes Match on it. I was told I had to wait nearly two months to use it on the new computer. I waited and was finally able to use it in the new computer.\
    Sadly, this has more to do with the content providers (Record lables / movie studios) than it has to do with Apple impsoing the restrictions.

  • SSIS Error Text was truncated or one or more characters had no match in the target code page

    I the same issue or something close.
    Except I have one Field (27) that get a trunacation error
    Error:
    Data conversion failed. The data conversion for column "Column 27" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.".
    The "output column "Column 27" (91)" failed because truncation occurred, and the truncation row disposition on "output column "Column 27" (91)" specifies failure on truncation. A truncation error occurred on the specified object of the specified component.
    Data looks like:Red Text is the field that is throwing the error!
    00000412,
    0000000011411001,
    0273508793,
    01,
    "RUTH           ",
    "EDWARDS             ",
    19500415,20080401,
    "N",
    04488013,
    "1",
    "F",
    365094,
    20080401,
    000472162716,
    "1447203880    ",
    43995202341210,
    00120.000,
    0010,
    00008.26,
    00004.96,
    000.00,
    00002.70,
    00007.66,
    0,
    "PROMETH/COD  SYP 6.25-10 ",
    "Y",
    "Promethazine w/ Codeine Syrup 6.25-10 MG/5ML               ",
    0000,
    "001C",
    610020,"WELLP1537",
    "O",
    "N",
    00,
    "D",
    "S",
    "G",
    "ID01V012008782",
    "TOM AHL CHRYSLER              ",
    "M",
    "M",
    "PBD $20/10+40%/20%            ",
    00008.26,
    "1184641367"

    I have found four things that I always check when I run into this problem.  I have yet to find a time when one of these didn't work (specifically helps when reading data from flat files but I suppose most of the four would apply to any source).  Check out my blog post, content repeated below:
    1.  Make sure to properly configure the "Flat File Source".  When setting the connection properties to the flat file, take time to click on the advanced tab and ensure that the" Name", "DataType", and "OutputColumnWidth" properties are set properly.  I have found that if this is setup correctly when the initial connection is created, some if not all of the data type issues and errors can be alleviated.  The "Flat File Connection Manager Editor" can be accessed while initially creating the connection or by double clicking on a flat file connection within the "Connection Managers" for connections that have previously been created. 
    2.  Depending on the order and steps that were used to create the connection to the flat file, sometimes the data types need to be updated in an additional area.  This can be found by right clicking on the "Flat File Source" and selecting "Show Advanced Editor...".  Once in the advanced editor, click on the "Input and Output Properties" tab.  Expand the "External Columns" folder.  For each field being loaded from the flat file there are some configurable properties.  Make sure that the "DataType" field is properly set for each field.
    3.  Something else that can be done if you are sure that the data type is set correctly in both of the two previously mentioned locations is to set the "Flat File Source" to essentially ignore those annoying truncation errors.  On the same "Input and Output Properties" tab, expand the "Output Columns" folder.  For those fields listed, there is a "TruncationRowDisposition" property.  By default this is set to "RD_FailComponent".  This can be switched to "RD_IgnoreFailure" in order to allow the data to successfully pass through the "Flat File Source" even if SSIS believes that truncation is going to occur.  Along with making this change, you can also check the "DataType" in the "Output Columns" as well.
    Caution: If you do set the "Flat File Source" to "RD_IgnoreFailure" as mentioned above, always take time to review the data loaded in the target table to ensure that the integrity of the data was not jeopardized.
    Note:  I have found that when the "DataType" for both the "External Columns" and "Output Columns" is manually updated that it does not remain the same when the advanced editor is reopened.  For this reason, try Steps 1 and 2 before setting the "Output Columns" manually.
    4.  The last thing to try, and this applies specifically to loading data from Excel files as opposed to text or CSV is to set the package to run in 32-bit mode.  Click on "Project" on the top menu and select "Data Imports Properties...".  Click on "Debugging" under the "Configuration Properties" and set the "Run64BitRuntime" to "False".
    Working with data from flat files can sometimes be difficult in SSIS.  By using one or many of the approaches I have listed above you should be able to create a repeatable process that is frequently needed within most SSIS packages.  Be very careful when setting data types within SSIS and make sure to do it upfront when necessary because it can be harder to debug later in the development process.  If the proper changes are made it should not be a surprise to feel a big SSIS developer sense of relief when the screen shows all green.
    Let me know if this works!
    Check out my blog!

  • Clip inspector in imovie not working properly - when I select a picture - and select clip adjustment it tells me that I need to select one or more clips to view Inspector tools and in a clip the audio adjustment only shows a speaker? help

    Clip inspector in imovie not working properly - when I select a picture (in project library) - and select clip adjustment it tells me that I need to select one or more clips to view Inspector tools and when I select a movie clip and then click on audio adjustments the audio adjustment appears as a speaker icon and I don't know how to get to the various audio options? It was working fine one minute and then I seemed to lose the functionality. Also editing a photo in a photo or getting rid of ken burns effect etc does not seem to work. help

    Can anyone shed any light on this as I am having the same problem? One minute it works fine, the next you get the error message above.
    Many thanks.

Maybe you are looking for

  • App disappears in App Store

    My purchased app disappeared in App Store but instead a new version is found with the same name and developer. It's Pocket Expense, my version is 4.5.1 and it has some issue now. What should I do? Delete the old and buy the new one? What happen to al

  • Duplicate search results

    Hi ,   I am creating a search model using ESH_MODELER transaction, am using tables like HRP1001 , /shcm/hrp5091, /shcm/hrp5090, BUT0iD, BUT000 etc. On clicking search am getting duplicate entries. Really not sure whats the problem here, has anyone en

  • CurrentSales data

    Hi guru's, Can anybody give hint where can I get current sales data in any standard report / at any other place. Please its urgent. thanks tuljasingh

  • Firefox crashes upon opening, and randomly - Windows XP.

    What I'm experiencing is that FireFox crashes upon most start-ups. it also crashes randomly. Be it known, it has been doing this in safemode, too. It has been doing this before any plugins were installed, and it has been doing it since FireFox 12 or

  • Finder keeps interfering with my Trend Micro Smart Surfing update...

    My Micro Trend Smart Surfing has an update. It gets to 99% and Finder comes back to the front and Trend stops/disappears and becomes inactive before the update can complete. When I put my pointer over the Trend symbol I get a spinning beach ball. Wha