Microsoft finally got SQL setup right!
This past week, Microsoft revealed that SQL Server 2016 will be available in June. Exciting news indeed! With that said,...
2016-06-22
470 reads
This past week, Microsoft revealed that SQL Server 2016 will be available in June. Exciting news indeed! With that said,...
2016-06-22
470 reads
Can you guess what all of these people have in common?
Shawn WeisfeldJoe HealyBarry RalstonTrey JohnsonJon WinerWes DumeyDonnie ReynoldsKevin JacobsJoseph MemmoBrian...
2016-06-22
483 reads
Tldr: A bit of a rant. I’m not spending a bunch of time crafting this.
I have mixed feelings about searching...
2016-06-22
497 reads
comparing instances
When working with a variety of instances, you can often deal with variances in configuration that might impact the...
2016-06-22 (first published: 2016-06-14)
2,857 reads
Today PASS released a bunch of stuff for the upcoming election including the attributes of an “ideal candidate”. We put...
2016-06-22
418 reads
Triggers can be very useful when you want to log changes to your data, but what if you’re only interested...
2016-06-22 (first published: 2016-06-16)
2,372 reads
In the first entry in this SQL Server security series, we will demonstrate a brute force attack against SQL Server...
2016-06-22
480 reads
We’ve advanced the closing date for the SQLSaturday Orlando call for speakers to July 17. That’s to give us time...
2016-06-22
394 reads
A few years back, Redgate Software released SQL Search. This was an internal project that became a free product we...
2016-06-21 (first published: 2016-06-15)
4,068 reads
Continuation from the previous 84 parts, the whole series can be found at http://www.nikoport.com/columnstore/
I wanted to write a blog post...
2016-06-21
499 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