<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TuDra.net &#187; sql2growl</title>
	<atom:link href="http://www.tudra.net/wp/tag/sql2growl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tudra.net/wp</link>
	<description>Stuff and more</description>
	<lastBuildDate>Sun, 07 Mar 2010 17:52:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sql2Growl 1.3</title>
		<link>http://www.tudra.net/wp/2009/05/05/sql2growl-13/</link>
		<comments>http://www.tudra.net/wp/2009/05/05/sql2growl-13/#comments</comments>
		<pubDate>Tue, 05 May 2009 16:48:59 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[sql2growl]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=71</guid>
		<description><![CDATA[See wiki page for details. Or download setup directly.
]]></description>
			<content:encoded><![CDATA[<p>See wiki <a href="http://wiki.github.com/knippers/sql2growl">page</a> for details. Or download <a href="http://cloud.github.com/downloads/knippers/sql2growl/Sql2Growl_1.3.zip">setup</a> directly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2009/05/05/sql2growl-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sql2Growl 1.1</title>
		<link>http://www.tudra.net/wp/2009/04/12/sql2growl-11/</link>
		<comments>http://www.tudra.net/wp/2009/04/12/sql2growl-11/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 16:27:03 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[sql2growl]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=58</guid>
		<description><![CDATA[Version 1.1 of Sql2Growl release info]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my previous Sql2Growl post I would come back to you if I had more info. Well here it is:  The installation consists of two parts (both included in the zip):  One is to setup the objects in the database (personally I am always a bit reserved to have a setup touch my databases, but if there is a user demand for it, I might integrate the setup of database objects in the installation set).  The seconds is to install the NT service that interacts with the database and upon receiving a notification forwards it to Growl.  To send a notification from the database execute the following procedure (assuming that the defaults in the SQL script where used):</p>
<pre class="brush: sql">
EXEC [Growl].[spQueueNotification]
   @Application = N&#039;Test App&#039;,
   @Type = N&#039;Executed&#039;,
   @Title = N&#039;Test Title&#039;,
   @Message = N&#039;Test message\nline two&#039; -- use \n for newline
</pre>
<p>Other parameters:</p>
<pre class="brush: sql">
-- set to 1 to clear cached Growl objects
--
@ClearCachedObjects = 0
</pre>
<pre class="brush: sql">
-- The service will look for the icon in Icons folder of
-- installed service and append .png to the name
--
@Icon = &#039;name&#039;
</pre>
<pre class="brush: sql">
-- usually only needed if notification has to be
-- forwarded to other Growl instance
--
@Password = &#039;password&#039;
</pre>
<pre class="brush: sql">
-- if you want the notification to be forwarded to
-- another Growl instance, it&#039;s preferred to setup
-- forwarding in Growl itself
--
@Host = &#039;hostname&#039;
</pre>
<pre class="brush: sql">
-- In the rare situation that Growl is not listening on the default
-- port, you can specify the port
--
@Port = &#039;23053&#039;
</pre>
<p>I decided to host the project on <a href="http://github.com/">GitHub</a> for two reasons. a) to play around with Git and b) because it is hip <img src='http://www.tudra.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Here is the setup: <a href="http://cloud.github.com/downloads/knippers/sql2growl/Sql2Growl_1.1.zip">Sql2Growl_1.1.zip</a><br />
And here is the git repository url: <a href="http://github.com/knippers/sql2growl/tree">sql2growl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2009/04/12/sql2growl-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sql2Growl</title>
		<link>http://www.tudra.net/wp/2009/04/02/sql2growl/</link>
		<comments>http://www.tudra.net/wp/2009/04/02/sql2growl/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 21:19:18 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[sql2growl]]></category>

		<guid isPermaLink="false">http://www.tudra.net/wp/?p=55</guid>
		<description><![CDATA[Sql2Growl bridge to send notifications from SQL Server to Growl]]></description>
			<content:encoded><![CDATA[<p>The Sql2Growl project is an application to send Growl notifications from SQL Server. It consists of a database part (Service Broker queue and stored procedures) and a C# NT Service part. Using a procedure you can add notifications to the queue. Instantly the NT Service pulls them and forwards the notification to Growl.</p>
<p>As soon as the project is in a state I am happy with I will post more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tudra.net/wp/2009/04/02/sql2growl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

