SQL Server non-clustered indexes for query optimization
Optimize SQL Server non-clustered indexes and queries by considering index fields, compound indexes and SQL Server statistics' impact on non-clustered indexes.
Optimize SQL Server non-clustered indexes and queries by considering index fields, compound indexes and SQL Server statistics' impact on non-clustered indexes.
Expressions can be used to dynamically build an output file. Here we will show you another way to do this using the script task.
SQL Server 2008 sets a TPC record. And it hasn't even been released. This editorial was originally published on Mar 4, 2008. It is being rerun as Steve is on vacation.
This article will show how you can produce a return regardless of variables passed and debugging tool for @SQL String.
MVP Simon Sabin continues his in depth look at Full Text Search in SQL Server 2008. This time he examines how you can load Thesaurus files.
In this article Dinesh Asanka demonstrates how you can use your own data sources in SQL Server Integration Services.
Marcin Policht provides a step-through sample implementation of transactional and merge replication.
A new technology could be a boon for database servers, dramatically increasing the amount of memory available for SQL Server.
A new technology could be a boon for database servers, dramatically increasing the amount of memory available for SQL Server.
A new technology could be a boon for database servers, dramatically increasing the amount of memory available for SQL Server.
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
Comments posted to this topic are about the item Answering Questions On Dropped Columns
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers