35 Merge Transformation in SSIS

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ก.ย. 2024
  • Merge Transformation in SSIS | Merge Transformation
    Download the file\script used in the Video from below link
    drive.google.c...
    SSIS Tutorials: • SSIS Tutorials
    SSIS real time scenarios examples: • SSIS real time scenari...
    SSIS Interview questions and answers: • SSIS Interview questio...
    merge transformation in ssis
    What is the difference between Merge and Merge Join transformation in SSIS?
    What is a Merge Join in SSIS?
    Which transformation can be used to merge multiple datasets in SSIS?
    Which transformation should be used to merge two data sets when the data sets are not necessarily sorted?
    Happy Learning.
    If you have any questions or suggestions please comment on the video or write to me at “aqil33@gmail.com”

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

  • @dibi-dibirec593
    @dibi-dibirec593 4 ปีที่แล้ว +1

    Thanks, Aqil. The best turorial of merge transformation on youtube.

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

      Thanks so much for your comment.

  • @kshankar1935
    @kshankar1935 2 ปีที่แล้ว

    Simple and superb Sir
    It's like a Social Service. Thanks

    • @learnssis
      @learnssis  2 ปีที่แล้ว +1

      ha ha. Thank you so much Shankar.

  • @KalugampitiyaJayakody
    @KalugampitiyaJayakody 7 ปีที่แล้ว +1

    very clear and easy to follow. thank you for the video.

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

      Glad to know that you liked it.

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

    Well done Mr. Aqil..appreciated !!!

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

      Thanks a lot Sujith for appreciating it.

  • @kdu97
    @kdu97 ปีที่แล้ว

    Thank you very much!

    • @learnssis
      @learnssis  ปีที่แล้ว

      Glad you liked the video.

  • @jeffersonromario5936
    @jeffersonromario5936 ปีที่แล้ว

    When I try to export to a txt, it doesn't come out with the column names.

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

      Oh ideally it should. I normally use Union All transformation for merging the 2 data sets into a single data set as we don't need to sort the data before Union All, try using that and see if column names comes out.

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

    very good guide line sir

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

      Good to know that you liked it. Thanks.

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

    excellent sir

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

    Sir I’m getting an error “does not metadata for associated output column”

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

      Can you just delete the transformation and add it back and try again ? Also try to close and reopen the SSIS package. Thanks.

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

    I want to perform the merge join operation on the single table it take as two source please explain if it is possible

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

      If you want to learn how to perform merge join operation, then you can see below video which tells you how to perform merge join.
      th-cam.com/video/G3aqPIAqy2Y/w-d-xo.html
      If you still have any question, let me know.

  • @sriniwaaskorampalli8145
    @sriniwaaskorampalli8145 2 ปีที่แล้ว

    sir the only diff btwn merge and union all is "Sorting"?

    • @learnssis
      @learnssis  2 ปีที่แล้ว

      In addition to this difference, there is another difference that, Union All accepts more than two inputs while Merge transformation doesn't.

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

    Looks like the data were already sorted in the source. Still it requires sort, which is an expensive operation :(

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

      Yes it is. Try to use Union All Transformation if possible.

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

    sir plz upload all videos related to msbi(ssis,ssrs and ssis)

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

      Thanks Rashmi for your comment. Yeah sure I will be working to create more videos on MSBI.

  • @antoniolupen6138
    @antoniolupen6138 8 หลายเดือนก่อน

    Every time you run this solution the data in the destination SQL server will be duplicated. Where do i write a 'DROP IF EXISTS' command ? Other solution would be to create a new table2 so i´d have the orininal and the updated. How can it be done?

    • @learnssis
      @learnssis  8 หลายเดือนก่อน +1

      In this ssis package we are inserting the data to MergeTransformationData inside the data flow task. So if you will rerun it, then it can insert duplicate data to MergeTransformationData table.
      So you can truncate table MergeTransformationData using an execute sql task before the data flow task.