Introducing MergeUI
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui...
2015-03-01
45 reads
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui...
2015-03-01
45 reads
What is it?
MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui to...
2015-03-01
404 reads
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui to create and edit T-Sql merge statements in...
2015-03-01
7 reads
What is it? MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui...
2015-03-01
39 reads
Continuation from the previous 48 parts, starting from http://www.nikoport.com/2013/07/05/clustered-columnstore-indexes-part-1-intro/
Note: Updated on 05th of March 2015 with information on SQL Server...
2015-02-28
1,456 reads
By Steve Bolton
…………This is the last of six articles I’ve segregated in this middle of my mistutorial series on identifying...
2015-02-28
2,112 reads
Dear Friends,
In my last article (TIP 87) I wrote about PWDENCRYPT. I forgot to write few details but thanks to...
2015-02-28
1,254 reads
2015-02-27
1,580 reads
It’s Friday, time to look back at the most popular RealSQLGuy posts of the week. Because it’s Friday and you’re...
2015-02-27
932 reads
It’s that time again to add another impact player to the roster; this time for the month of February.
This month...
2015-02-27
742 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