Architecture Career Paths for SQL Server Professionals
On Thursday September 15th, MCM Robert Davis will discuss the architect jobs and their meanings.
2011-09-15
2,899 reads
On Thursday September 15th, MCM Robert Davis will discuss the architect jobs and their meanings.
2011-09-15
2,899 reads
Come join Steve Jones and many other SQL Server pros in Liverpool for SQLBits on Sept 29-Oct 1.
2011-09-14
1,372 reads
A blog from Dan Jones of Microsoft asks you to test the next release of SQL Server, in CTP3 now, and send your feedback to Microsoft to ensure that the product is well tested.
2011-08-24
2,006 reads
Come get a free day of SQL Server training in Toronto on Sept 17, 2011 at SQL Saturday #93. The event takes place at Humber College in Toronto.
2011-08-22
1,346 reads
On Thursday August 18th, John Racer will discuss some common architects and practices for Data Warehouses.
2011-08-18
756 reads
On Tuesday August 23rd, Brad McGehee will take you through real-world examples to show what Red Gate SQL Monitor can do for you.
2011-08-17 (first published: 2011-07-20)
1,731 reads
Join Neil Davidson, Joint CEO of Red Gate Software, for a meetup in San Francisco on Aug 25th. Come talk software, databases, and development with other like-minded people.
2011-08-16
1,329 reads
Read more about how you can get a free two user license from SourceGear and Red Gate Software.
2011-08-05 (first published: 2011-07-05)
3,319 reads
Come join Steve Jones for a day of SQL Server training in Baton Rouge on Aug 6, 2011. Free training!
2011-08-01 (first published: 2011-07-08)
2,396 reads
Come get a free day of SQL Server training in Birmingham on Jul 30, 2011.
2011-07-25 (first published: 2011-06-29)
2,226 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