User access management on DB & object level
It will help to find and manage the users access on DB level
2018-07-05 (first published: 2018-06-26)
420 reads
It will help to find and manage the users access on DB level
2018-07-05 (first published: 2018-06-26)
420 reads
Will there be a fair balance between the coming generations of technology and the human workforce? Here is a list of industries that may not think yes.
2018-06-18
1,683 reads
2018-05-22
843 reads
One of the truisms of the modern data-driven world is that the velocity and volume of data keeps increasing. We’re seeing more data generated each day than ever before in human history. And nowhere is this rapid growth more evident than in the world of social media, where users generate content at a scale previously unimaginable.
2018-05-17
3,185 reads
2018-04-20
710 reads
In order for your team to be productive, communication and collaboration are essential. Collaboration tools allow you to get the most out of your team members.
2017-12-18
705 reads
2017-12-05
966 reads
2017-02-02 (first published: 2017-01-30)
797 reads
Tables used purely for reporting sometimes lack a unique identifier. Find out how to remove duplicates from such a table when data loads go bad.
2016-11-08
6,955 reads
See how the OVER() clause was used in a live system to fix overlapping field version numbers.
2016-10-17
2,396 reads
By DataOnWheels
I have been active in the data community throughout my career. I have met...
By Vinay Thakur
Quick Summary for Microsoft SQL Server till 2025, I am fortunate to be part...
By James Serra
Why this comparison feels confusing If you’re a Power BI report author who’s just...
I have mentioned this several times over several years. Can someone please help me...
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:...
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