Multitasking
This morning, with a sore back, I’m struggling a little to sit still, but I’ve managed to get things done....
2009-05-11
557 reads
This morning, with a sore back, I’m struggling a little to sit still, but I’ve managed to get things done....
2009-05-11
557 reads
While I was testing some things the other day my desktop was running slow. I mean so slow that typing...
2009-05-11
804 reads
How can you measure someone's DBA skills? Steve Jones comments on a new technique that someone suggested to him.
2009-05-11
726 reads
How can you measure someone's DBA skills? Steve Jones comments on a new technique that someone suggested to him.
2009-05-11
1,005 reads
How can you measure someone's DBA skills? Steve Jones comments on a new technique that someone suggested to him.
2009-05-11
701 reads
Looking for a new DBA can be a daunting process, and a lot of work as the resumes flood in. Steve Jones talks about a better way that might work for some of you.
2009-05-09
283 reads
Looking for a new DBA can be a daunting process, and a lot of work as the resumes flood in. Steve Jones talks about a better way that might work for some of you.
2009-05-09
453 reads
Looking for a new DBA can be a daunting process, and a lot of work as the resumes flood in. Steve Jones talks about a better way that might work for some of you.
2009-05-09
213 reads
I'm on the Prius mailing list since I bought a Prius and Toyota hopes that I'm
Happy with my Prius Willing...
2009-05-08
587 reads
The problems with Windows 7 downloads were blamed on SQL Server. Steve Jones thinks this was a huge mistake.
2009-05-08
946 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...
Comments posted to this topic are about the item Using OPENJSON
Comments posted to this topic are about the item Data Modeling with dbt for...
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