SQL Server調用Database Mail發送郵件報錯:Msg 229, Level 14, State 5, Procedure sp_send_dbmail, Line 1 EXECUTE

來源:互聯網
上載者:User

 

新的帳號有使用表Tigger調用Database Mail發送郵件時報錯:Msg 229, Level 14, State 5, Procedure sp_send_dbmail, Line 1,EXECUTE permission denied on object 'sp_send_dbmail', database 'msdb', schema 'dbo'.

這是因為,當前 SQL Server 登陸帳戶(login),在 msdb 資料庫中沒有發送資料庫郵件的許可權,需要加入 msdb 資料庫使用者,並通過加入 sp_addrolemember 角色賦予許可權。

假設該SQL Server 登陸帳戶名稱字為 “dba”

use msdb

go 

create user dba for login dba

go

 exec dbo.sp_addrolemember @rolename   = 'DatabaseMailUserRole',

                          @membername = 'dba'

go

 

此時,再次發送資料庫郵件,仍可能有錯誤:

Msg 14607, Level 16, State 1, Procedure sp_send_dbmail, Line 119

profile name is not valid

雖然,資料庫使用者 “dba” 已經在 msdb 中擁有發送郵件的許可權了,但這還不夠,他還需要有使用 profile:“dba_profile” 的許可權。

 

use msdb

go

exec sysmail_add_principalprofile_sp  @principal_name = 'dba'

                                     ,@profile_name   = 'dba_profile'

                                     ,@is_default     = 1

 

這樣就可以使用新帳號調用Database Mail發送郵件了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.