Create A Job Feed For Your LinkedIn Group
LinkedIn groups have the option to enable a Jobs section and associated discussion area. Potential employers can post jobs directly...
2013-08-12
817 reads
LinkedIn groups have the option to enable a Jobs section and associated discussion area. Potential employers can post jobs directly...
2013-08-12
817 reads
Just saw this in the PASS Connector:
The SQLSaturday numbers are in for our fiscal year, which ended June 30, with...
2013-08-07
653 reads
Recently I installed the Android version of the Overdrive Media Console on my Nexus 7. It’s a free app. Install...
2013-08-06
788 reads
Time has flown by and we’re just five weeks from SQLSaturday #232 on September 14th, 2013. It’s a time of...
2013-08-06
560 reads
I recently needed to figure out how to embed Flash streaming video in a blog post. LiveWriter does Youtube ok...
2013-08-05
572 reads
I’ll be doing my PCI for the SQL DBA presentation on August 8th at 1 pm Eastern for the PASS...
2013-08-05
801 reads
Back in April Steve Jones mentioned reading a review of The Phoenix Project by mutual friend Thomas LaRock. It’s a...
2013-08-02
703 reads
I like to look at things that have been in use for a while to see how they hold up....
2013-08-01
732 reads
Last night (8pm Eastern) I had my first run as a 24HOP moderator and wanted to share some thoughts on...
2013-08-01
610 reads
Over the years when a performance problem comes up there is always some speculation that it’s a network issue and...
2013-07-31
1,168 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