Remote Data Challenges
While working remotely, we still need good security practices and strong data protection.
2020-05-06
216 reads
While working remotely, we still need good security practices and strong data protection.
2020-05-06
216 reads
2020-05-04
121 reads
The Covid-19 pandemic has provided examples of how uncertain data can eventually be presented to the public as certainty. How, as data people, should we represent uncertainty in our data?
2020-05-02
169 reads
With many of us working from home, Steve wonders if you want to change anything.
2020-05-01
113 reads
Marriott has had another security breach. Does this mean they aren't taking security seriously? Steve has a few thoughts.
2020-04-30
113 reads
Artificial Intelligence hasn't always worked well, but there is one place that is seems to have lots of potential.
2020-04-29
134 reads
Steve prefers having standards, and today notes that aliases should be included in your standards document.
2020-04-28
144 reads
There are contests to break encryption algorithms taking place all the time. Another one was completed recently.
2020-04-27
200 reads
2020-04-25
134 reads
This week Steve talks a bit about working remotely, which is something more of us are doing these days.
2020-04-24
214 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