Comparing and Synchronizing Two Folders with Azure
In this article, we will compare two folders using PowerShell, the command prompt and other tools.
2017-05-30
2,328 reads
In this article, we will compare two folders using PowerShell, the command prompt and other tools.
2017-05-30
2,328 reads
In this new Azure Data Warehouse article, we will show how to insert data and retrieve it using PHP.
2017-05-22
626 reads
In this new article, we will learn how to access to our Azure DWH tables using C#.
2017-05-15
2,322 reads
In this chapter, we will show how to create a Machine Learning experiment from our Azure SQL Warehouse.
2017-05-05 (first published: 2016-06-14)
5,734 reads
In this article, we will show how to create reports in ASDW using SSRS
2017-03-27
1,560 reads
This time we explain how to recover an Azure SQL Data Warehouse (ASDW) from a disaster.
2017-03-20
3,642 reads
This time we will work with the sqlcmd to handle our Azure SQL Data Warehouse
2017-03-09
1,186 reads
In this article, we will use SSIS to import a CSV file to Azure SQL Data Warehouse.
2017-02-13
1,453 reads
We will teach how to create a new SQL Azure Data Warehouse using Powershell
2017-01-30
1,652 reads
In this article, we will learn how to use Visual Studio to query Azure SQL Data Warehouse tables and how to create a new table.
2017-01-25
2,748 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers