Getting Started Remotely
Today Steve wonders what advice you might give someone starting out their career in technology.
2021-05-07
103 reads
Today Steve wonders what advice you might give someone starting out their career in technology.
2021-05-07
103 reads
Documentation may not be something we aspire to do, but it is a valuable skill.
2021-04-30
426 reads
When do we ask for help? It's a tough balance to strike between asking too soon or waiting too long.
2021-03-26
123 reads
In 2008, I managed to achieve the goal of becoming a Microsoft Certified Trainer. Once I achieved the status, Microsoft shipped me a binder with dozens of DVDs containing lab VMs and class materials for all the current classes. At some point, instead of receiving DVDs, you were expected to download images which was quite […]
2021-03-13
171 reads
We all need to learn and tackle new technology in our career. When we do so, are we impostors or students?
2021-03-12
149 reads
Many organizations will change their teams around over time, but not all do this regularly. Steve talks about how Redgate does this every year.
2021-02-24
95 reads
2021-02-22
189 reads
2021-02-16
5,209 reads
If you have set any new goals for your career this year, Steve is asking you to let him know.
2021-01-08
113 reads
2020-12-29
251 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
Comments posted to this topic are about the item Fun with JSON I
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