Windows 7 to be released next month - SQL Server related info...
I wanted disseminate some news to our DBA audience regarding the long anticipated release of Microsoft's new operating system, Windows...
2009-09-14
1,003 reads
I wanted disseminate some news to our DBA audience regarding the long anticipated release of Microsoft's new operating system, Windows...
2009-09-14
1,003 reads
This past Friday I received a call from our systems team stating that they were running low on Disk Space...
2009-09-14
4,377 reads
We’ve got a great meeting coming up with Todd Holmes doing a mini presentation on Backup Basics, followed by Jorge...
2009-09-13
233 reads
I’ve been on the board just about 8-1/2 months, so I’m not doing too bad on updates, but think I’ll...
2009-09-13
943 reads
Just a quick update on the SQL Saturday event we are planning for the Dallas area next year. Late last...
2009-09-13
669 reads
In case you are considering to apply SQL Server SP3 CU5 (http://support.microsoft.com/kb/972511) to your system, I'd like to point out...
2009-09-12
1,564 reads
Hello all!
We will be having our normal meeting at the Microsoft technology center sponsored by:
http://www.cactuss.org/Supporters/tabid/59/Default.aspx
Microsoft http://www.cactuss.org/MeetingInformation/tabid/63/Default.aspx
Stonebridge Plaza, Building One...
2009-09-12
1,024 reads
As most of you, we in the financial world have often been faced with the challenge of extracting data from...
2009-09-12
1,381 reads
We have several “Home Grown” applications at my current place of employment. This provides our development staff with a great...
2009-09-11
1,947 reads
Today is the anniversary of one of the worst attacks in the US, the September 11th attack on the World...
2009-09-11
319 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