My Upcoming Speaking Engagements
March 4 – Charleston PASS, Charleston, SC
What Admins Absolutely Must Know About SQL Server Security
There are so many security tips out...
2015-02-26
669 reads
March 4 – Charleston PASS, Charleston, SC
What Admins Absolutely Must Know About SQL Server Security
There are so many security tips out...
2015-02-26
669 reads
March 4 – Charleston PASS, Charleston, SC
What Admins Absolutely Must Know About SQL Server Security
There are so many security tips out...
2015-02-26
963 reads
If you are running SQL Server 2014, please read the following:
Memory leak occurs when you run DBCC CHECKDB against a...
2015-02-20
761 reads
If you are running SQL Server 2014, please read the following:
Memory leak occurs when you run DBCC CHECKDB against a...
2015-02-20
263 reads
If you are relatively near to Charleston, SC, there’s a SQL Saturday there this weekend, December 13th!
SQL Saturday #354 – Charleston,...
2014-12-09
462 reads
The US government’s illogical screeds against better personal encryption for data and communications is well documented. Then comes this reported...
2014-11-20
683 reads
As a follow-up to my post on being at war, cyberwar:
State Department Hacked
If the experts are correct, this trend is...
2014-11-18
578 reads
I’ve stated quite often that being a generalist has generally been beneficial for my IT career (pun intended). That’s why...
2014-11-13 (first published: 2014-11-06)
7,237 reads
In case you’ve not been following the news with regards to *government* breaches:
White House computers hacked – Russia suspectedUS Postal Service...
2014-11-13
752 reads
If you’re looking to warm up for the winter, come on down to Charleston, SC, on December 13, 2014. Charleston...
2014-11-12
647 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