PowerShell 101 for the DBA – Installing PowerShell
Many DBAs have heard about the new scripting technology from Microsoft, but have yet to really dive right in. You...
2009-09-15
2,514 reads
Many DBAs have heard about the new scripting technology from Microsoft, but have yet to really dive right in. You...
2009-09-15
2,514 reads
In case you are considering to apply SQL Server SP3 CU5 (http://support.microsoft.com/kb/972511) to your system, I'd like to point out one issue / bug we found with CU5.
2009-09-15
3,000 reads
I have not worked with SQL Server 7.0 in a loooong time. So when I received a call from a...
2009-09-14
2,313 reads
This is part three of a series on writing a technical article. The advice might apply to non-technical articles, but...
2009-09-11
1,604 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-09-10
845 reads
There are many different ways to manipulate dates when working with them in SSIS. Many great examples have been posted...
2009-09-10
1,154 reads
I’ve I was having lunch with another SQL Geek and we were talking about netbooks and how practical they are....
2009-09-04
3,808 reads
The new HierarchyID datatype in SQL Server 2008 has captured my interest lately. I’ve been working on a presentation that...
2009-09-03
1,698 reads
Compression is one of the major features introduced in SQL Server 2008, and one that can significantly reduce disk storage. ...
2009-09-02
2,756 reads
I attended a presentation recently from Steven Wright of SQL Sentry on Analysis Services (SSAS) memory management and it was...
2009-09-01
2,412 reads
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
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