SQL Server Preproduction Tasks
What are some of the things that you need to do before you sign off and hand it over to production? What do you need to do to keep the server running smoothly?
What are some of the things that you need to do before you sign off and hand it over to production? What do you need to do to keep the server running smoothly?
Steve Jones talks a bit about the conference with links, pictures, and more from the event.
This article shows how to use the SQL Server 2008 Upgrade Advisor Tool to improve the SQL Server 2008 upgrade experience
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
This article talks about the sharing of knowledge in forums such as SQLServerCentral.
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
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...
Jl. Mangga Dua Raya Jalan Kavling No.1 Blok C-5, RT.11/RW.5, Ancol, Kec. Pademangan, Jkt...
Telp/wa 085169998765 Komplek Ruko, Jl. Karang Jati Blok C 3 & 5, Karangjati, Kec....
Jl. Muara Karang Timur, Blok B VIII No.116-117, Daerah Khusus Ibukota Jakarta 14450
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