SQL Server 2005 SP3 - Released! - quick Info
Till know everyone has the information for the SQL Server 2005 SP3 for all versions!
Download info here
What's new in SP3!...
2008-12-30
1,428 reads
Till know everyone has the information for the SQL Server 2005 SP3 for all versions!
Download info here
What's new in SP3!...
2008-12-30
1,428 reads
Pershendetje te gjitheve!
Përderisa kemi qenë duke punuar me SQL Server 2005 SP2, pas shumë raportimeve nga ana e shfrytëzuesve...
2008-12-30
1,537 reads
Pershendetje juve qe punoni vazhdimisht me SQL Server 2008!
Une sapo e instalove SQL Server 2008 RTM versionin e fundit edhe...
2008-10-05
527 reads
Hi there, I just installed the SQL Server 2008 RTM and I try to open with shortcut CTRL+R writing sqlwb...
2008-10-05
474 reads
Pershendetje te gjithve...edhe perkunder voneses se postimeve te njepasnjeshme ne blog si duket deri me tani jeni njoftuar te gjithe...
2008-09-25
1,823 reads
2008-07-23
479 reads
USE ADVENTUREWORKS;-- You can use any kind of database that you have
GO
--Procedure that shows all views created on a table,...
2008-07-15
634 reads
It seems that the SQL Server 2008 will come in August 2008, and it's announced officialy from Microsoft Worldwide Partner...
2008-07-11
438 reads
Pershendetje prap dhe nje rikthim i shpejt ne pjesen ku e kam publikuar se deri me tani kemi versioni RC0...
2008-07-11
559 reads
Ketu do te postohen te gjitha shkurtesat qe permenden ne SQL Server dhe akronimet e tyre me konkretisht dmth-nja e...
2008-07-10
639 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