Cumulative Update – 7 for SQL Server 2014 RTM Is Now Available !
The 7th cumulative update release for SQL Server 2014 RTM is now available for download at the Microsoft Support site....
2015-04-27
1,783 reads
The 7th cumulative update release for SQL Server 2014 RTM is now available for download at the Microsoft Support site....
2015-04-27
1,783 reads
The 7th cumulative update release for SQL Server 2014 RTM is now available for download at the Microsoft Support site. Cumulative Update 7 contains all the hotfixes released since...
2015-04-27
10 reads
In Windows 2003 failover clustering, Cluster nodes continuously putting details in log file on each node. This log is in readable plain text format & located in %SystemRoot%Cluster folder...
2015-04-24
14 reads
In Windows 2003 failover clustering, Cluster nodes continuously putting details in log file on each node. This log is in...
2015-04-24
4,770 reads
Steps to restore SQL Server Master Database :-
1) Stop SQL Server Services
2) Add [-m] startup parameter in SQL Services from...
2015-04-23 (first published: 2015-04-13)
6,510 reads
Steps to restore SQL Server Master Database :- 1) Stop SQL Server Services 2) Add [-m] startup parameter in SQL Services from configuration manager Parameter [-m] Starts SQL Server...
2015-04-13
4 reads
The Resource database is a read-only database that contains all the system objects. This DB included with SQL Server 2005 to increase security of system metadata. SQL Server system...
2015-04-08
7 reads
The Resource database is a read-only database that contains all the system objects. This DB included with SQL Server 2005...
2015-04-08
1,776 reads
I suggest to have regular full backup of your system database along with user database. But if you do not...
2015-02-02
10,561 reads
I suggest to have regular full backup of your system database along with user database. But if you do not have system database & your MSDB got corrupted then...
2015-02-02
3 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
Looking for a creative and experienced mobile game development company that brings your game...
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