Azure Data Factory

SQLServerCentral Article

Working with Fail Activity in Azure Data Factory

  • Article

Introduction In this article, we will talk about a newly introduced activity in Azure Data Factory, which is the fail activity. The fail activity is very useful to stop or fail the pipeline at the specified point. For example, a lookup activity might return no data or a switch activity executes the default block. We […]

You rated this post out of 5. Change rating

2022-01-24

6,414 reads

SQLServerCentral Article

How to Recover a Corrupted Azure Data Factory Integration Runtime

  • Article

I would like to share my recent experience with Azure Data Factory (ADF) where AutoResolveIntegrationRuntime become corrupted and how did I recover it. I still don't know how the Integration Runtime (IR) was corrupted. However, if it happens, then this article will help you to solve the issue. Problem In general, the ADF AutoResolveIntegrationRuntime should […]

5 (2)

You rated this post out of 5. Change rating

2024-09-02 (first published: )

3,848 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