Dallas-area NTSSUG Happenings
First, apologies to those of you outside the Dallas-Ft. Worth metro area… I’ve backed off from using my blog as...
2010-08-17
609 reads
First, apologies to those of you outside the Dallas-Ft. Worth metro area… I’ve backed off from using my blog as...
2010-08-17
609 reads
Looking for some free SQL Server training? How about 24 hours of free training offered by some of the top...
2010-08-17
491 reads
Good Morning,
We have an exciting SQL Lunch today. Don’t miss out on Jorge Segarra(Blog)|(Twitter) doing a session on Policy Based...
2010-08-17
187 reads
In Growing PASS Step One: Communication I talked about how I think that PASS could grow by communicating the vision...
2010-08-17
394 reads
Recently, I wrote a review of Red Gate Software’s new SQL Virtual Restore software. SQL Virtual Restore allows you to...
2010-08-17
930 reads
Just a quick note that today at 12:30 EST (11:30 CST) I’ll be presenting on Policy-Based Management for SQLLunch. If...
2010-08-17
421 reads
This Friday I’ll be traveling to Nashville for SQL Saturday #51. Because I rock, I picked a 5:40 AM flight...
2010-08-17
513 reads
I am a pretty big fan of SQL Server Data Compression, especially the enhanced version found in SQL Server 2008...
2010-08-17
2,316 reads
Piggybacking tangentially off of Tim Mitchell’s (blog, Twitter) SSC editorial Turn a Bad Job into a Good Experience…yesterday I got...
2010-08-17
669 reads
Folks, I have to tell you that this event was great!! It was really well organized, with great speakers. Personally, I...
2010-08-17
628 reads
By HeyMo0sh
Working in DevOps, I’ve seen FinOps do amazing things for cloud cost control, but...
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...
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