2020-04-09
731 reads
2020-04-09
731 reads
This article explains the difference between schedule Trigger and Tumbling window Trigger in Azure Data Factor V2 (ADF V2) and how they behave on success and failure.
2020-02-21
4,580 reads
In part 2 of this article, learn how you can move incremental changes in a SQL Server table using Azure Data Factory.
2020-01-21
2,623 reads
Read on to step through the process of implementing Azure Data Factories.
2019-12-09
In this tip we look at how to use an If Condition activity in an Azure Data Factory pipeline for conditional logic.
2019-10-02
In this next level of the Stairway to Azure Data Factory, learn how to build your first ADF environment.
2020-01-15 (first published: 2019-09-04)
4,284 reads
In this post we will discuss Azure Data Factory transformation related pipeline activities using Stored Procedure activity.
2019-07-26
Learn about the Azure Data Factory service for moving data in ETL flows.
2018-10-23
6,344 reads
Azure Data Factory is a cloud based data integration service. This helps you to define, schedule and manage data pipelines to transfer and transform the data from disparate on premise and cloud data sources. Read on to learn more.
2017-10-04
2,470 reads
2016-04-20
1,150 reads
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
Comments posted to this topic are about the item JSON Has a Cost, which...
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers