Why Doesn't Database Software Help Us?
Databases don't manage themselves, but Steve sees this as an opportunity, not a problem.
2021-03-20
105 reads
Databases don't manage themselves, but Steve sees this as an opportunity, not a problem.
2021-03-20
105 reads
Today Steve asks about the tools you use for your job and if they help or hurt your productivity.
2021-03-19
176 reads
Spending time on low value tasks isn't often worth the cost for highly paid employees.
2021-03-18
231 reads
Some people think every IT department is unique. While that might be literally true, Steve doesn't think that is actually the case.
2021-03-17
202 reads
The transformation of a way of working is hard, but it's important to realize this is more than just technology. This also includes people.
2021-03-16
96 reads
2021-03-15
152 reads
In 2008, I managed to achieve the goal of becoming a Microsoft Certified Trainer. Once I achieved the status, Microsoft shipped me a binder with dozens of DVDs containing lab VMs and class materials for all the current classes. At some point, instead of receiving DVDs, you were expected to download images which was quite […]
2021-03-13
173 reads
We all need to learn and tackle new technology in our career. When we do so, are we impostors or students?
2021-03-12
150 reads
2021-03-11
113 reads
Containers have changed how to develop and deploy software. They haven't caught on with databases as much, but Steve thinks this will change.
2021-03-10
146 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