<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SSRS 2008 Data Driven Subscriptions and Alerts</title>
	<atom:link href="http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/</link>
	<description>A Christian technology chaos wrangler and his thoughts</description>
	<lastBuildDate>Wed, 25 Jan 2012 10:13:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kunal</title>
		<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/comment-page-1/#comment-145</link>
		<dc:creator>Kunal</dc:creator>
		<pubDate>Fri, 28 May 2010 22:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tech4him.com/?p=618#comment-145</guid>
		<description>I am still looking for the solution to the post posted above. Has any one achieved the same?

I am trying to send out an alert when there are any records returned by the MDX query. 

As of now i sent out emails which has no records and it is hated by business people.</description>
		<content:encoded><![CDATA[<p>I am still looking for the solution to the post posted above. Has any one achieved the same?</p>
<p>I am trying to send out an alert when there are any records returned by the MDX query. </p>
<p>As of now i sent out emails which has no records and it is hated by business people.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/comment-page-1/#comment-101</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 02 Nov 2009 13:06:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tech4him.com/?p=618#comment-101</guid>
		<description>Thanks for the follow-up. No. Actually we got moved to another higher priority project and have not come back to this. Curious if anything in R2 will address the need. I haven&#039;t seen anything yet.

Blessings.</description>
		<content:encoded><![CDATA[<p>Thanks for the follow-up. No. Actually we got moved to another higher priority project and have not come back to this. Curious if anything in R2 will address the need. I haven&#8217;t seen anything yet.</p>
<p>Blessings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Richardson</title>
		<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/comment-page-1/#comment-100</link>
		<dc:creator>David Richardson</dc:creator>
		<pubDate>Mon, 02 Nov 2009 03:27:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tech4him.com/?p=618#comment-100</guid>
		<description>I had the same idea of using SSRS for Alerts... Have you made any progress?</description>
		<content:encoded><![CDATA[<p>I had the same idea of using SSRS for Alerts&#8230; Have you made any progress?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/comment-page-1/#comment-51</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 01 Jul 2009 12:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tech4him.com/?p=618#comment-51</guid>
		<description>Thanks Kevin. You described, much better than I, the approach I am looking to take unless there is a better idea out there. I remember a few years ago reading about Notification Services. Hmmm Wondering if that is an approach for the notification aspect, less report. (Dangerous to write my stream of conscious thoughts)  ;)

Thanks for the tip. Blessings!</description>
		<content:encoded><![CDATA[<p>Thanks Kevin. You described, much better than I, the approach I am looking to take unless there is a better idea out there. I remember a few years ago reading about Notification Services. Hmmm Wondering if that is an approach for the notification aspect, less report. (Dangerous to write my stream of conscious thoughts)  <img src='http://blog.tech4him.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thanks for the tip. Blessings!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevin</title>
		<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/comment-page-1/#comment-50</link>
		<dc:creator>kevin</dc:creator>
		<pubDate>Wed, 01 Jul 2009 02:41:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tech4him.com/?p=618#comment-50</guid>
		<description>If the SSRS report dataset comes from a stored procedure you can perform some other operations in addition to providing data to the report.  So you could update a matching table that stores user FK, Record FK, and a bit field or datetime field for sent.  The select statement can do a NOT EXISTS on that matching table so records don&#039;t get reported again.  You may need a temp table to ensure the results in the SELECT statment and UPDATE statement are exactly the same.

One thing to note in SQL Server 2005 at least, Visual Studio won&#039;t properly read fields into the dataset if the SP has more complex T-SQL before the SELECT statement.  However, you can add fields to the dataset manually OR refresh the dataset from the SP then add the additional T-SQL.

God bless,

Kevin</description>
		<content:encoded><![CDATA[<p>If the SSRS report dataset comes from a stored procedure you can perform some other operations in addition to providing data to the report.  So you could update a matching table that stores user FK, Record FK, and a bit field or datetime field for sent.  The select statement can do a NOT EXISTS on that matching table so records don&#8217;t get reported again.  You may need a temp table to ensure the results in the SELECT statment and UPDATE statement are exactly the same.</p>
<p>One thing to note in SQL Server 2005 at least, Visual Studio won&#8217;t properly read fields into the dataset if the SP has more complex T-SQL before the SELECT statement.  However, you can add fields to the dataset manually OR refresh the dataset from the SP then add the additional T-SQL.</p>
<p>God bless,</p>
<p>Kevin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

