SSIS Tutorial Part 29-How to Create Multiple Files from a SQL Server Table in SSIS Package

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 22

  • @stockburn8215
    @stockburn8215 3 ปีที่แล้ว +1

    I know this video is years old but mate, thank you. I have been fighting with SSIS for a while now and this has put the finishing touches to my project!

  • @humblelife2819
    @humblelife2819 5 ปีที่แล้ว +2

    I was asked to implement this same type of package scenario practically in an interview... i applied for mid level role as BI developer...I have junior level experience in ssis..could not able to do it..was unsuccessful in interview...after seeing this video , I feel so dumb now...:( ...its that easy...I will have to practice all your video from now on!Thanks a lot for making the videos...

  • @edwardhanna1152
    @edwardhanna1152 4 ปีที่แล้ว

    Really nice job--on all of your videos! You are a shining light in a sea of SSIS darkness. I found #28 and #29 very helpful. Never would have figured this out by reading books about SSIS or trying this on my own. Keep up the great work!

  • @vivekpanchal8403
    @vivekpanchal8403 3 หลายเดือนก่อน

    i have given some tasks in company and i learned a lot from this playlist thank you for posting this. need to learn azure data factory please make a video on it.

  • @steckbrogames
    @steckbrogames 6 ปีที่แล้ว

    Thank god! This is just the video I needed to learn how to get my package working for flat file outputs with a Foreach loop container, thank you!!

  • @tonguita21
    @tonguita21 7 ปีที่แล้ว

    Excellent example. It was just what I needed. Many thanks from Argentina

  • @edniltonsc
    @edniltonsc 7 ปีที่แล้ว

    Muito obrigado por terem criado esses videos, por reservar o tempo e ajudar pessoas.

  • @agagagoghi
    @agagagoghi 5 ปีที่แล้ว

    Best example for me! And if I have an input flat file for feeding more than one Sql table? What I have to do? (like a Masterdata file populating n tables)

  • @biswanathdas2688
    @biswanathdas2688 8 ปีที่แล้ว

    Hi , This is good lesson. How to archive if we want to select in sql script multiple value like select * from table where column_name in ('a','b','c') remaining same condition.Thanks.

    • @TechBrothersIT
      @TechBrothersIT  8 ปีที่แล้ว

      +Biswanath Das Hi Biswanth Das, Thanks for liking the video. Instead of using the select * From dbo.TableName, you can use the query you have provided. It should work just fine.
      I created a video demo on same topic by using script task, This might be helpful.
      www.techbrothersit.com/2016/04/how-to-export-data-to-multiple-flat.html

  • @edwardhanna6851
    @edwardhanna6851 4 ปีที่แล้ว

    This works great! However, I've run into a gnarly problem which occurs when the data item fed to SQL as a parameter contains special characters. I am using Project Name as the parameter--and I have hundreds of Project Names that contain special characters (e.g. "/" and "&"). Do you know a way around this issue?

    • @edwardhanna6851
      @edwardhanna6851 4 ปีที่แล้ว

      OK, please disregard. I found a complex solution--then a simple one. The complex solution involved a T-SQL function to strip out the special characters. The simple solution was to simply use another field in the WHERE clause. (I used "Project Number" instead of "Project Name"--the field which had the problematic characters.)

  • @MrJeffer0326
    @MrJeffer0326 6 ปีที่แล้ว

    What if you want to loop through the RegionCD but wanted to display the RegionName in the file name?

  • @sundarkannan1856
    @sundarkannan1856 7 ปีที่แล้ว

    i have to deploy the packages under SSIS catalog sql client 2012. it accept only project level deployment. does not accept the package level in this situation how can i use for each loop container in my package because the file path variable i can not choose the parameter level variable .. it accept only local variable.. but local variable will not accepted by project deployment.. could you please help me

  • @kylekastilahn
    @kylekastilahn 3 ปีที่แล้ว

    The error circa 9:30 might have been because started to specify one of the columns phonenumber in brackets but might not have closed the bracket.

    • @nyrrovro
      @nyrrovro 3 ปีที่แล้ว

      That is correct. One of the closing brackets got accidentally deleted while copypasting which caused the issue momentarily.

  • @sethlong3680
    @sethlong3680 6 ปีที่แล้ว

    Is there a way to create the files with only some of the columns?

    • @TechBrothersIT
      @TechBrothersIT  6 ปีที่แล้ว

      Hi Seth, Yes it is possible. I have many scenarios to create files dynamically for set of columns. Check the tutorial list
      www.techbrothersit.com/search/label/SSIS%20Video%20Tutorial

  • @KarthikDeena
    @KarthikDeena 9 ปีที่แล้ว

    hi, how do I achieve the same if I have to export to multiple excel files??

    • @TechBrothersIT
      @TechBrothersIT  9 ปีที่แล้ว +1

      +Karthik D , In case of Excel you can't really create file on fly as we did for Flat file. Here is video link th-cam.com/video/zwUhHIpRoIA/w-d-xo.html , you create template file in advance and then copy each time as empty before loading the data.You will see I have renamed the file while moving to destination folder before loading the data. Good luck!

    • @KarthikDeena
      @KarthikDeena 9 ปีที่แล้ว

      +TechBrothersIT , Thanks Bro. It worked :):)