Last Backup Times per Database and Backup Type
This script displays the last date and time of each backup type for each database.
It’s useful when you need to...
2014-02-26
505 reads
This script displays the last date and time of each backup type for each database.
It’s useful when you need to...
2014-02-26
505 reads
Let’s say you are developing an SSIS package on your dev box to load data from an Excel file to...
2014-02-25
1,188 reads
Let's say you are developing an SSIS package on your dev box to load data from an Excel file to...
2014-02-25
3,660 reads
Madeira’s excellent course on SQL Server Integration Services starts in March, but you can get a head start here! Take...
2014-02-09
268 reads
Last week I delivered a seminar at the Expert Days 2013 event by the name of 40 Things You Didn’t...
2013-12-16
589 reads
This is a summary of my last day in the PASS Summit. I have already written about my first, second,...
2013-10-19
437 reads
This is a summary of my last day in the PASS Summit. I have already written about my first, second,...
2013-10-19
415 reads
This is my fourth day in the PASS Summit. I have already written about my first, second and third days.
The...
2013-10-18
479 reads
This is my fourth day in the PASS Summit. I have already written about my first, second and third days.
The...
2013-10-18
512 reads
This is actually the first formal day of the PASS Summit, but it’s my third day here. I have already...
2013-10-17
394 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