SSIS Tutorial Part 112-Execute Multiple Stored Procedures from a Table by using Execute SQL Task

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

Комментарии • 9

  • @krismaly6300
    @krismaly6300 8 лет назад +1

    I enjoyed watching this video.
    Thanks for educating the community

  • @zoyasaleem5689
    @zoyasaleem5689 Год назад

    hi can you please explain for each container run the procedure parallel or one by one ? means if one procedure have error then other will not work.

  • @kingingway3308
    @kingingway3308 9 лет назад +1

    Nice one. Thank you

  • @larryding7618
    @larryding7618 7 лет назад

    I think I'm kinda late here, but I want to know what if I have some SPs with different input parameters, how can I do that, I mean execute them at one time, also use a loop. thx

    • @sandeeppai25
      @sandeeppai25 4 года назад

      How about using conditional split based on procedure names then execute SQL task accordingly

  • @anujtripathi2007
    @anujtripathi2007 9 лет назад

    Though, this is a unique requirement but I would never suggest this architecture. This is quite bad approach and will lead down SQL Server performance.
    About your video: Nice work but one advice. Do not use EXEC.. it is a bad practice , instead use sp_executesql.

    • @TechBrothersIT
      @TechBrothersIT  9 лет назад +1

      You are right. The purpose was to show how to loop through items n write expressions. Thanks for feedback

    • @parizoabunaw9749
      @parizoabunaw9749 3 года назад

      Just what to know if this is right: "EXEC"+ @[User::DatabaseName]+"."+ @[User::SchemaName]+"."+ @[User::SPName]