Administrative Logins and Users
If you’ve ever worked through an audit you have probably gotten a request that looks a lot like this:
Please give...
2015-11-02
504 reads
If you’ve ever worked through an audit you have probably gotten a request that looks a lot like this:
Please give...
2015-11-02
504 reads
Hello Guys,
Lately, one of my friend asked me a Question, “If Delete is in progress and query get erred out or...
2015-11-02 (first published: 2015-10-21)
5,378 reads
Hash Indexes on "In memory" tables are best suited for equality searches. Reason is obvious, as they are based on...
2015-11-02
488 reads
WHOOP!
Another PASS Summit is complete. This one was amazing. It’s my first time ever as a member of the Board...
2015-11-02
460 reads
One of the best features of SSDT is deployment contributors. They are so exciting I am going to say it...
2015-11-02
426 reads
One of the best features of SSDT is deployment contributors. They are so exciting I am going to say it...
2015-11-02
19 reads
One of the best features of SSDT is deployment contributors. They are so exciting I am going to say it...
2015-11-02
19 reads
One of the best features of SSDT is deployment contributors. They are so exciting I am going to say it again with more gusto. One of the best features...
2015-11-02
3 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
532 reads
I have been using SSDT seriously for a couple of years now and have really been impressed with the code...
2015-11-01
24 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...
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