Six practical tips for social media success in 2015
Social media is the new résumé. In many ways, it’s even better than a résumé – a person’s social media stream...
2015-01-09 (first published: 2015-01-02)
6,044 reads
Social media is the new résumé. In many ways, it’s even better than a résumé – a person’s social media stream...
2015-01-09 (first published: 2015-01-02)
6,044 reads
I’m spending part of this holiday break repaying some technical debt on my website. Among other things, I am importing...
2014-12-21
645 reads
Perspective can make or break a career. Maintaining a proper perspective is very often the differentiating factor between a good...
2014-12-10 (first published: 2014-12-03)
5,655 reads
This is the third in a series of posts about SSIS parent-child architecture. You can find the index page here.
In...
2014-12-05 (first published: 2014-12-01)
7,336 reads
It’s an odd query, yes, but in preparation to write this post I actually typed the above phrase into my...
2014-11-26
1,253 reads
I’m excited to announce that my Linchpin People colleague Reeves Smith and I will be delivering a full day Biml...
2014-11-11
610 reads
Today is the last official day of the PASS Summit. The sessions will wrap up at the end of the...
2014-11-08
847 reads
The last two days have been an absolute blur. As I first posted this week, I had planned to blog...
2014-11-07
812 reads
It’s another beautiful day in Seattle. And by beautiful, I mean overcast and threatening rain. Today will be mostly consumed...
2014-11-04
769 reads
Today is the first day of official activities for the week. The PASS Summit hasn’t yet started, but I’ll be...
2014-11-03
760 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