Virtualizing AWS data by using Fabric Shortcuts: Data Engineering with Fabric
Learn how you can get data from AWS into Fabric in this article.
2024-10-30
1,058 reads
Learn how you can get data from AWS into Fabric in this article.
2024-10-30
1,058 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,041 reads
Learn how updates and concurrency can work in Fabric with Delta Parquet data.
2024-10-02
1,287 reads
This next article examines the impact of transaction sizes on the performance of our Delta Parquet tables.
2024-09-11
2,089 reads
In this next installment, John performs the research you might do if your management asked you to examine Fabric.
2024-08-21
3,332 reads
In this next article, learn about the different file formats and which work well inside your Microsoft Fabric Lakehouse.
2024-08-07
2,936 reads
Learn how to manage files and folders in Microsoft Fabric with PowerShell.
2024-07-10
1,716 reads
In this new article, we examine how to work with OneLake storage.
2024-06-26
1,557 reads
Learn how to use the OneLake Explorer and Data Wrangler extension in VS Code to empower users to work with data in Microsoft Fabric.
2024-05-22
1,777 reads
This next article in the series creates objects at the gold layer for consumption by combining tables from the silver layer of the lake house.
2024-05-15
3,264 reads
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
By Rayis Imayev
"But I don’t want to go among mad people," Alice remarked."Oh, you can’t help...
By Steve Jones
I saw some good reviews of the small gemma3 model in a few places...
Comments posted to this topic are about the item Create an HTML Report on...
The global Cruelty-Free Cosmetics market is a dynamic and promising industry that has shown...
Comments posted to this topic are about the item We Should Demand Better
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch? See possible answers