The default autogrowth settings do NOT come from the Model database.
I recently saw a question about How to inherit autogrowth settings. They commented that while the new database GUI seemed...
2014-04-28
1,148 reads
I recently saw a question about How to inherit autogrowth settings. They commented that while the new database GUI seemed...
2014-04-28
1,148 reads
I started reading about collations after I had a recent run in with them. As I read I started to...
2014-04-23
540 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-21
468 reads
Recently Paul Randal had a brief rant on twitter where he complained about the fact that there are no stupid...
2014-04-16
409 reads
Recently Paul Randal had a brief rant on twitter where he complained about the fact that there are no stupid...
2014-04-16
601 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-14
666 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-14
461 reads
Why so serious? If you ask anyone who knows me they will tell you I’m not a terribly serious person....
2014-04-11 (first published: 2014-04-08)
1,619 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-10
1,001 reads
I had a recent run in with collation problems and it got me started reading about them. As I read...
2014-04-10
710 reads
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