DQS Validation Rules on Composite Domains
In Data Quality Services, composite domains can be created to associate together two or more natural domains within a knowledge...
2012-05-07
675 reads
In Data Quality Services, composite domains can be created to associate together two or more natural domains within a knowledge...
2012-05-07
675 reads
A compelling feature of the new Data Quality Services in SQL Server 2012 is the ability to apply rules to...
2012-05-04
751 reads
Last month I made the trip with some other Dallas-area speakers down to Houston’s second annual SQL Saturday event. This...
2012-05-04
586 reads
I remember a lot of things about that day. It was July in Texas, which is to say, it was...
2012-05-03 (first published: 2012-05-02)
2,556 reads
It’s hard to believe that after all the hard work, planning, and prep, that SQL Rally Dallas is just a...
2012-05-03
912 reads
As those of you in our local North Texas SQL Server User Group are aware, we have given away one...
2012-05-03
814 reads
In a bold and decisive move earlier today, the University of Florida has decided to dissolve their computer science education...
2012-04-26 (first published: 2012-04-24)
3,814 reads
Everybody loves the carnival. It only comes around every few years, but when it does, it brings in a variety...
2012-03-23
878 reads
It’s SQL Saturday season again! I found out this morning that I’ll be speaking at next month’s SQL Saturday event...
2012-03-21
602 reads
I’ve learned that my session entitled “Introduction to Data Quality Services” has been selected as one of the community choice...
2012-02-27
673 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