PASS Summit 2013 Report #9
PowerBi contest – www.facebook.com/microsoftbi. Aligns with the BA conference next year.
I’m amused thinking about PowerBi being Powered By Microsoft.
I still...
2013-10-16
603 reads
PowerBi contest – www.facebook.com/microsoftbi. Aligns with the BA conference next year.
I’m amused thinking about PowerBi being Powered By Microsoft.
I still...
2013-10-16
603 reads
Weather a bit cloudy today, a little rain and a little cool – not Seattle, but not Orlando either! Breakfast at...
2013-10-15
454 reads
Started today with breakfast with the family after packing up all their clothes and stuffed animals for the trip home....
2013-10-15
423 reads
One of the items that came up for discussion at the Chapter meeting today was the privacy policy for SQLSaturday....
2013-10-15
302 reads
Tonight for the fourth year Steve Jones and I are hosting an informal networking dinner. We’ll be at Buffalo Wild...
2013-10-14
379 reads
Yesterday we drove up from Charleston where I had attended SQLSaturday #227. It’s not a bad drive, about three hours....
2013-10-14
313 reads
Protecting our physical systems usually involves some type of security at the office. For many of this, we have some type of key card system. Andy Warren asks today how you handle things and does it work well.
2013-10-14
148 reads
My first time in Charleston! Quick notes:
Made the drive with the family in 7 hours, not bad, and easily the...
2013-10-13
558 reads
Last Tuesday I received the email confirming that I will be an MVP for another year. Nice news to get....
2013-10-07
351 reads
Today I’ll continue with my notes and thoughts on the 2013 election process and a good place to start is...
2013-10-06
717 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