Checking for Excessive Permissions in SQL Server - Syndication – WaterOx Consulting
Who can do what? One of the key things that a DBA...
The post Checking for Excessive Permissions in SQL Server...
2015-09-02
506 reads
Who can do what? One of the key things that a DBA...
The post Checking for Excessive Permissions in SQL Server...
2015-09-02
506 reads
Thinking Like A Manager In WOxPod!, episode # 017 – “Thinking Like...
The post 017 – Thinking Like A Manager appeared first on WaterOx...
2015-08-28
907 reads
What is the real problem with the AshleyMadison data breach? Well, let...
The post The Problem With AshleyMadison appeared first on...
2015-08-26
596 reads
Me, Myself and I In WOxPod!, episode # 016 – “Me, Myself...
The post 016 – Me, Myself and I appeared first on WaterOx...
2015-08-21
802 reads
Brian Davis In WOxPod!, episode # 015 – “Brian Davis” we have...
The post 015 – Brian Davis appeared first on WaterOx Consulting.
2015-08-14
549 reads
Kon!!!!!! In WOxPod!, episode # 014 – “Kon Melamud” Today we have...
The post 014 -Kon Melamud appeared first on WaterOx Consulting.
2015-07-31
1,150 reads
Let’s Play A Game! So, just to tickle your fancy, here is...
The post Sneak Preview – Episode 014 appeared first on...
2015-07-27
482 reads
Together we can make a difference in the data world! In WOxPod!,...
The post 013 – The Start of Something Big! appeared...
2015-07-24
463 reads
But SQL Server Can Help Did you know SQL Server has a...
The post Security Isn’t Easy appeared first on WaterOx...
2015-07-22
510 reads
Someone worth getting to know in the Mid-Atlantic region! In WOxPod!, episode...
The post 012 – Carlos Chacon appeared first on WaterOx...
2015-07-17
561 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