Sql server 2012 management studio is not showing me the Databasemail
Posted
by
Sreejith
on Stack Overflow
See other posts from Stack Overflow
or by Sreejith
Published on 2014-08-24T16:16:57Z
Indexed on
2014/08/24
16:19 UTC
Read the original article
Hit count: 276
I am trying to send mail through SQL server. But in my case when i expanded the SQL Server Logs i cannot find my Database mail. How can i do this Please help me guys. I tried so many ways for showing the database mail there.. i could get anything. Please help me guys.
I tried the following codes too
// To fix the run the following script:
USE Master
GO
sp_configure 'show advanced options', 1
GO
reconfigure with override
GO
sp_configure 'Database Mail XPs', 1
GO
reconfigure
GO
sp_configure 'show advanced options', 0
GO
Please find the below link to my snapshot of the SQL server 2012 management studio. I dont have Database mail there..
© Stack Overflow or respective owner