T-SQL Tuesday #63 – Security
It’s T-SQL Tuesday time again and this month we look at security. Kenneth Fisher has chosen this as his topic...
2015-02-19 (first published: 2015-02-10)
7,000 reads
It’s T-SQL Tuesday time again and this month we look at security. Kenneth Fisher has chosen this as his topic...
2015-02-19 (first published: 2015-02-10)
7,000 reads
In many occupations, workers invest in their own tools. However we rarely do that in technology.
2015-02-19
262 reads
2015-02-18
1,425 reads
Watch this short video on creating a striped backup for your database.
2015-02-18
764 reads
After my last post on parsing the XML, I decided to continue forward and get ready to put the data...
2015-02-18
891 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
311 reads
Would I want unlimited time off? It’s an interesting question. I think I might like something more like a minimum...
2015-02-17
879 reads
Experience matters in setting your salary, but Steve Jones reminds us there are different types of experience, and there's more to life than money.
2015-02-16 (first published: 2010-08-31)
1,095 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
228 reads
I ran across an article recently from MSSQLTips by my friend, Brian Kelley. It talks about the ways you can...
2015-02-11
1,354 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...
The optimal therapy for erectile dysfunction depends on individual health conditions, preferences, and treatment...
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...
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