Articles

SQLServerCentral Article

SQL Server 2022 Build List

This is a list of the builds for SQL Server 2022. There are other build lists available here. A list of all the builds that I can find and install on my Build VM. If you find a build not listed here, please let the webmaster know (webmaster at sqlservercentral.com). All builds are listed in reverse […]

You rated this post out of 5. Change rating

2024-05-21 (first published: )

2,749 reads

Blogs

Export Extended Event Results to CSV or Table

By

This is something that I’ve seen pop up a couple of times on various...

Introduction to OpenAI and LLMs – Part 2

By

My previous blog post on this topic was Introduction to OpenAI and LLMs, the...

Large System Databases on SQL Server

By

This one is an oldie in my blog drafts, but a goodie! So, I...

Read the latest Blogs

Forums

Parse Double Quoted comma separated data with comma

By drbob

I've used this function before and I'm sorry I do not recall it's origination. ...

What is re-enabling Ole Automation Procedures?

By webrunner

Hello experts, I'm trying to disable (0) Ole Automation Procedures via sp_configure. But each...

Database Engine Tuning Advisor in Azure

By BOR15K

Hello, all We have several performance issues, which I think could be mitigated by...

Visit the forum

Question of the Day

Logon Trigger Messages

I created this trigger in SQL Server 2022:

CREATE TRIGGER checksteve
ON ALL SERVER 
FOR LOGON  
AS  
BEGIN  
IF ORIGINAL_LOGIN()= N'ARISTOTLE\Steve'
 PRINT 'Steve logged in'
END;  
GO
Where can I view "Steve logged in"?

See possible answers