DECLARE @Current_user char(30);SET @Current_user = SYSTEM_USER;SELECT 'The current user is: '+ @Current_user;GO