62 How to do performance tuning in SSIS

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

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

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

    Much needed content Aqil. Thank you for making this.

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

      You are most welcome Piravi Perumal.

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

    Excellent bhaiyya..

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

      Thank you Suresh.

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

    Thanks so much for your help.

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

      You are most welcome.

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

    Its very helpful bro thank you so much

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

      You are welcome Vishnu.

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

    Very useful as always.

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

      You are most welcome.

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

    Thank You bro.
    I am waiting for your Vidos egarly

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

      Thank you Sai Kumar.

  • @faibichandrei3189
    @faibichandrei3189 4 หลายเดือนก่อน

    Hi Aqil! Could you please explain the idea behind your third point in more details. What about data in the target table which is not supposed to be updated? As I understand, Left Join will lead to loss of this data as it is absent in the stage table. It will be replaced by NULLs.

    • @learnssis
      @learnssis  4 หลายเดือนก่อน

      In third point I am not saying to use the left join, you can use inner join and create the new table from 2 or more tables. The idea is if you need to update a lot data the, join 2 tables together and create a new table.

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

    Very very useful video. Hi aquil please can you make video on unit test of packages......

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

      Hi Arimbakam,
      we have one video on the unit test below
      th-cam.com/video/2yxcQ-6Je7Q/w-d-xo.html
      I will try to make second part of this video.

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

      Thanks bro

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

    Hi bro good stuff for us, Please can you make one of the videos regarding (the moving file was one folder to another folder (Archive) with the help of the file system task).

  • @7to7media
    @7to7media 2 ปีที่แล้ว

    tq

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

      You are most welcome.

  • @nareshyadala
    @nareshyadala 2 หลายเดือนก่อน

    I was searchig for performance tunning vedios i found this ,i am not clear abut 2&3 points (2.if we create indexes on joins columns in the update will it impact performance,3.creating a new table in place of update for huge data loads),please ellobrate more or create one more vedio to understand better

    • @learnssis
      @learnssis  2 หลายเดือนก่อน

      2. If have indexes on a table then it makes insert\delete\update run slower.
      3. If you have a large table and you need to update a lot of columns, then instead of updating the data from one table to another, use a select query and join the tables together, now select the required columns from both the tables, like all non update columns from left table and the columns to be updated from right table and create a new table. Creating a new table will be faster as compare to updating so many columns in a table when data is huge and specially if you have indexes on the table.
      select a.column1, a.column2, b.column3, b.column4 into newtable from table1 a inner join table2 b on a.id = b.id

    • @nareshyadala
      @nareshyadala 2 หลายเดือนก่อน

      @@learnssis 2.stmt for update statmt creating indexes is slow down the performance

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

    Why are there pictures of women in your thumbnails?

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

      Actually I have a license from canva to create the thumbnails, and there are tons of pre created templates there where we can add our own customized text and image. For majority of thumbnails I have only put my text and left the image as it is, may be I can think of adding my own picture to the thumbnail.

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

    Hi bro good stuff for us, Please can you make one of the videos regarding (the moving file was one folder to another folder (Archive) with the help of the file system task).

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

      Here you go
      th-cam.com/video/IbieDAatf5M/w-d-xo.html