How to Use Stored Procedure in Azure Data Factory with Parameters - Azure Data Factory Tutorial 2021

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ต.ค. 2024
  • How to Use Stored Procedure in Azure Data Factory with Parameters - Azure Data Factory Tutorial 2021, in this video we are going to learn How to Use Stored Procedure in Azure Data Factory with Parameters - Azure Data Factory Tutorial 2021, Azure Data Factory Step by Step - ADF Tutorial 2021 - ADF Tutorial 2021 Step by Step ADF Tutorial - Azure Data Factory Tutorial 2021
    Script used in the video :
    create procedure dbo.sp_Delete_Orders
    @Region varchar(100),
    @Country varchar(100)
    as
    BEGIN
    Delete from dbo.[Order] where
    Region=@Region
    and Country=@Country
    END
    Azure Data Factory Tutorial for beginners
    Azure Data Factory Tutorial 2021
    Step by step Azure Data Factory Tutorial
    Real-time Azure Data Factory Tutorial
    Scenario base training on Azure Data Factory
    Best ADF Tutorial on youtube
    #AzureDataFactory #ADFTutorial2021
  • วิทยาศาสตร์และเทคโนโลยี

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

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

    You're a lifesaver ... Thanks a lot :)

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

      for sure man.

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

    Thanks, helped a lot. With the new version of Azure data factory (Jul 2024) this method needs a little tweak. Adding dynamic content from dropdown or GUI does not work anymore. Instead one as to enter a string example .pipeline().parameters.

  • @sravankumar1767
    @sravankumar1767 3 ปีที่แล้ว +2

    Nice explanation bro

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

    Thank you!

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

    The same task can be performed using Lookup too right?

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

    Thank you sir - it helped a lot 🙂

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

    can we directly delete by using sql query and use script activity in ADF .
    delete from emp where country ='india' and region= 'asia' --- use this query in script activity