Surface Demo
Second try. The video didn’t embed in the previous post. Nor this one. Here's the link
Microsoft Surface Demo
This is from...
2008-11-26
1,434 reads
Second try. The video didn’t embed in the previous post. Nor this one. Here's the link
Microsoft Surface Demo
This is from...
2008-11-26
1,434 reads
This is interesting. I’m not sold on Surface, though I did play with one last week in Seattle.
2008-11-26
1,391 reads
Steve Jones talks a bit about the conference with links, pictures, and more from the event.
2008-11-26
789 reads
2008-11-26
641 reads
2008-11-26
617 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
525 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
778 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
531 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-25
127 reads
My goal of 400 posts a month has been in jeopardy with all the traveling I've been doing over the...
2008-11-25
1,480 reads
By SQLPals
Track SQL Server Configuration Changes Using the Error Log If you...
Good documentation gets you started. Good books get you deep. After years of working...
By Vinay Thakur
In previous posts, we looked at the SQL Server engine. for us DBAs, the...
WhatsApp:0817866887 Jl. Bukit Barisan No.3, Kesawan, Kec. Medan Bar., Kota Medan, Sumatera Utara 20111
WhatsApp:0817866887 Jl. Sudirman No.59, Bukit Cangang Kayu Ramang, Kec. Guguk Panjang, Kota Bukittinggi, Sumatera...
We have a SQL Server installed. We have a 500GB drive for the database....
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 YearEstablished, json_objectagg(city : TeamName) FROM dbo.NFLTeams GROUP BY YearEstablished;See possible answers