SSRS 订阅创建日期?

SSRS subcription creation date?

reportserver 数据库中的订阅 table 似乎没有创建日期。 有什么办法可以知道订阅是什么时候创建的?

谢谢

这是一种方法

select c.name,s.date_created, * from ReportSchedule rs  
JOIN msdb.dbo.sysjobs s ON s.name = convert(varchar(max),rs.ScheduleID)
JOIN ReportServer.dbo.Subscriptions sb
ON rs.SubscriptionID = sb.SubscriptionID
JOIN ReportServer.dbo.Catalog c
ON sb.report_oid = c.itemid
ORDER BY s.date_created desc

s.date_created是创建日期