NTSSUG Meeting on Thursday: Brian Knight
The North Texas SQL Server User Group (NTSSUG) monthly meeting will be held this Thursday, August 20th, at the Microsoft...
2009-08-17
634 reads
The North Texas SQL Server User Group (NTSSUG) monthly meeting will be held this Thursday, August 20th, at the Microsoft...
2009-08-17
634 reads
For SSIS developers, the need for proper documentation is crucial. However, the built-in object for documentation, the annotation, is difficult...
2009-08-15
1,024 reads
In a previous blog post, I began writing about how one might start a career as a database professional, and...
2009-08-13
616 reads
I received my evaluation summary from the SQL Saturday event in Baton Rouge earlier this month. This was the first...
2009-08-12
754 reads
In a blog post a few weeks ago, I wrote about social networking in the SQL Server community. I was...
2009-08-10
999 reads
I’ve published my materials from both of my sessions from SQL Saturday Baton Rouge on August 1. You can find...
2009-08-08
776 reads
Are you an active SQL Server blogger? Do you blog regularly about the greatest database technology available? If so, you...
2009-08-04
629 reads
After a long weekend of travel and speaking, I’m finally able to put my feet up and get a little...
2009-08-03
990 reads
… and by government data, I mean the mountain of data recently made available by the G-Men on Data.gov. This site...
2009-07-28
1,343 reads
Like many SQL Server (and other technology) people, I utilize several social networking vehicles to stay in touch with others...
2009-07-20
1,856 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