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,210 reads
Learn how you can get data from AWS into Fabric in this article.
2024-10-30
1,210 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,100 reads
Learn how updates and concurrency can work in Fabric with Delta Parquet data.
2024-10-02
1,338 reads
This next article examines the impact of transaction sizes on the performance of our Delta Parquet tables.
2024-09-11
2,218 reads
In this next installment, John performs the research you might do if your management asked you to examine Fabric.
2024-08-21
3,617 reads
In this next article, learn about the different file formats and which work well inside your Microsoft Fabric Lakehouse.
2024-08-07
3,120 reads
Learn how to manage files and folders in Microsoft Fabric with PowerShell.
2024-07-10
1,897 reads
In this new article, we examine how to work with OneLake storage.
2024-06-26
1,724 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,830 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,503 reads
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers