WEB开发网
开发学院数据库MSSQL Server SQL Server 2005使用管理数据库邮件 阅读

SQL Server 2005使用管理数据库邮件

 2007-05-17 09:34:42 来源:WEB开发网   
核心提示: sp_send_dbmail[[@profile_name=]'profile_name'][,[@recipients=]'recipients[;...n]'][,[@copy_recipients=]'copy_recipient[;...n]
  sp_send_dbmail[[@profile_name=]'profile_name']
  [,[@recipients=]'recipients[;...n]']
  [,[@copy_recipients=]'copy_recipient[;...n]']
  [,[@blind_copy_recipients=]'blind_copy_recipient[;...n]']
  [,[@subject=]'subject']
  [,[@body=]'body']
  [,[@body_format=]'body_format']
  [,[@importance=]'importance']
  [,[@sensitivity=]'sensitivity']
  [,[@file_attachments=]'attachment[;...n]']
  [,[@query=]'query']
  [,[@execute_query_database=]'execute_query_database']
  [,[@attach_query_result_as_file=]attach_query_result_as_file]
  [,[@query_attachment_filename=]query_attachment_filename]
  [,[@query_result_header=]query_result_header]
  [,[@query_result_width=]query_result_width]
  [,[@query_result_separator=]'query_result_separator']
  [,[@exclude_query_output=]exclude_query_output]
  [,[@append_query_error=]append_query_error]
  [,[@query_no_truncate=]query_no_truncate]
  [,[@mailitem_id=]mailitem_id][OUTPUT]

正如你所见,这个存储过程支持多个不同的参数。想获取这些参考中每个参数的信息,请参考Books Online。

下面是我如何使用上面创建的私有个人资料来给我发送一封有关自动数据库重索引过程方面的简单的邮件消息的例子。

  EXECmsdb.dbo.sp_send_dbmail
  @profile_name='DatabaseAdministrationProfile',
  @recipients='greg.larsen@databasejournal.com',
  @body='Reindexdatabaseprocesscompletedsuccessfully',
  @subject='ReindexDatabase';

上一页  1 2 3 4 5 6  下一页

Tags:SQL Server 使用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接