tSQLt – SQLCop – Checking Naming Conventions
I’ve been using tSQLt a bit to do some testing and one of the things I’ve tested is standards for...
2015-02-27 (first published: 2015-02-12)
8,014 reads
I’ve been using tSQLt a bit to do some testing and one of the things I’ve tested is standards for...
2015-02-27 (first published: 2015-02-12)
8,014 reads
Today Steve Jones talks about development, and finding ways to make small changes that improve your code.
2015-02-26
207 reads
I’m continuing on with my project to grab SQL Saturday data and automatically insert it into a SQL Server database....
2015-02-25
1,438 reads
Today Steve Jones talks leadership, and the value it can bring to your team if you display just a little of it.
2015-02-25
143 reads
PASS President Tom Larock doesn't make long term plans. Steve Jones doesn't make long term plans. Do you?
2015-02-24
128 reads
I was tasked recently with removing the full text indexes in Adventureworks for a demo. The full text indexes were...
2015-02-23
987 reads
This week Steve Jones talks about the query store after an article was released describing it.
2015-02-23
215 reads
2015-02-20
1,755 reads
2015-02-19
9,805 reads
I was working on a script recently to manage a particular process and wanted to make it generic by allowing...
2015-02-19
1,186 reads
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
This week my BI Developer colleague proudly showed me a new Power BI report...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers