Customizing Your Azure Portal
Not all of us are going to use Azure in the same way. That’s just common sense. Therefore, not all...
2016-04-27
1,835 reads
Not all of us are going to use Azure in the same way. That’s just common sense. Therefore, not all...
2016-04-27
1,835 reads
There are obviously quite a few things that could cause internet issues that are totally out of our control, but...
2016-04-27
878 reads
There are obviously quite a few things that could cause internet issues that are totally out of our control, but...
2016-04-27
463 reads
Are you interested in Hadoop? With SQL Server 2016 just around the corner, a powerful new feature is being included called...
2016-04-27
1,030 reads
This post is a requirement from one of my blog reader.
There are plenty of scripts available to get the backup...
2016-04-27
3,023 reads
data structures are art
If anyone thinks that working with complex data structures is boring... I don't know what world they...
2016-04-27
1,056 reads
Figured I'd share a way to automate the SSMS 2016 updates until it gets it's own fancy self updater. I...
2016-04-26 (first published: 2016-04-19)
2,695 reads
Introduction
SQL Server is a database platform designed for providing large-scale transactions, e-commerce applications, data mining, etc. It is widely used...
2016-04-26
4,640 reads
In MongoDB,the limit() method is used to limit the result set to be returned. You can also use this with various...
2016-04-26
9,292 reads
I recently took the Strengthsfinder evaluation and thought I’d save the results here.
2016-04-26
611 reads
By HeyMo0sh
Working in DevOps, I’ve seen FinOps do amazing things for cloud cost control, but...
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...
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