Virtual Box is TOO Small
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various...
2014-08-05
1,360 reads
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various...
2014-08-05
1,360 reads
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various presentations and labs, that means also upgrading and/or converting...
2014-08-05
3 reads
Coming up this week, I have been given the opportunity to do something I enjoy doing. I have been invited...
2014-08-04
724 reads
Coming up this week, I have been given the opportunity to do something I enjoy doing. I have been invited to present to the folks in Philadelphia. Sebastian...
2014-08-04
4 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been...
2014-08-15 (first published: 2014-08-04)
7,922 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been plenty full of whistle stops and I plan on...
2014-08-04
4 reads
I am taking a slight deviation from the usual type of posts that I share. This time, I just want...
2014-07-30
1,396 reads
I am taking a slight deviation from the usual type of posts that I share. This time, I just want to share a quick and easy fix that I...
2014-07-30
3 reads
So the title says it all, right? Well, only really partially.
Recently an article was published listing the top 10 most...
2014-07-29
1,155 reads
So the title says it all, right? Well, only really partially. Recently an article was published listing the top 10 most recommended books for SQL Server. That’s the part...
2014-07-29
5 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