Azure Data Factory

SQLServerCentral Article

How to simulate Case statement in Azure Data Factory (ADF) compared with SSIS?

  • Article

This post will describe how you use a CASE statement in Azure Data Factory (ADF). If you are coming from SSIS background, you know a piece of SQL statement will do the task. However let's see how do it in SSIS and the very same thing can be achieved in ADF. Problem statement For my […]

4.5 (2)

You rated this post out of 5. Change rating

2020-11-12

22,034 reads

SQLServerCentral Article

Azure Data Factory : Your First Data Pipeline

  • Article

Introduction Azure Data Factory is the cloud-based ETL and data integration service that allows you to create data-driven workflows for orchestrating data movement and transforming data at scale. We can create and schedule data pipelines which can move data between various supported data stores. We can also use for data transformation before loading it into […]

5 (3)

You rated this post out of 5. Change rating

2020-08-11

11,027 reads

Blogs

Knoxville M365 Community Days Recap

By

Hello data friends! Had a blast at my first ever M365 Community Day this...

What is Deferred Name Resolution?

By

One interesting concept in SQL Server is Deferred Name Resolution. This is something many...

SQL Server Time Bombs

By

Common Reasons for Emergency SQL calls If you are a production DBA (or Accidental...

Read the latest Blogs

Forums

List the Databases To Which You Have Access

By rathiaakash91@gmail.com

Comments posted to this topic are about the item List the Databases To Which...

Deadlocks after index rebuild

By btork

We rebuilt a bunch of indexes that had avg_fragmentation_in_percent>30. Now we have 1 job...

SSIS (Integration Services) - "External table is not in the expected format"

By Reh23

Good Afternoon. I have been manually running an SSIS package on an adhoc basis,...

Visit the forum

Question of the Day

Dateadd with a numeric value

What is returned from the following query ?

declare @currentDateTime DATETIME = '2025-01-01 00:00:00.000'

select  dateadd(hour, 3.0/2, @currentDateTime);

See possible answers