We’re Like the Zoo
Actually we’re not quite like the Denver Zoo, which is open every day of the year. The zoo in Virginia...
2009-12-24
782 reads
Actually we’re not quite like the Denver Zoo, which is open every day of the year. The zoo in Virginia...
2009-12-24
782 reads
Glenn Barry (blog, twitter) posted a note about MySpace using Fusion-IO PCi-E cards to replace hard drives in their systems....
2009-12-24
1,917 reads
A guest editorial from Tim Ford updates this Christmas classic for the SQL Server professionals out there.
2009-12-24
1,592 reads
A guest editorial from Tim Ford updates this Christmas classic for the SQL Server professionals out there.
2009-12-24
1,770 reads
Windows 7 just dropped off the network, acting like a cable had been unplugged. I rebooted the machine after trying...
2009-12-23
666 reads
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
2009-12-23
68 reads
I noticed a post recently from Bru Medishetty on Striped Backups. I commented, but thought I should explain a little...
2009-12-23
3,700 reads
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
2009-12-23
1,522 reads
Companies have to make choices about what to spend money on, often not using the same priorities as those in IT might choose. Steve Jones talks about some of choices they make and why their decisions might make some sense.
2009-12-23
1,747 reads
Can we trust users to make good decisions about what to install on their devices? Steve Jones says that the Apple iPhone model has some good advantages and it might work well for SQL Server as well.
2009-12-22
105 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