The Computing Revolution
Steve reflects on some of the ideas of how Microsoft imagines the future of computing.
2020-07-27
144 reads
Steve reflects on some of the ideas of how Microsoft imagines the future of computing.
2020-07-27
144 reads
2020-07-25
381 reads
2020-07-24
95 reads
2020-07-23
89 reads
A Twitter hack brings into the question of who can make changes in production for Steve.
2020-07-22
470 reads
2020-07-21
89 reads
Today Steve looks at one possible future of offices, which might be something we own.
2020-07-20
170 reads
There are plenty of experts that look to teach you about query tuning and the internals of query execution in SQL Server.
2020-07-18
164 reads
Today Steve thinks about what to do when planning for your digital assets after you pass.
2020-07-17
363 reads
When we need to delegate work to less privileged users, Steve has an idea.
2020-07-16
198 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
Comments posted to this topic are about the item The day-to-day pressures of a...
Hello all, I’m looking for advice on how to derive a daily snapshot table...
We need to replace our Windows server running SQL 2017. Any reason not to...
I have some data in a table that looks like this:
BeerID BeerName brewer beerdescription 1 Becks Interbrew Beck's is a German-style pilsner beer 2 Fat Tire New Belgium Toasty malt, gentle sweetness, flash of fresh hop bitterness. 3 Mac n Jacks Mac & Jack's Brewery This beer erupts with a floral, hoppy taste 4 Alaskan Amber Alaskan Brewing Alaskan Brewing Amber Ale is an "alt" style beer 8 Kirin Kirin Brewing Kirin Ichiban is a Lager-type beerIf I run this, what is returned?
select t1.[key]
from openjson((select t.* FROM Beer AS t for json path)) t1 See possible answers