R & R
It is once again time for the blog party known as TSQL Tuesday. I am hosting this month and wanted...
2010-08-10
611 reads
It is once again time for the blog party known as TSQL Tuesday. I am hosting this month and wanted...
2010-08-10
611 reads
Well not me. It wasn’t my design, but when I went through the entries, this was the one that caught...
2010-08-10
925 reads
With 63% of the total votes our winner is Speedometer! Congratulations to azzam on 99designs and thank you to everyone...
2010-08-10
548 reads
“Building an easy-to-use tool does not make an amateur more skilled at making applications and more than a $900 table...
2010-08-10
786 reads
I almost forgot about T-SQL Tuesday this time, so I’m scrambling to get an entry done today.
This is a...
2010-08-10
832 reads
T-SQL Tuesday #009: Beach Time: My Work Away From Work
This blog entry is participating in T-SQL Tuesday #009, hosted...
2010-08-10
672 reads
Someone posted a note asking how they might restore if the disk that contained their transaction log crashed. I replied...
2010-08-09
409 reads
Not sure if anyone else posted about this, but just sharing the news of the R2 Management Pack from MSDN:
"Following...
2010-08-09
1,383 reads
Kendal Van Dyke blogged about it last week here, we ended up with 3 great designs to pick from for...
2010-08-09
332 reads
Hey folks - Dont 'forget to check out SQL Lunch today. I'm hosting Mr. Andy Leonard! Always exciting and cool information.....
2010-08-09
396 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