How to Load a Fabric Warehouse: Data Engineering with Fabric
In this next level, learn how you can load data from Amazon S3 in Fabric.
2025-01-08
4,644 reads
In this next level, learn how you can load data from Amazon S3 in Fabric.
2025-01-08
4,644 reads
In the next installment of this series, learn how you can read data from the Google Cloud Platform (GCP) and virtualize it into your Azure Data Lake Storage.
2024-12-11
2,643 reads
Learn how to use Fivetran HVR software to ETL data into your One Lake Storage from a PostgreSQL database.
2024-12-06 (first published: 2024-11-27)
1,559 reads
In this article on Fabric we will examine how to get data from a REST API.
2024-11-13
3,313 reads
Learn how you can get data from AWS into Fabric in this article.
2024-10-30
1,131 reads
This next article looks at how a Logic App in Azure can start and stop various database services and save money.
2024-10-16
2,082 reads
Learn how updates and concurrency can work in Fabric with Delta Parquet data.
2024-10-02
1,324 reads
This next article examines the impact of transaction sizes on the performance of our Delta Parquet tables.
2024-09-11
2,146 reads
In this next installment, John performs the research you might do if your management asked you to examine Fabric.
2024-08-21
3,439 reads
In this next article, learn about the different file formats and which work well inside your Microsoft Fabric Lakehouse.
2024-08-07
3,038 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