Audit All Select Statements
Legislation and regulation sometimes dictates that certain activities must be tracked within a database. On occasion, it will be required...
2016-08-15 (first published: 2016-08-08)
2,566 reads
Legislation and regulation sometimes dictates that certain activities must be tracked within a database. On occasion, it will be required...
2016-08-15 (first published: 2016-08-08)
2,566 reads
Legislation and regulation sometimes dictates that certain activities must be tracked within a database. On occasion, it will be required that queries be audited and tracked to reach compliance...
2016-08-08
61 reads
We live in a day and age when security (data, network, server, etc) is seemingly at the forefront of the...
2016-08-05
1,047 reads
We live in a day and age when security (data, network, server, etc) is seemingly at the forefront of the daily news.
Related Posts:
Cannot Open Backup Device January 1, 2020...
2016-08-05
7 reads
Sharpen Something
Last week I sent out the invite for the August TSQL Tuesday blog party. In that invite I promised...
2016-08-04 (first published: 2016-08-02)
1,393 reads
This month I am asking you to not only write a post but to do a little homework - first. In other words, plan to do something, carry out...
2016-08-02
8 reads
It has been nearly a year since I started an extensive series about Extended Events. Previous to that start, I...
2016-08-04 (first published: 2016-08-01)
2,447 reads
Parsing XML is the epitome of salt in a wound for a DBA. Parsing the XML from Extended Events need not be so painful. Read further to discover how...
2016-08-01
29 reads
Sharpen Something
It has now been 30 months since the last time I hosted a TSQL Tuesday, that was TSQL Tuesday...
2016-07-27
919 reads
This month I am asking you to not only write a post but to do a little homework - first. In other words, plan to do something, carry out...
2016-07-27
5 reads
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,...
Quite the title, so let me set the stage first. You have an Azure...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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