SQL Server Connectivity Survey from Microsoft
A survey is available from the connectivity team at Microsoft that deals with ADO, ODBC, JDBC and more. Take the survey and help determine what is important for SQL Server.
2010-10-29
1,173 reads
A survey is available from the connectivity team at Microsoft that deals with ADO, ODBC, JDBC and more. Take the survey and help determine what is important for SQL Server.
2010-10-29
1,173 reads
SQL Server guru Paul Randal is conducting a short survey on wait states. Add your vote to the tally.
2010-10-29
2,016 reads
Organized by Microsoft Brazilian Technical Community and relying on renowned international speakers, Worldwide Online TechDay/2010 promises to be the biggest technological online event ever seen. Oct 30, 2010
2010-10-29 (first published: 2010-10-05)
3,467 reads
It is not only the data within the database that requires protection but any report generated using SQL Server needs to be protected before being mailed
2010-10-28
12,268 reads
The SQLRally, a new PASS initiative taking place in the spring, is going to be a community driven event. This...
2010-10-28
1,512 reads
This article details a creating a more flexible and user friendly email alerts system.
2010-10-28
3,981 reads
I’m one of the 3 lucky guys whose submitted precon workshop for the developer category
for PASS SQLRally is in the...
2010-10-28
542 reads
Do you know a real-life Pointy Haired Boss? Maybe you don’t work for him, but I bet you’ve met one.
In...
2010-10-28
873 reads
For those of you who have seen our team present, we always do our best to make it really informative,...
2010-10-28
1,025 reads
Part four of this series on rapid application development looks at the CRUD routines that are needed for almost every application.
2010-10-27
7,068 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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