Counting Events
After reading through the articles about the pair_matching target (here) and the article on the histogram target (here), this one is...
2015-10-23
595 reads
After reading through the articles about the pair_matching target (here) and the article on the histogram target (here), this one is...
2015-10-23
595 reads
This article will show how to implement an XEvent Session that employs the use of the event_counter target that is used for counting events. IN addition, you will be...
2015-10-23
7 reads
The last few articles covered the pair_matching target and some uses and details that go along with it. For a...
2015-11-03 (first published: 2015-10-22)
1,881 reads
In this article I show how to use and configure the histogram target. In addition, I explain how to get to the data trapped into this target. Lastly, I...
2015-10-22
4 reads
I just covered the topic of matching events from definition on down through highlighting a common use for this type...
2015-10-21
760 reads
In this article I will be taking you into the world of the pair_matching target. The pair_matching target should connote that this target works on matching like events into...
2015-10-21
6 reads
In the last article I showed how to discover all of the settings that are available to a particular Target....
2015-10-20
929 reads
In this article I will be taking you into the world of the pair_matching target. The pair_matching target should connote that this target works on matching like events into...
2015-10-20
7 reads
The last few articles have covered various topics for the event_file and ring_buffer target. The topics range from basic queries in...
2015-10-19
622 reads
When adding a Target to a session, a configurable setting may or may not be obviously available for use with the Target. In and of itself, this can be...
2015-10-19
7 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