The Fall vConference Series
A series of online conferences covering various aspects of SQL Server and other Microsoft technologies. Check out the list for this fall and see if there is some training that you can attend.
2008-09-15
1,606 reads
A series of online conferences covering various aspects of SQL Server and other Microsoft technologies. Check out the list for this fall and see if there is some training that you can attend.
2008-09-15
1,606 reads
In San Francisco, Kimberly Tripp and Paul Randal of SQLSkills will be presenting a two and a half day, hands-on workshop covering database infrastructure and scalability.
2008-09-11
2,440 reads
A series of free, one-day training events are coming in October, 2008 to various locations around the country. See if you can attend one in Olympia, Greenville, or Orlando.
2008-08-25
2,197 reads
SQL Know How is holding a 3 day seminar in Hatfield, Hertfordshire in the UK this September 1-3.
2008-08-20 (first published: 2008-08-06)
4,266 reads
2008-08-06
177 reads
We're sponsoring over 5 hours over 5 days of training on SSIS and Business Intelligence with Brian Knight, SQL Server MVP and founder of Pragmatic Works.
2008-07-14 (first published: 2008-07-01)
23,867 reads
Red Gate Software wants to recognize and reward exceptional DBAs with this new program.
2008-07-07 (first published: 2008-05-29)
3,018 reads
Please join us in congratulating one of our longtime community members on MVP status.
2008-07-03
754 reads
Two longtime members of the SQLServerCentral.com community received the well-deserved MVP status this week. Congratulate Jeff Moden and Michael Coles.
2008-07-02
1,731 reads
Training in the UK this fall from a variety of SQL Server experts. If you are in the area, I'd recommend one of these classes.
2008-06-26 (first published: 2008-06-19)
2,625 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