Forum Replies Created

Viewing 15 posts - 1 through 15 (of 16 total)

  • RE: ssis - combining two sources with no relation

    Actually, I dont have any input in a way to be presented, Its just I want an approach to do this problem.

    I can put it in steps like this:

    > OLE...

    ------------------
    Why not ?

  • RE: SSIS Training - any strongly recommended?

    I have used AppDev videos to learn SSIS.

    You can either buy them or search for the video links in rapidshare.

    I found the SSIS 2005 videos from AppDev better than the...

    ------------------
    Why not ?

  • RE: OLE DB Destination - Table name variable

    Robert Biddle (6/23/2010)


    1. Execute SQL Task ("Get ETL Info"): Returns Result Set with SourceTableName and DestinationTableName mapped to a resultset variable.

    I think in the 1st step, we should use Data...

    ------------------
    Why not ?

  • RE: Help with SSIS ForEach File Loop Enumerator configuration

    I tried a work around for this:

    1) In the For Each Loop Variable Mappings map Index 0 to a string variable (user::filepathname)

    Set Folder Path

    Set Files: *.zip

    2) With in the For...

    ------------------
    Why not ?

  • RE: SSIS 2005 Deployment

    imani_technology (6/20/2010)


    I have a configuration table on another database (not msdb). Would that cause a problem?

    I can answer this...

    Configuration table can be any where, any data base. Connection to...

    ------------------
    Why not ?

  • RE: CDC

    da-zero (6/22/2010)


    tmitchelar (6/21/2010)


    vineet1234 (6/18/2010)


    5) This way we get the non-matching rows in the error out put. These are the new records coming in.

    Among the matching rows we can use a...

    ------------------
    Why not ?

  • RE: CDC

    Raunak Jhawar (6/21/2010)


    Instead of using a conditional split to analyze each column, assign the columns a hashbyte value to check for modifications to the record.

    Even better...I remeber there was an...

    ------------------
    Why not ?

  • RE: Timeout problem with PSEXEC in SSIS package when running as a Job.

    http://support.microsoft.com/kb/918760

    Hope this link helps...

    Let me know

    ------------------
    Why not ?

  • RE: Comparing Nulls Inside a Conditional Split

    TRY THIS:

    ISNULL([var_a] == [var_b]) ? (ISNULL([var_a]) && ISNULL([var_b])) : [var_a] == [var_b]

    LET ME KNOW IF IT WORKS

    THNX

    ------------------
    Why not ?

  • RE: CDC

    Hi ...

    Let me try to explain the way our team had implemented this in one of my past projects:

    In a data flow task:

    1) OLEDB Source had the source query (Example...

    ------------------
    Why not ?

  • RE: Execute SQL task fails

    The best way to use Execute SQL task is to have the SQL statement as an expression.

    Whatever parameters you want to pass should be declared as user variables.

    In the execute...

    ------------------
    Why not ?

  • RE: SSIS Parameter in Oracle query

    Parameters can be passed to the where clause if the entire query is stored in a string variable.

    If there are 2 parameters to be passed, then create 3 variables.

    One variable...

    ------------------
    Why not ?

  • RE: SSIS Transaction Rollback

    Keep the child package out of 1st transaction...

    Child package should be called using the Precedence Constraint = Success..

    ------------------
    Why not ?

  • RE: SSIS and transactions

    Try putting the tasks in a sequence container.

    Sequence containers are meant to handle transactions

    ------------------
    Why not ?

  • RE: How to update a table using multiple joins

    Yes you are right

    I was missing the AND in my join...

    working fine now.

    Thanks

    ------------------
    Why not ?

Viewing 15 posts - 1 through 15 (of 16 total)