Collections:
Creating a Logon Trigger in Express Edition in SQL Server
Can You Create a Logon Trigger in SQL Server 2005 Express Edition in SQL Server?
✍: FYIcenter.com
Can you create a logon trigger in SQL Server 2005 Express Edition? The answer is no. LOGON is not a supported event type in Express Edition. The script below shows you the error message when you try to create a logon trigger:
CREATE TRIGGER welcome ON ALL SERVER AFTER LOGON AS PRINT 'Welcome to FyiCenterData database!'; GO Msg 1084, Level 15, State 1, Procedure welcome, Line 2 'LOGON' is an invalid event type.
Or may be there is a configuration setting that disables the logon event type.
⇒ Creating and Managing Schemas in SQL Server
⇐ Rolling Back the DDL Statement in a Trigger in SQL Server
2016-10-22, 3170🔥, 0💬
Popular Posts:
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...
How To Update Multiple Rows with One UPDATE Statement in SQL Server? If the WHERE clause in an UPDAT...
How to convert a JSON (JavaScript Object Notation) quoted string into a regular character string usi...