BYOC
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
Employers say they're looking for more ethics and morals in IT for 2009. Steve Jones hopes it's true.
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
This article examines the Recovery Model options used by SQL Server 2008 and the various methods that can be used to backup a database such as Differential and Transaction Logging. In addition, Transaction Logs, the mechanism that makes Recovery Models possible will be introduced.
Previous versions of SQL Server were not that great at keeping track of object dependencies. The reason for this was due to the fact that all object dependencies were tracked by the ID of the object, which meant that the object had to exist first.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
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