2015-10-05
6 reads
2015-10-05
6 reads
2015-09-18
6 reads
on 19th sep 10.00 am pst, i will be speaking on “universal sql installations framework” @ sqlsaturday, san diego!!, if you...
2015-09-18
678 reads
2015-09-18
6 reads
on 25th july 8.30 am pst, i will be speaking on “standardized sql installations – script review & demo)” @ sqlsaturday, sacramento!!, if...
2015-07-24
708 reads
2015-07-24
3 reads
2015-07-24
5 reads
2015-07-24
4 reads
the san francisco sql server user group – may 13 2015
session evaluation
uploading presentation dac and scripts for today’s session….
scripts:
to...
2015-05-13
707 reads
2015-05-13
3 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
Comments posted to this topic are about the item Creating JSON III
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers