The Cost of Employee Turnover
Culture is important retaining employers. Companies are finding this more valuable every day.
2023-01-20 (first published: 2023-01-07)
220 reads
Culture is important retaining employers. Companies are finding this more valuable every day.
2023-01-20 (first published: 2023-01-07)
220 reads
Learning to efficiently manage time in a team is hard. Steve has a few ideas today, based on a book.
2022-12-12
170 reads
For years, those of us in technology have often worked outside of the core working hours for the rest of our organization. Whether this is being on-call, staying late, or coming in when asked. It's not uncommon for many developers and Ops staff to work 60, 70, or more hours to get things built/deployed/supported for […]
2022-11-04
176 reads
Working remotely can be more than working at home, which Steve thinks helps the work-life balance.
2022-10-21
149 reads
Most of work in teams, which means we are accountable to reach other, but we should also treat each other as we'd want to be treated.
2022-07-29
162 reads
The culture in which we work is important. Having a culture that accepts and allows mistakes can help your organization. Not having this can make the environment much worse.
2022-07-20
252 reads
What is the best way to use an office? Or is there even a best way? Steve asks the question today.
2022-07-15
146 reads
2022-07-09
173 reads
We used to work in offices, now we work at home. Do we need a third space? Steve does.
2022-04-18
181 reads
Video chat is how many of us see our colleagues every week. It's not a great system, but maybe it can get better.
2022-01-31
94 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