SQL Server Management Studio is as Relevant as Ever
In this Simple Talk editorial Kendra Little discusses how SSMS is as relevant as ever.
2019-10-10
In this Simple Talk editorial Kendra Little discusses how SSMS is as relevant as ever.
2019-10-10
Need to know how to use the “Filter” item in the SSMS Object Explorer Details window to show a specific list of tables that contain a specific string of characters? If so, then read on!
2019-07-02
You are probably familiar with the Object Explorer pane in SQL Server Management Studio (SSMS), and how to bring it up. But, are you familiar with the Object Explorer Details pane and how to display it? If not, then read on...
2019-06-25
2019-06-18
924 reads
A default value has changed in the SSMS v7 restore wizard, and the consequences can be severe.
2018-11-06
1,899 reads
2018-04-06
914 reads
Learn how you can script specific objects from SSMS and store or update them in a git repository.
2019-11-15 (first published: 2018-04-05)
6,338 reads
2018-03-29
2,299 reads
A complete guide to the hidden gems of SQL Server Management Studio (SSMS), covering shortcuts, tips and tricks, useful scripts, and more.
2019-09-18 (first published: 2017-08-14)
16,755 reads
Serget Gigoyan is back with another set of 5 common SSMS tips.
2017-08-07
4,928 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