Moving to Query Store
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
Steve is looking for people to use the Query Data Store and share their stories, good or bad.
In this tip we look at how you can monitor Azure health to know if there are any issues that may interupt your services running on Azure.
Testing our database code is a fairly immature process for many of this, but perhaps we could build a guide that helps everyone learn to write better and more comprehensive tests.
Acknowledging fundamental design flaws lead to a more flexible, maintainable phonetic framework
In theory, you get better execution plans when SQL Server understands the contents of your tables. In practice, well, it's hit or miss.
An article about tally tables, N-Grams and the fastest character-level N-Grams function available today for SQL Server.
In this article, Andy Brown shares his knowledge of how to create calculated columns in tables, using Power BI as the host software (all of the formulae shown would work equally well in PowerPivot or SSAS Tabular). This article is designed to be the first in a series of articles which will show you how to master programming in DAX.
Just before the US holiday, Steve wants you to think about the security of our systems.
n this tip we will explain how you can deploy, execute and schedule SSIS packages in the Azure cloud.
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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