Training
I'm kind of stunned. I have asked 6 people to go to the PASS conference over the last 4 days...
2007-09-17
683 reads
I'm kind of stunned. I have asked 6 people to go to the PASS conference over the last 4 days...
2007-09-17
683 reads
I'm flying out tomorrow for the event and looking forward to it, nice break from the office/work routine, a chance...
2007-09-16
490 reads
So I got a final count of referrals from the PASS conference yesterday and it was 183, so thanks to...
2007-09-14
655 reads
Editorial coming next week, but so far this is amazing to me. Microsoft's stealth updates of their client update tool....
2007-09-14
604 reads
OK, here's one take. Not sure if it's any good, but it's a start.
No live editorials yet. I've been working...
2007-09-13
654 reads
I'm working on getting a small studio set up for some podcasting of the editorials. That means I put a...
2007-09-12
2,228 reads
Saw an plug for it from our sales rep yesterday, MD3000i. Starts at $7300 with just a couple drives, goes...
2007-09-11
485 reads
You might call me a bean counter, but it's a fact that every manager needs to manage the distractions that...
2007-09-11
513 reads
Makes me yearn for a faster connection, about a 2300 mb download to get all the various pieces and if...
2007-09-10
1,250 reads
For those who might not have browsed previous posts I'm heading up a free one day training event called SQLSaturday...
2007-09-10
544 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