Monitor SQL Server Error Logs with PowerShell
Receive email notifications of non-standard entries in your SQL Server Error Log files with a little PowerShell.
2023-12-25 (first published: 2021-03-02)
7,930 reads
Receive email notifications of non-standard entries in your SQL Server Error Log files with a little PowerShell.
2023-12-25 (first published: 2021-03-02)
7,930 reads
2021-02-18
411 reads
Using some sort of scripting or automation is important for your career.
2021-02-10
166 reads
2021-02-09
1,078 reads
2021-02-08
469 reads
It's a good idea for anyone managing systems to periodically check them and see if anything needs to change.
2021-01-12
93 reads
A recent hack through a network monitoring system is scary, but Steve thinks that we ought to not require these systems to have privileged access.
2021-01-06
177 reads
2020-12-28
531 reads
Learn how a Jenkins server can be used to schedule SQL scripts to execute against SQL Server.
2020-12-22
28,456 reads
2020-12-14
605 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