SQL Saturday Advice - Keynotes
Continuing on with my Thursday series of SQL Saturday posts, this time I wanted to talk about keynotes.
I’ve been to...
2010-08-05
429 reads
Continuing on with my Thursday series of SQL Saturday posts, this time I wanted to talk about keynotes.
I’ve been to...
2010-08-05
429 reads
Wow! Thanks to everyone who came to my SQL Server Locking & Blocking session at devLINK this morning! I’m completely humbled...
2010-08-05
378 reads
Planning is going forward for SQLSaturday #49 – Orlando and the event is coming together well. My main task is sponsors...
2010-08-05
356 reads
Have you ever tried to create a dataset in SSRS 2008 (based upon an OLAP cube) and ran into that...
2010-08-05
1,397 reads
I like way that the SQL Rally is being run. Having the community interact with the organizers and try to...
2010-08-05
1,147 reads
It is nearly UG meeting time once again. The S3OLV UG will be meeting Thursday August 12 at 6:00. Come...
2010-08-04
479 reads
The short answer is it doesn’t. I guess that’s the long answer as well.
A few people have posted questions...
2010-08-04
429 reads
I’m absolutely positive that I’m not the first to blog on this topic, but I haven’t seen anyone else say...
2010-08-04
936 reads
In addition to being at at #40 as an attendee, I also had Don Gabor there to take a look...
2010-08-04
330 reads
In life, many times we get confused by symbols or indicators that we make assumptions about. You know what they...
2010-08-04
184 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...
We need to replace our Windows server running SQL 2017. Any reason not to...
Comments posted to this topic are about the item Using OPENJSON
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