2004 Readers Choice Awards Results
SQLServerCentral.com wrapped up two weeks of voting by the community on the best third party products to help you with your SQL Servers. Read on to see who won.
2004-11-24
6,688 reads
SQLServerCentral.com wrapped up two weeks of voting by the community on the best third party products to help you with your SQL Servers. Read on to see who won.
2004-11-24
6,688 reads
Mattias Fagerlund, a longtime author and contributor here is developing a new product to help developers migrate between versions of their databases. He's searching for a few Beta developers to assist.
2004-11-23
2,775 reads
How prepared are you for your next interview? How prepared are you to give one? SQLServerCentral.com has compiled a number of questions from our ever popular Question of the Day into a book. Read about the project and show your support today by picking up a copy.
2004-11-22
6,531 reads
Red Gate Software, a leading supplier or SQL Server and .NET tools has updated the classic "A Christmas Carol" to show the importance of stress testing.
2004-11-16
4,489 reads
Teratrax, maker of SQL Server products, is offering the SQLServerCentral.com community a 15% discount on their products.
2004-11-04
2,474 reads
Theyre back and expanded, the 2004 Readers Choice awards. Take a minute and vote now for the products and vendors you have enjoyed working with.
2004-11-02
3,314 reads
We've added a new store section. Read on and visit to see if there's anything worth your while.
2004-08-30
3,461 reads
Murphy's law has struck us all, as evidenced by the disaster entries we've received in the past. Imceda software, makers of Litespeed are sponsoring a new contest, looking for your nightmares.
2004-07-30
4,146 reads
Entegra for SQL Server has been available for some time, but Lumigent has recently announced support for Oracle. So if you're in a heterogenous environment...
2004-06-15
6,114 reads
SQLCentric is a fully functional Web-based MSSQL Centric Network Database Monitoring System which is deployed on your corporate intranet. Now for a limited time, Pearl Knowledge Solutions is running a sale on this product.
2004-06-14
7,043 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...
hi everyone I am not sure how to write the query that will produce...
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...
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