Configuring SPN for SQL Server Browser service
Going through the Microsoft KnowledgeBase updates, I saw this one:
An SPN for the SQL Server Browser service is required when...
2008-04-04
2,496 reads
Going through the Microsoft KnowledgeBase updates, I saw this one:
An SPN for the SQL Server Browser service is required when...
2008-04-04
2,496 reads
I'm still working on getting all of my tools and apps onto my new laptop, which is running Vista Ultimate....
2008-04-04
2,529 reads
I needed a KVM (keyboard-video-mouse) switch for home to let me switch between two machines, found the Trendnet 2 Port...
2008-04-03
327 reads
Yesterday I found out that I am a new SQL Server MVP. I still have the feeling that I am...
2008-04-02
383 reads
Just a link today, but a good one on Building a Powerful Reputation that is a nice follow up to my...
2008-04-02
464 reads
I've been following their blog for a while at LibraryThing and so far it looks interesting. The basic premise is...
2008-04-01
260 reads
This is a meeting reminder about our next PASS meeting scheduled for April 3, 2008. It will once again be...
2008-04-01
680 reads
Looks like my family and I will make the trek down to Jacksonville in May for SQLSaturday. One of my...
2008-04-01
620 reads
I'm a little late on this one, but Cesar Cerrudo has announced he's going to demonstrate exploits to Windows Server...
2008-04-01
682 reads
Brian has just posted the schedule of sessions for SQLSaturday #3. I haven't gone through to see how many are...
2008-03-31
1,338 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 Data Modeling with dbt for...
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