سؤال

لم أستطع إجراء إدخال رسالة كتحذير في سجل الأحداث باستخدام XP_LOGEVENT

لا يوجد حل صحيح

نصائح أخرى

هنا الوثائق على xp_logevent (Transact-SQL)

عندما قمت بتشغيل هذا المثال (من الوثائق أعلاه على SQL Server 2005 Enterprise على Windows Server 2003 Enterprise):

--I'm not sure why they declare their local variables with @@, but this code is right from the documentation
DECLARE @@TABNAME varchar(30)
DECLARE @@USERNAME varchar(30)
DECLARE @@MESSAGE varchar(255)
SET @@TABNAME = 'customers'
SET @@USERNAME = USER_NAME()
SELECT @@MESSAGE = 'The table ' + @@TABNAME + ' is not owned by the user 
   ' + @@USERNAME + '.'

USE master
EXEC xp_logevent 60000, @@MESSAGE, informational

كانت هناك رسالة في سجل النظام:

Type: Informational
Source: MSSQLSERVER
Category: (2)
Event: 17061
User: N/A
Description: Error: 60000 Severity: 10 State: 1 The table customers is not owned by the user dbo.
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top