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';
- ››sql server自动生成批量执行SQL脚本的批处理
- ››使用linux中的quota教程
- ››sql server 2008亿万数据性能优化
- ››SQL Server 2008清空数据库日志方法
- ››sqlserver安装和简单的使用
- ››SQL Sever 2008 R2 数据库管理
- ››使用jxl生成带动态折线图的excel
- ››SQL SERVER无法安装成功,sqlstp.log文件提示[未发...
- ››Sql Server中通过父记录查找出所有关联的子记录
- ››SqlServer触发器、存储过程和函数
- ››SQL Server 中的事务(含义,属性,管理)
- ››Sqlite数据库插入和读取图片数据
更多精彩
赞助商链接