Wednesday 26 December 2012

Monday 24 December 2012

If Database Mail XPs is off, the way to open the administrate of SQL

To open Database Mail XPs is the following way in the administrate of SQL

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Database Mail XPs', 1;
GO
RECONFIGURE
GO