Forum Replies Created

Viewing 15 posts - 91 through 105 (of 1,047 total)

  • RE: Pass parameter while executing SSIS

    Koen Verbeeck (12/19/2013)


    kapil_kk (12/19/2013)


    Koen Verbeeck (12/19/2013)


    kapil_kk (12/18/2013)


    HI all,

    I have a scenario in which I need to execute the Stored Procedure which required input parameters.

    e.g. usp_TestData ?,?

    I have created user variables...

  • RE: Pass parameter while executing SSIS

    Evil Kraig F (12/19/2013)


    Two ways come to mind. Configuration for the variables, or run time settings when you call the SSIS executable via the command line. If you...

  • RE: Pass parameter while executing SSIS

    Koen Verbeeck (12/19/2013)


    kapil_kk (12/18/2013)


    HI all,

    I have a scenario in which I need to execute the Stored Procedure which required input parameters.

    e.g. usp_TestData ?,?

    I have created user variables in package itself...

  • RE: Data Transfer through SSIS

    Thanks a lot guys.. It worked :-):-D

  • RE: Data Transfer through SSIS

    Koen Verbeeck (12/18/2013)


    kapil_kk (12/18/2013)


    After data gets transferred change the status flag to 1 for those rows...

    In which table? Table1 or table2?

    in table1 from which I am transferring data..

  • RE: Data Transfer through SSIS

    Koen Verbeeck (12/18/2013)


    kapil_kk (12/18/2013)


    Abu Dina (12/18/2013)


    +1 to Koens's suggestion.

    I like to keep things simple so I would link the Data Flow Task to an Execute SQL Task (with On Success...

  • RE: Data Transfer through SSIS

    Abu Dina (12/18/2013)


    +1 to Koens's suggestion.

    I like to keep things simple so I would link the Data Flow Task to an Execute SQL Task (with On Success precedence constraint) that...

  • RE: Data Transfer through SSIS

    Koen Verbeeck (12/18/2013)


    kapil_kk (12/18/2013)


    Abu Dina (12/18/2013)


    If your source data comes from a SQL Server table then why not use SQL command as your Data Access mode (in the OLEDB Data...

  • RE: Data Transfer through SSIS

    Abu Dina (12/18/2013)


    If your source data comes from a SQL Server table then why not use SQL command as your Data Access mode (in the OLEDB Data Source component) and...

  • RE: Performance Opinion

    Jeff Moden (12/14/2013)


    @kapil_kk,

    I don't see any obvious severe problems in the code. I agree with Gail, though. One test is worth a thousand expert opinions. Run the...

  • RE: Performance Opinion

    ScottPletcher (12/13/2013)


    I suggest making index changes scripted below, following these steps:

    1) Capture and save the existing index missing/usage stats for that table immediately, before any hanges are made.

    2) Run the...

  • RE: Performance Opinion

    ScottPletcher (12/12/2013)


    1) Maybe you can combine the three separate UPDATEs into one, as shown below, avoiding repeated joins of the same tables.

    2) Depending on the row counts, you might consider...

  • RE: Performance Opinion

    dwain.c (12/12/2013)


    You should wrap your UPDATEs/INSERT/MERGE in a TRANSACTION and then do COMMIT/ROLLBACK consistent with your error handling.

    Thanks Dwain, I will do that 🙂

  • RE: Performance Opinion

    GilaMonster (12/11/2013)


    More nolock abuse. Are the users aware and happy with the fact that their reports could return incorrect data?

    Ok, I will remove that nolock part from code.......................

    Other than that...

  • RE: hat is wrong with this insert statement?

    Yes, It will work

Viewing 15 posts - 91 through 105 (of 1,047 total)