1

我有一个作业调度程序,假设根据 20 个不同的部门向 20 个不同的 id 发送每日收集报告。每个部门将仅收到该特定部门的 1 份报告。这是我提出的问题。

DECLARE @xml NVARCHAR(MAX)
DECLARE @body NVARCHAR(MAX)


SET @xml = CAST((select tm.name as 'td','',h.name as 'td','',h.account_number AS 'td','', 
SUM(bc.total_amount)  AS 'td'  
FROM MJP.dbo.tbl_bank_collection bc,  
MJP.dbo.tbl_div_type_master tm,  
MJP.dbo.tbl_div_header h  
where   bc.type_id = tm.id    
and bc.header_id = h.id    
and bc.transaction_date = '06-12-2012'   
and bc.div_id in ( select d.id    
from tbl_div d, tbl_bank_collection bc    
where bc.div_id = d.id    
group by d.id)    
group by tm.name, h.name,h.account_number with rollup    
having grouping(h.name) = 1 or    
GROUPING(h.account_number) = 0     
FOR XML PATH('tr'), ELEMENTS ) AS NVARCHAR(MAX))   
SET @body ='<html><i>Collection Report</i>    
<body bgcolor=red><table border = 1><tr><th>Type Name    
<th>Header Name</th><th>Account Number</th>    
<th>Total Amount</th></tr>'     
SET @body = @body + @xml +'</table></body></html>'   
EXEC msdb.dbo.sp_send_dbmail    
@profile_name='alkesh mail',    
@body_format ='HTML',    
@recipients='id.no1@yahoo.com;id.no2@yahoo.com',    
@subject='Daily Report',    
@body=@body    


----------------------------------------------------------------------------------------

现在我想在计算特定部门的最终总金额后拆分报告,并且应该为下一个部门的 id 生成下一个报告。

任何建议或澄清!

4

1 回答 1

0

我假设您在 SQL Server 中受到商业政治的限制,因为连接 XML 电子邮件报告并不是SQL Server 的设计目的。

就我个人而言,我将拥有一个服务可执行文件(Windows 服务,或者只是一个由任务调度程序调用的控制台应用程序,等等),其代码(例如 C#):

  1. 仅从SQL Server获取数据,传递一个 DivisionId 参数以获取该部门报告。

  2. 打开 XML 模板文件并插入数据。

  3. 从 SQL Server 请求该部门的用户列表,并向列表中的每个人发送电子邮件。

  4. 对每个部门重复。

说了这么多,您只需使用存储过程就可以做到这一点,使用循环。您可以使用游标(糟糕),但我总是更喜欢这些结构:(注意。在 RDBMS 中循环是真正要避免的事情,这在很大程度上取决于您的特定情况)

declare @divisionId int = (select min(divisionId) from tbDivisions)
declare @userId int = ( min(userId) from users where divisionId = @divisionId )
declare @xml nvarchar(max)

while divisionId is not null
begin
    exec your_report_stored_procedure @division = @divisionId, output @xml = @xmlOut

    while @userId is not null
    begin
        exec your_email_tored_procedure @userId = @userId, @xmlIn = @xml
        select @userId = min(userId) from users where divisionId = @divisionId and userId > @userId
    end

    select @divisionId = min(divisionId) from tbDivisions where divisionId > @divisionId
end
于 2012-09-15T11:06:26.517 回答