The June Energy Update (2007)
Steve Jones takes a look at energy news and how Google and Microsoft are looking to lower their dependence on the grid and advance alternative energy use.
2007-06-27
12 reads
Steve Jones takes a look at energy news and how Google and Microsoft are looking to lower their dependence on the grid and advance alternative energy use.
2007-06-27
12 reads
2007-06-27
1,704 reads
2007-06-26
1,127 reads
2007-06-22
1,812 reads
With the next version of SQL Server due to release in 2008, Steve Jones takes a look of some of the more interesting features available in the June 2007 CTP and that should be ready for release next year.
2007-06-21
8,592 reads
2007-06-21
1,214 reads
My job here at SQLServerCentral.com is mainly as editor. This means that for the most part I edit articles, schedule...
2007-06-20
1,414 reads
I wanted to get working on Katmai a little, but not being brave and seeing the release notes that it...
2007-06-20
1,357 reads
2007-06-20
2,278 reads
2007-06-19
2,059 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