PASS Virtualization Virtual Chapter Open Q&A – 1/13
Next Wednesday, January 13th, at 1pm Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session on...
2016-01-05
440 reads
Next Wednesday, January 13th, at 1pm Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session on...
2016-01-05
440 reads
Poor storage performance continues to be the largest pain point with enterprise Database Administrators in today’s virtual world. However, it...
2015-12-17
1,077 reads
In the West, the holiday season summons different memories and plans for different people. The thought of gorging on a...
2015-12-25 (first published: 2015-12-15)
1,019 reads
Want to get out of the winter blues and into some warmer weather for some deep SQL Server training? Join...
2015-12-07
687 reads
On Tuesday, December 15th, Bala Narasimhan and I are presenting a webinar where we will walk through real-world examples that...
2015-12-02
449 reads
Today I had a need to manually trigger and sustain a Blue Screen of Death (BSOD) inside a Windows Server...
2015-11-30
833 reads
Earlier this week I received a great question from a friend, and read something like this.
Hi David,I usually recommend people...
2015-11-11
402 reads
Last week’s PASS Summit conference in Seattle, WA was incredible (as always). It’s my favorite tech event of the year,...
2015-11-09
456 reads
I recently recorded an interview with PernixData where he discusses some of the largest challenges with virtualized databases, and talks about...
2015-10-30 (first published: 2015-10-21)
982 reads
Join PernixData and me tomorrow at 1PM Pacific for a webinar discussing an exciting technology from PernixData!
In-memory computing is gaining...
2015-10-19
306 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