Forum Replies Created

Viewing 15 posts - 11,536 through 11,550 (of 11,676 total)

  • RE: How to map data/define transformation in SSIS package?

    yingchai (4/13/2010)


    Hi Phil,

    I had some problems here after applying the Lookup Transformation when I want to do partial mapping.

    That's why I talked about redirecting or ignoring the error output of...

  • RE: How to map data/define transformation in SSIS package?

    yingchai (4/13/2010)


    Hi da-zero,

    If I have more than one transformation for EntityID column, how is the expression looks like?

    COMPANY | ENTITYID

    ---------------------

    AAA | BBB

    CCC ...

  • RE: SSIS last run package status

    dbowlin (4/13/2010)


    You can also create another package in SSIS and add an Execute Package task for each of your other packages, and then simply put a success precedence constraint between...

  • RE: Replace blanks in excel file by 0

    Add a derived column transformation with the following expression:

    (ISNULL(myColumn)) ? 0 : myColumn

    Do this for every column that needs conversion.

  • RE: How to map data/define transformation in SSIS package?

    Add a Derived Column Transformation to your data flow.

    Select "Replace 'EntityID'" in the Derived Column.

    Then use the following expression:

    (EntityID == "AAA") ? "BBB" : EntityID

    This will replace all AAA values...

  • RE: Unable to Edit Script in 'Script Task Editor'

    Open the package with a text editor.

    You will see the XML code of the package and somewhere in all that gibberisch, there should be your VB/C#.NET code.

  • RE: SSIS package & Deployment

    I believe it is best that you only make changes to packages in the test environment and then deploy them to production. Making changes to production packages is asking for...

  • RE: Web Based OLAP Client?

    You could use Cognos Analysis Studio, but I'm not really aware of the cost that comes with it.

    (because you should also have Cognos Framework Manager and Cognos Connection).

    It is web-based...

  • RE: Version control of rows.

    The simplest way to know of an entire row has been updated, inserted or deleted is by using a creation_datetime column and a delete_indicator (or a current_indicator, whatever works for...

  • RE: SSIS last run package status

    Another alternative (my brain takes some time to warm up :-D) is to set the value of the table I spoke of at the end of the package. Keep a...

  • RE: SSIS last run package status

    You could execute your packages in a SQL Server job.

    For each jobstep, you can specify what to do with success and failure. Point to a specific jobstep that updates a...

  • RE: Package Flow - How To Ensure Step B does notstart until A is Done

    jasonmorris (4/12/2010)


    Hi,

    The connectors between steps can be 'on success', 'on failure' or 'on completion'.

    I'd say it was the last one you require.

    Have fun.

    No, the precedence constraint 'On Completion' means that...

  • RE: String length?

    werner.broser (4/12/2010)


    In this sample not, because it is defined as varchar(16) and always truncated.

    kr/werner

    You're absolutely right, forgot about that one 😀

  • RE: String length?

    A small question:

    isn't the variable @InputStr stored somewhere? As the loop goes on forever, at some point in time that variable will become too large to reside in memory/physical location....

  • RE: execution plan of ssis

    What are you exactly trying to find out, because as far as I know, there aren't any execution plans for SSIS.

    There is the concept of execution trees though, is that...

Viewing 15 posts - 11,536 through 11,550 (of 11,676 total)