<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vontlin's</title>
	<atom:link href="http://vontlin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vontlin.wordpress.com</link>
	<description>If You Can Do It, Then I Can Do It, If I Can Do It, Then Anyone Can Do It</description>
	<lastBuildDate>Fri, 11 Sep 2009 14:54:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='vontlin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/ee88d0aa5d5ba19cbdfa86647b1c8827?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Vontlin's</title>
		<link>http://vontlin.wordpress.com</link>
	</image>
			<item>
		<title>TSQL &#8211; Getting every day of the Current Month</title>
		<link>http://vontlin.wordpress.com/2009/08/28/tsql-getting-every-day-of-the-current-month/</link>
		<comments>http://vontlin.wordpress.com/2009/08/28/tsql-getting-every-day-of-the-current-month/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 18:35:52 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[SQL Express Programming]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[TSQL]]></category>
		<category><![CDATA[SQL Express 2005 Programming]]></category>
		<category><![CDATA[SQL Express 2005/2008 Programming]]></category>
		<category><![CDATA[SQL Express 2008]]></category>
		<category><![CDATA[TSQL Programming]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2009/08/28/tsql-getting-every-day-of-the-current-month/</guid>
		<description><![CDATA[This came handy, when i wanted to get all dates of the current month when joining with mutiple tables… and not all the tables  had all dates of the month
;WITH
   CTE0 AS(SELECT 1 AS c UNION ALL SELECT 1),
    CTE1 AS(SELECT 1 AS c FROM CTE0 AS A, CTE0 AS B),
CTE2 AS(SELECT 1 AS c [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=108&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote><p>This came handy, when i wanted to get all dates of the current month when joining with mutiple tables… and not all the tables  had all dates of the month</p>
<p>;WITH<br />
   CTE0 AS(SELECT 1 AS c UNION ALL SELECT 1),<br />
    CTE1 AS(SELECT 1 AS c FROM CTE0 AS A, CTE0 AS B),<br />
CTE2 AS(SELECT 1 AS c FROM CTE1 AS A, CTE1 AS B),<br />
CTE3 AS(SELECT 1 AS c FROM CTE2 AS A, CTE2 AS B),<br />
  SeqNumbers AS(SELECT ROW_NUMBER() OVER(ORDER BY c) AS SeqNumber FROM CTE3)</p></blockquote>
<p>SELECT SeqNumber,CONVERT(VARCHAR(12),(GETDATE()-(DAY(GETDATE())-SeqNumber)),101) AS ReportingDate<br />
FROM<br />
    SeqNumbers<br />
WHERE SeqNumber &lt;=    DAY(GETDATE())</p>
Posted in Software Development, SQL Express Programming, TSQL Tagged: SQL Express 2005 Programming, SQL Express 2005/2008 Programming, SQL Express 2008, TSQL, TSQL Programming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=108&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2009/08/28/tsql-getting-every-day-of-the-current-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>
	</item>
		<item>
		<title>Fake House Rental Ad in Craigslist</title>
		<link>http://vontlin.wordpress.com/2009/04/08/fake-house-rental-ad-in-craigslist/</link>
		<comments>http://vontlin.wordpress.com/2009/04/08/fake-house-rental-ad-in-craigslist/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 23:13:07 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Fake Scam House Apartment Rental]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2009/04/08/fake-house-rental-ad-in-craigslist/</guid>
		<description><![CDATA[This Monday morning I got a call from a lady claiming to be renting my house and she saw my ad in the Craigslist and if I still in USA or Africa?
The ad which i was not totally aware. and she confirmed that she is working with her Aunt a realtor. Though i told her, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=106&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This Monday morning I got a call from a lady claiming to be renting my house and she saw my ad in the Craigslist and if I still in USA or Africa?</p>
<p>The ad which i was not totally aware. and she confirmed that she is working with her Aunt a realtor. Though i told her, we are not looking for tenants now and if required she can talk to my Property Manager. and Then I talked to my property Manager, he said he did get calls asking how authentic we are in renting the house.</p>
<p>I got to know more from my property manager, that that lady is a MBA student and had already sent <strong><u>$800 twice!!!.</u></strong> Which I still wonder how someone would send money without meeting in person or any kind of information, I could not get hold of them to get more details.</p>
<p>Anyway, I am now worried there is someone using my name, created a fake email address with my name. and renting my house in Craigslist.</p>
<p><strong>What Can I do?</strong></p>
<p><strong><em><u>Nothing</u></em></strong>. I searched all over the internet, I could report in <a href="http://www.ic3.org">www.ic3.org</a>, and talk to my friends. and that’s it. There are several other news similar to rental scam like this, and apparently largely from Nigeria. </p>
<p>&#160;</p>
<p>I had someone investigate this and give me more details on this:</p>
<ol>
<li>A Yahoo email created using my name: <a href="mailto:vontlinsriprabuc@yahoo.com">vontlinsriprabuc@yahoo.com</a>&#160;&#160; &#8212; of course you can send email to the person who is running this scam.</li>
<li>IP Address used to send email communication for those who responded to the ad:</li>
</ol>
<blockquote><p>The result of WhoIs:</p>
</blockquote>
<blockquote><p><font color="#004080">Location: Nigeria (high) [City: Lagos, Lagos]       <br />[Caching always on for search engines and InfoPath]        <br /></font><em><font color="#004080">% This is the AfriNIC Whois server.         </p>
<p>% Note: this output has been filtered.          </p>
<p>% Information related to &#8216;41.219.226.0 &#8211; 41.219.226.255&#8242;          </p>
<p>inetnum:&#160;&#160;&#160;&#160;&#160;&#160;&#160; 41.219.226.0 &#8211; 41.219.226.255          <br />netname:&#160;&#160;&#160;&#160;&#160;&#160;&#160; ORG-SA57-AFRINIC-20050513          <br />descr:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Assigned to Lagos dial-pool customers          <br />country:&#160;&#160;&#160;&#160;&#160;&#160;&#160; NG          <br />admin-c:&#160;&#160;&#160;&#160;&#160;&#160;&#160; NS4-AFRINIC          <br />tech-c:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; CM9-AFRINIC          <br />status:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Assigned PA          <br />mnt-by:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; STARCOMMS-MNT          <br />mnt-lower:&#160;&#160;&#160;&#160;&#160; STARCOMMS-MNT          <br />source:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; AFRINIC # Filtered          <br />parent:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 41.219.192.0 &#8211; 41.219.255.255          </p>
<p>person:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; NAVNEET SINGH          <br />address:&#160;&#160;&#160;&#160;&#160;&#160;&#160; Plot 1261, Bishop Kale Close, off Saka Tinubu          <br />address:&#160;&#160;&#160;&#160;&#160;&#160;&#160; Victoria Island, Lagos, Nigeria          <br />phone:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; +2347028000725          <br />fax-no:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; +234-1-811-0301          <br />e-mail:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ********@starcomms.com          <br />nic-hdl:&#160;&#160;&#160;&#160;&#160;&#160;&#160; NS4-AFRINIC          <br />source:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; AFRINIC # Filtered          </p>
<p>person:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Catalin Miclaus          <br />address:&#160;&#160;&#160;&#160;&#160;&#160;&#160; Plot 1261C, Bishop Kale Close, off Saka Tinubu          <br />phone:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; +234-7028000733          <br />fax-no:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; +234-1-8110301          <br />e-mail:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; *******@starcomms.com          <br />nic-hdl:&#160;&#160;&#160;&#160;&#160;&#160;&#160; CM9-AFRINIC          <br />source:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; AFRINIC # Filtered</font></em>      </p>
<p>3. Email from to who responded to the Craigslist:</p>
<p><em><font color="#004080">Hello Dear,</font></em></p>
<p><em><font color="#004080">Calvary greetings to you,also to your house hold..Thanks for the email and it is my gladness&#160; hearing from you.i am the owner of the house you are making enquiry of.Actually I&#160; resided in the house with my family,such as my wife and my only daugther before and presently we had packed due to my transfer from my working place and now situated in the (West Africa Nigeria) and presently my house is still available for rent ..including the utilities like hydro,washerand security,it is furnised but&#160; if u which to move in with your furnishes no problem..          <br />Pls i want you to note that,i am a kind and honest&#160; man and also i spent alot on my property that i want to give you for rent,i will want you to take absolute maintenance of my house and want you to treat it as your own,i,it is not the money the main problem&#160; but i want you to keep it tidy all the time so that i will be glad&#160; to see it neat when i come for a check up.          <br />&#160; <br />SO IF YOU ARE REALY INTRESTED I WILL WANT YOU TO FILL THE&#160; RENTAPPLICATIONS FORMS BELOW          <br />RENT APPLICATION FORM          <br />&#160; <br />Also,Pls let me get this answer.          <br />&#160; <br />FIRST NAME:__________________          <br />MIDDLE NAME: _________________          <br />LAST NAME: __________________          <br />PROFESSION: ________________          <br />HOME PHONE (____) __________          <br />(CELL)PHONE (____) __________          <br />(WORK)PHONE (____) __________          <br />KIDS _____ (YES/NO), HOW MANY ________          <br />PRESENT ADDRESS: _____________________          <br />CITY: _______________          <br />STATE: ______________          <br />ZIPCODE: ____________          <br />HOW LONG DO YOU INTEND STAYING? ____________          <br />WHEN DO YOU INTEND MOVING IN? ______________          <br />HOW SOON CAN YOU HAVE THE DEPOSIT PAYMENT SENT TO ME___________________________          <br />HOW SOON DO YOU WANT TO RECEIVE THE KEYS AND DOCUMETS OF THE HOUSE___________________________          <br />DO YOU HAVE A PET: _____________          <br />NAME OF PET: _____________          <br />KIND OF PETS: _____________          <br />DO YOU SMOKE? ______________          <br />DO YOU DRINK? ______________          <br />Looking forward to hear from you with all this details so that i can have it in my file incase of issuing the receipt for you and contacting you.Await your urgent reply so that we can discuss on how to get the document and the key to you,Note that the keys and documents of my house is with me here in west africa.please we are giving you the house base on trust and again i will want you to stick to your words,you know that,we do not see yet and only putting everything into Gods hand,so please do notl et us down in this our property and God bless you more as you do this..</font></em></p>
<p><em><font color="#004080">You will only be able to drive by the house for now but not have a look at the interior until i have sent the keys and documents of the house to you..and the requirement for getting the keys and documents of the house is a fully refundable payment of $700 USD,which is the <span style="border-bottom:rgb(0,102,204) 1px dashed;">security deposit</span>. Please note that the deposit made is fully refundable should in case you finally gain entrance into the house after receiving the keys and documents and feel unsatisfied or uncomfortable with the interior,but i am giving you a benefit of doubt that you will love everything about this lovely home..</font></em></p>
<p><em><font color="#004080">PLEASE NOTE THAT YOUR RENT ONLY STARTS COUNTING AFTER YOU HAVE FINALLY MOVED INTO THE HOUSE, SO YOU NEED NOT TO WORRY ABOUT MAKING THE DEPOSIT PAYMENT NOW AND NOT MOVING IN IMMEDIATELY,ALL YOU&#8217;RE DOING IS SECURING THE HOUSE IN YOUR FAVOR IN ORDER NOT TO LOOSE IT TO OTHER INTERESTED APPLICANTS..</font></em></p>
<p><em><font color="#004080">YOU CAN CONTACT ME ON +234-<span style="border-bottom:rgb(0,102,204) 1px dashed;">808-398-0705</span>&#160; Or&#160; 011-234-808-398-0705.          <br />Thanks And God Bless You</font></em></p>
</blockquote>
Posted in Family, Personal Tagged: Fake Scam House Apartment Rental <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=106&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2009/04/08/fake-house-rental-ad-in-craigslist/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>
	</item>
		<item>
		<title>Samsung Omnia &#8211; Verizon Wireless</title>
		<link>http://vontlin.wordpress.com/2009/04/02/samsung-omnia-verizon-wireless/</link>
		<comments>http://vontlin.wordpress.com/2009/04/02/samsung-omnia-verizon-wireless/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 12:54:31 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Mobile Phone Entertainment]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2009/04/02/samsung-omnia-verizon-wireless/</guid>
		<description><![CDATA[I recently changed my phone  to Samsung Omnia, amazingly it  has lot of cool features and performs decently without disappointing too much.
What is good.

Phone with a laptop style mouse, comes handy when it is hard  to press keys in virtual keyboard
Side bar like in VISTA – another  cool feature, comes handy with limited widgets!!!
FM Radio
About [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=102&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently changed my phone  to Samsung Omnia, amazingly it  has lot of cool features and performs decently without disappointing too much.</p>
<p>What is good.</p>
<ol>
<li>Phone with a laptop style mouse, comes handy when it is hard  to press keys in virtual keyboard</li>
<li>Side bar like in VISTA – another  cool feature, comes handy with limited widgets!!!</li>
<li>FM Radio</li>
<li>About 4 types  of virtual keyboards, not all the best.. but once you get used to it, can’t complain much</li>
<li>WIFI – I think this is windows mobile – very easy to configure and pops up whenever it finds a network</li>
<li>Opera browser is nice, but  it is  much better with <a href="http://www.skyfire.com">www.skyfire.com</a>  &#8211; generally on any windows  mobile</li>
<li>Camera – never had  such a good experience in a Phone camera before.. really nice.. see some pictures I took</li>
</ol>
<p>this is a one click – point and shoot panorama photo without much effort..</p>
<div id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:b9e95191-e430-4976-853d-d9c6f7391847" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;"><a href="http://cid-9737ca4b9a9bb7bc.skydrive.live.com/redir.aspx?page=browse&amp;resid=9737CA4B9A9BB7BC!1008&amp;ct=photos"><img style="border:0;" src="http://vontlin.files.wordpress.com/2009/04/inlinerepresentationddf5e0ed16d44c24bb7ecbae3116ab61.jpg" alt="View Omnia Photos" /></a></div>
<div style="text-align:right;width:703px;"><a href="http://cid-9737ca4b9a9bb7bc.skydrive.live.com/redir.aspx?page=browse&amp;resid=9737CA4B9A9BB7BC!1008&amp;ct=photos">View Full Album</a></div>
<p> </p>
<p>What is not good!</p>
<ol>
<li>GPS – I wish it worked better without having to disconnect my phone/broadband – and again, when i do it doesn’t work with google maps or Live Search</li>
<li>Even after selecting  not to notify on a wireless network, it keeps notifying – little  annoying</li>
<li>Battery Life – it was good until i  configured my email, once i configured my email to check every 5 minutes. i have to recharge twice a day – this is again depends on individual user preference</li>
<li>FM Radio doesn’t work on Bluetooth stereo headset</li>
</ol>
Posted in Family, Personal, Phone, Video Tagged: Mobile Phone Entertainment <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=102&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2009/04/02/samsung-omnia-verizon-wireless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2009/04/inlinerepresentationddf5e0ed16d44c24bb7ecbae3116ab61.jpg" medium="image">
			<media:title type="html">View Omnia Photos</media:title>
		</media:content>
	</item>
		<item>
		<title>Searching through Stored procedure code using TSQL script</title>
		<link>http://vontlin.wordpress.com/2009/02/02/searching-through-stored-procedure-code-using-tsql-script/</link>
		<comments>http://vontlin.wordpress.com/2009/02/02/searching-through-stored-procedure-code-using-tsql-script/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 17:40:07 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[SQL Express Programming]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[sp_helptext]]></category>
		<category><![CDATA[SQL Express 2005 Programming]]></category>
		<category><![CDATA[SQL Express 2008]]></category>
		<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[TSQL]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2009/02/02/searching-through-stored-procedure-code-using-tsql-script/</guid>
		<description><![CDATA[Even if you have a refactoring tool, sometimes i wonder what are all the storedprocedures that uses this table that starts with ‘products_’&#160; or ‘system_’… or all the tables that have a column name ‘status_id’…. 
so here is the script that scans all the stored procedure code, and check if the table name is found
Note&#160; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=100&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Even if you have a refactoring tool, sometimes i wonder what are all the storedprocedures that uses this table that starts with ‘products_’&#160; or ‘system_’… or all the tables that have a column name ‘status_id’…. </p>
<p>so here is the script that scans all the stored procedure code, and check if the table name is found</p>
<p>Note&#160; —this will also return if the table name is in the comment too.. so the logic is, even if you want to search any text (comment) in a stored procedure</p>
<p>&#160;</p>
<p>&#160;</p>
<p> <font color="#008000" size="2"><font color="#008000" size="2">
</p>
<p>   </font></font><font color="#008000" size="2"><font color="#008000" size="2"><font color="#008000" size="2"><font color="#008000" size="2">
<ol>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; Parameters</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
</ol>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DECLARE</font></font><font color="#000000" size="2"> @tableNameLike </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">VARCHAR</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">100</font><font color="#808080" size="2"><font color="#808080" size="2">),</font></font><font color="#000000" size="2"> @columnNameLike </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">VARCHAR</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">100</font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8211; Filter only stored procedures that uses that table(s) and (optionaly) if it has a column </div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SET</font></font><font color="#000000" size="2"> @tableNameLike </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2"> </font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;enterYourTableName%&#8217;</font></font><font color="#000000" size="2"> </font><font color="#008000" size="2"><font color="#008000" size="2">&#8212; If you have organized all your tables with </font></font></div>
</li>
<p>         </font></font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8212; standard prefix, will be useful to filter</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SET</font></font><font color="#000000" size="2"> @columnNameLike </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2"> </font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;enterYourColumnName%&#8217;</font></font><font color="#000000" size="2"> </font><font color="#008000" size="2"><font color="#008000" size="2">&#8212; Only if the table has this column</font></font></div>
</li>
<p>         </font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; Local Variables </div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DECLARE</font></font><font color="#000000" size="2"> @spname </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">VARCHAR</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">100</font><font color="#808080" size="2"><font color="#808080" size="2">),</font></font><font color="#000000" size="2">@TABLEname </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">VARCHAR</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">100</font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DECLARE</font></font><font color="#000000" size="2"> @spnames </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">TABLE</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">spname </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">VARCHAR</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">100</font><font color="#808080" size="2"><font color="#808080" size="2">))</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DECLARE</font></font><font color="#000000" size="2"> @EXISTS </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font><font size="2"><font color="#000000"> </font></font></div>
</li>
<p>         </font></font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DECLARE</font></font><font color="#000000" size="2"> @sp_start </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2"> @sp_END </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2">@t_start </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2"> @t_END </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2">@sp_INdex </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2"> @t_INdex </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INT</font></font></div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; DROP before Creating Temporary Tables</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">IF</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">EXISTS</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"> tempdb</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">dbo</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">sysobjects o</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">xtype </font><font color="#808080" size="2"><font color="#808080" size="2">IN</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;U&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#808080" size="2"><font color="#808080" size="2">AND</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">id </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">object_id</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">N</font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;tempdb..#spnames&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>       </font><font color="#808080" size="2"><font color="#808080" size="2">
<li>
<div align="left">)</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DROP</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">TABLE</font></font><font size="2"><font color="#000000"> #spnames</font></font></div>
</li>
<p>         </font></font><font size="2"><font color="#000000"></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">IF</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">EXISTS</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"> tempdb</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">dbo</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">sysobjects o</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">xtype </font><font color="#808080" size="2"><font color="#808080" size="2">IN</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;U&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#808080" size="2"><font color="#808080" size="2">AND</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">id </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">object_id</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">N</font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;tempdb..#TABLEnames&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>       </font><font color="#808080" size="2"><font color="#808080" size="2">
<li>
<div align="left">)</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DROP</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">TABLE</font></font><font size="2"><font color="#000000"> #TABLEnames</font></font></div>
</li>
<p>         </font></font><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8211; Get all the Stored procedure names</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font color="#000000" size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">row_number</font></font><font color="#808080" size="2"><font color="#808080" size="2">()</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">OVER</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">ORDER</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">BY</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">name</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">AS</font></font><font color="#000000" size="2"> rownum</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">name</font></font><font size="2"><font color="#000000"> </font></font></div>
</li>
<p>         </font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INTO</font></font><font size="2"> #spnames</font></div>
</li>
<p>       </font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font color="#000000" size="2"> </font><font color="#008000" size="2"><font color="#008000" size="2">sys.objects</font></font></div>
</li>
<p>         </font></font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">type</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;P&#8217;</font></font></div>
</li>
<p>       </font><font color="#ff0000" size="2"><font color="#ff0000" size="2"></font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8211; Get all the table names that passes the filter parameter</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font color="#000000" size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">row_number</font></font><font color="#808080" size="2"><font color="#808080" size="2">()</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">OVER</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">ORDER</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">BY</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">name</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">AS</font></font><font color="#000000" size="2"> rownum</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">name</font></font></div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INTO</font></font><font size="2"> #TABLEnames</font></div>
</li>
<p>       </font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"><font color="#000000"> </font></font></div>
</li>
<p>         </font></font><font size="2">
<li>
<div align="left">sysobjects T</div>
</li>
<p>       </font><font color="#808080" size="2"><font color="#808080" size="2">
<li>
<div align="left">JOIN</div>
</li>
<p>         </font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">INformation_schema.columns</font></font><font size="2"> C</font></div>
</li>
<p>       </font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left">on</div>
</li>
<p>         </font></font><font size="2">
<li>
<div align="left"><font size="2">C</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">TABLE_NAME </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> T</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">name</font></div>
</li>
<p>       </font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font color="#000000" size="2"> T</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font color="#000000" size="2">name </font><font color="#808080" size="2"><font color="#808080" size="2">like</font></font><font color="#000000" size="2"> @tableNameLike </font><font color="#808080" size="2"><font color="#808080" size="2">AND</font></font><font color="#000000" size="2"> T</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font color="#000000" size="2">xtype </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2"> </font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;U&#8217;</font></font></div>
</li>
<p>         </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2"></font></font><font color="#808080" size="2"><font color="#808080" size="2">
<li>
<div align="left"><font color="#808080" size="2"><font color="#808080" size="2">AND</font></font><font color="#000000" size="2"> C</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font color="#000000" size="2">column_name </font><font color="#808080" size="2"><font color="#808080" size="2">like</font></font><font size="2"><font color="#000000"> @columnNameLike</font></font></div>
</li>
<p>         </font></font><font size="2"><font color="#000000"></font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8211; SELECT * FROM #spnames</div>
</li>
<li>
<div align="left">&#8211; SELECT * FROM #TABLEnames</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; Get and Set Loop Index</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font color="#000000" size="2"> @sp_start </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2"> 1</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2">@sp_END </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">max</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">rownum</font><font color="#808080" size="2"><font color="#808080" size="2">)+</font></font><font size="2"><font color="#000000">1 </font></font></div>
</li>
<p>         </font></font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"><font color="#000000"> #spnames</font></font></div>
</li>
<p>         </font></font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font color="#000000" size="2"> @t_start </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2">1</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font color="#000000" size="2">@t_END </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font color="#000000" size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">max</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#000000" size="2">rownum</font><font color="#808080" size="2"><font color="#808080" size="2">)+</font></font><font color="#000000" size="2">1 </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"><font color="#000000"> #TABLEnames</font></font></div>
</li>
<p>         </font></font><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8211; SELECT @sp_Start,@sp_END,@t_start,@t_END</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; Loop through each stored procedure name</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">while</font></font><font color="#000000" size="2"> @sp_start </font><font color="#808080" size="2"><font color="#808080" size="2">&lt;</font></font><font size="2"><font color="#000000"> @sp_END</font></font></div>
</li>
<p>         </font></font><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left">BEGIN</div>
</li>
<p>         </font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Get the stored procedure name</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> @spname </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> [name]</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font></div>
</li>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left">#spnames</div>
</li>
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> rownum </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> @sp_start</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Loop through each tablename to check if it is used in the stored procedure code</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">while</font></font><font size="2"> @t_start </font><font color="#808080" size="2"><font color="#808080" size="2">&lt;</font></font><font size="2"> @t_END</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">BEGIN</font></font></div>
</li>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Get the table name</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> @TABLEname </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> [name]</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font></div>
</li>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left">#TABLEnames</div>
</li>
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2">rownum </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> @t_start</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Check if the table name exists in the stored procedure code</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; I am using the SUM(CHARINDEX(xxx)) since the stored procedure code may span</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; multiple rows</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> @EXISTS </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">SUM</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">CHARINDEX</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">@TABLEname</font><font color="#808080" size="2"><font color="#808080" size="2">,</font></font><font size="2">[text]</font><font color="#808080" size="2"><font color="#808080" size="2">))</font></font><font size="2"> </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"> syscomments </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> id </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">object_id</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">@spname</font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>       </font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; If it is greater than zero then it is used in the stored procedure code</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">IF</font></font><font size="2"> @EXISTS </font><font color="#808080" size="2"><font color="#808080" size="2">&gt;</font></font><font size="2"> 0 </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">BEGIN</font></font></div>
</li>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INSERT</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">INTO</font></font><font size="2"> @spnames</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> @spname</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">END</font></font></div>
</li>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SET</font></font><font size="2"> @t_start </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> @t_start</font><font color="#808080" size="2"><font color="#808080" size="2">+</font></font><font size="2">1 </font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Increment the table index</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">END</font></font></div>
</li>
<p>       </font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SET</font></font><font size="2"> @sp_start </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> @sp_start</font><font color="#808080" size="2"><font color="#808080" size="2">+</font></font><font size="2">1 </font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Increment the storedprocedure index</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SET</font></font><font size="2"> @t_start </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> 1 </font><font color="#008000" size="2"><font color="#008000" size="2">&#8211; Reset the table index</font></font></div>
</li>
<p>       </font><font color="#008000" size="2"><font color="#008000" size="2"></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left">END</div>
</li>
<p>         </font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; To list all the spnames (remember there will be duplicates)</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">DISTINCT</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"><font color="#000000"> @spnames</font></font></div>
</li>
<p>         </font></font><font size="2"><font color="#000000"></font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; Drop the temporary tables</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">IF</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">EXISTS</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"> tempdb</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">dbo</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">sysobjects o</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">xtype </font><font color="#808080" size="2"><font color="#808080" size="2">IN</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;U&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#808080" size="2"><font color="#808080" size="2">AND</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">id </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">object_id</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">N</font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;tempdb..#spnames&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>       </font><font color="#808080" size="2"><font color="#808080" size="2">
<li>
<div align="left">)</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DROP</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">TABLE</font></font><font size="2"><font color="#000000"> #spnames</font></font></div>
</li>
<p>         </font></font><font size="2"><font color="#000000"></font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">IF</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">EXISTS</font></font><font color="#000000" size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font></div>
</li>
<p>         </font></font><font color="#808080" size="2"><font color="#808080" size="2"></font></font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">SELECT</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">*</font></font><font size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">FROM</font></font><font size="2"> tempdb</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">dbo</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">sysobjects o</font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">WHERE</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">xtype </font><font color="#808080" size="2"><font color="#808080" size="2">IN</font></font><font size="2"> </font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;U&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font><font size="2"> </font></div>
</li>
<p>       </font><font size="2">
<li>
<div align="left"><font size="2"></font><font color="#808080" size="2"><font color="#808080" size="2">AND</font></font><font size="2"> o</font><font color="#808080" size="2"><font color="#808080" size="2">.</font></font><font size="2">id </font><font color="#808080" size="2"><font color="#808080" size="2">=</font></font><font size="2"> </font><font color="#ff00ff" size="2"><font color="#ff00ff" size="2">object_id</font></font><font color="#808080" size="2"><font color="#808080" size="2">(</font></font><font size="2">N</font><font color="#ff0000" size="2"><font color="#ff0000" size="2">&#8216;tempdb..#TABLEnames&#8217;</font></font><font color="#808080" size="2"><font color="#808080" size="2">)</font></font></div>
</li>
<p>       </font><font color="#808080" size="2"><font color="#808080" size="2">
<li>
<div align="left">)</div>
</li>
<p>         </font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">
<li>
<div align="left"><font color="#0000ff" size="2"><font color="#0000ff" size="2">DROP</font></font><font color="#000000" size="2"> </font><font color="#0000ff" size="2"><font color="#0000ff" size="2">TABLE</font></font><font size="2"><font color="#000000"> #TABLEnames</font></font></div>
</li>
<p>         </font></font><font size="2"><font color="#000000"></font></font><font color="#008000" size="2"><font color="#008000" size="2">
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<li>
<div align="left">&#8211; END</div>
</li>
<li>
<div align="left">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
</li>
<p>         </font>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:1a150331-339d-4f12-acb8-73f808a34650" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=TSQL+Stored+procedure+SQL+Server+2005%2f2008+programming" rel="tag">TSQL Stored procedure SQL Server 2005/2008 programming</a></div>
<p>       </font></font></font></font></p>
Posted in Software Development, SQL Express Programming Tagged: sp_helptext, SQL Express 2005 Programming, SQL Express 2008, SQL SERVER, TSQL <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=100&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2009/02/02/searching-through-stored-procedure-code-using-tsql-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>
	</item>
		<item>
		<title>TSQL String Range Comparison with wildcard</title>
		<link>http://vontlin.wordpress.com/2009/01/27/tsql-string-range-comparison-with-wildcard/</link>
		<comments>http://vontlin.wordpress.com/2009/01/27/tsql-string-range-comparison-with-wildcard/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 22:27:54 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[SQL Express Programming]]></category>
		<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[STRING RANGE]]></category>
		<category><![CDATA[TSQL]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2009/01/27/tsql-string-range-comparison-with-wildcard/</guid>
		<description><![CDATA[A simple note, and couldn’t find straight answer when i googled!!. so here it is.. 
This is to get result from a table when filtering in string ranges that will have a wild card for ex: ‘*’
declare @sv varchar(17),@ev varchar(17)    declare @sindex int, @eindex int 
set @sv = &#8216;ABCDE11A09&#8242;    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=98&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A simple note, and couldn’t find straight answer when i googled!!. so here it is.. </p>
<p>This is to get result from a table when filtering in string ranges that will have a wild card for ex: ‘*’</p>
<p>declare @sv varchar(17),@ev varchar(17)    <br />declare @sindex int, @eindex int </p>
<p>set @sv = &#8216;ABCDE11A09&#8242;    <br />set @ev = &#8216;ABCDE11A79&#8242; </p>
<p>&#8211; Check the * pos if exists,if doesn&#8217;t exists return the len +1 , assuming the * at the last    <br />select @sindex = case when charindex(&#8216;*&#8217;,@sv)&gt; 0 then charindex(&#8216;*&#8217;,@sv) else len(@sv)+1 end     <br />select @eindex = case when charindex(&#8216;*&#8217;,@ev)&gt; 0 then charindex(&#8216;*&#8217;,@ev) else len(@ev)+1 end </p>
<p>&#8211; remove the * from the range strings    <br />select @sv = case when charindex(&#8216;*&#8217;,@sv)&gt; 0 then substring(@sv,0,@sindex) else @sv&#160; end     <br />select @ev = case when charindex(&#8216;*&#8217;,@ev)&gt; 0 then substring(@ev,0,@eindex) else @ev&#160; end </p>
<p>select @sindex,@eindex,@sv,@ev    <br />select mycolumn,substring(VIN,0,@sindex), substring(VIN,0,@eindex) from mytable     <br />where     <br />&#160;&#160;&#160; substring(mycolumn,0,@sindex) &gt;= @sv AND     <br />&#160;&#160;&#160; substring(mycolumn,0,@eindex) &lt;= @ev     <br />ORDER BY mycolumn</p>
</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:601be2fc-1756-433f-b639-56f2606cf8dd" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=TSQL" rel="tag">TSQL</a>,<a href="http://blogs.icerocket.com/search?q=SQL+SERVER" rel="tag">SQL SERVER</a>,<a href="http://blogs.icerocket.com/search?q=Programming" rel="tag">Programming</a></div>
Posted in SQL Express Programming Tagged: SQL SERVER, STRING RANGE, TSQL <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=98&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2009/01/27/tsql-string-range-comparison-with-wildcard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>
	</item>
		<item>
		<title>My Old Photos</title>
		<link>http://vontlin.wordpress.com/2008/12/24/my-old-photos/</link>
		<comments>http://vontlin.wordpress.com/2008/12/24/my-old-photos/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 21:59:58 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Friends]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2008/12/24/my-old-photos/</guid>
		<description><![CDATA[I just happened to find my old geocities - my first website.. and all the photos i had .. i guess about 9 years ago…
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Kottayam (Kerala, India) Photos

View Full Album

 

In Madurai (India), 1994
 
 
 
 
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;

At Kodaikanal (India), 1999
With my MCA Classmates&#8230;
Here my friends of MCA &#8211; Madras Christian College..
Suresh, Parthasarathy, Ruban, Rajkumar, Paul, Sivakumar, Gladson, David, Mallik, Ashok, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=83&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just happened to find my old geocities - my first website.. and all the photos i had .. i guess about 9 years ago…</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Kottayam (Kerala, India) Photos</p>
<div id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:17ef5982-cb97-424f-97c8-c024f4e7e904" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;"><a href="http://cid-9737ca4b9a9bb7bc.skydrive.live.com/redir.aspx?page=browse&amp;resid=9737CA4B9A9BB7BC!879&amp;ct=photos"><img style="border:0;" src="http://vontlin.files.wordpress.com/2008/12/inlinerepresentation1c54c3d204b94cb5960026f891187b5f.jpg" alt="View Kottayam, Kerala, India - on Paul's brother marriage" /></a></p>
<div style="text-align:right;width:669px;"><a href="http://cid-9737ca4b9a9bb7bc.skydrive.live.com/redir.aspx?page=browse&amp;resid=9737CA4B9A9BB7BC!879&amp;ct=photos">View Full Album</a></div>
</div>
<p> </p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/itzme.jpg"><img style="display:inline;margin-left:0;margin-right:0;border-width:0;" title="itzme" src="http://vontlin.files.wordpress.com/2008/12/itzme-thumb.jpg" border="0" alt="itzme" width="244" height="167" align="left" /></a></p>
<p>In Madurai (India), 1994</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/myclassmates1.jpg"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="myclassmates" src="http://vontlin.files.wordpress.com/2008/12/myclassmates-thumb1.jpg" border="0" alt="myclassmates" width="644" height="450" /></a></p>
<p><strong>At Kodaikanal (India), 1999</strong></p>
<p><strong>With my MCA Classmates&#8230;</strong><br />
<strong>Here my friends of MCA &#8211; Madras Christian College..</strong><br />
<strong>Suresh, Parthasarathy, Ruban, Rajkumar, Paul, Sivakumar, Gladson, David, Mallik, Ashok, Sarangan, Damu, Daniel, Prem</strong></p>
<p><strong>Angela Fransica, Naju, Gigy, Golda, Shirin, Nisha, Deanne, Beulah, Ida, Chitra, Nalini, Sujatha, Rajalakshmi, Subhashini, Nathira, Annie, Mahalakshmi, Queeny, Sheeba, Leena</strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/myugclassmates1.jpg"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="myugclassmates" src="http://vontlin.files.wordpress.com/2008/12/myugclassmates-thumb1.jpg" border="0" alt="myugclassmates" width="644" height="473" /></a></p>
<p><strong>Madurai (India), 1993</strong></p>
<p><strong>Here my friends &#8211; Bsc Physics- Sourashtra College Madurai ..</strong><br />
<strong>Surendranath, Balaji, Kishore, Navin, Senthil, Venkatesh C.R., Venkatesh S.S, Pathanjali,</strong><br />
<strong>Karthic Babu, Manikandan, Karthikeyan, ManickaRaj, Pathanjali, Santhanakrishnan, Sanjay&#8230;    Sheela, Rohini, Aarthy, Roopa, Eswari, Padma, Lalitha, Vanitha, Sujatha, Sujitha, Vimala</strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p> </p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/naju.jpg"><img style="display:inline;margin-left:0;margin-right:0;border-width:0;" title="Naju" src="http://vontlin.files.wordpress.com/2008/12/naju-thumb.jpg" border="0" alt="Naju" width="244" height="207" align="left" /></a> This is with Naju and Arun!</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/myhallroom1.jpg"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="myhallroom" src="http://vontlin.files.wordpress.com/2008/12/myhallroom-thumb1.jpg" border="0" alt="myhallroom" width="622" height="484" /></a></p>
<p><strong>and here my Room in the Selaiyur hall (MCC) with Ajit abraham and Arun Thomas</strong></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/selaiyur1.jpg"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="selaiyur" src="http://vontlin.files.wordpress.com/2008/12/selaiyur-thumb1.jpg" border="0" alt="selaiyur" width="644" height="422" /></a></p>
<p> </p>
<p>This is infront of the Selaiyur hall with Arularasn sitting on the rock, arul sekar standing behind him and our college Michel Jackson hanging on the tree.</p>
<p>  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/katans21.jpg"><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="Katans2" src="http://vontlin.files.wordpress.com/2008/12/katans2-thumb1.jpg" border="0" alt="Katans2" width="644" height="354" /></a></p>
<p>Selaiyur – Katans &#8212; My Hall mates &#8211; Selaiyur Hall, MCC.</p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2001b644-52cf-422e-bd0c-d11f2eb92a22" class="wlWriterEditableSmartContent" style="display:inline;float:none;margin:0;padding:0;">IceRocket Tags: <a rel="tag" href="http://blogs.icerocket.com/search?q=Friends">Friends</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Personal">Personal</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Family">Family</a></div>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p> </p>
<p><a href="http://vontlin.files.wordpress.com/2008/12/landsec1.jpg"><img style="display:inline;margin-left:0;margin-right:0;border-width:0;" title="landsec1" src="http://vontlin.files.wordpress.com/2008/12/landsec1-thumb.jpg" border="0" alt="landsec1" width="244" height="161" align="left" /></a> In PSI Data Systems!!!</p>
<p> </p>
<p><img src="http://visit.geocities.com/visit.gif?&amp;r=http%3A//geocities.com/sriprabu/myclassmates.html&amp;b=Microsoft%20Internet%20Explorer%204.0%20%28compatible%3B%20MSIE%208.0%3B%20Windows%20NT%206.0%3B%20WOW64%3B%20Trident/4.0%3B%20SLCC1%3B%20.NET%20CLR%202.0.50727%3B%20Media%20Center%20PC%205.0%3B%20.NET%20CLR%203.5.21022%3B%20.NET%20CLR%203.5.30729%3B%20.NET%20CLR%203.0.30618%3B%20InfoPath.2%3B%20OfficeLiveConnector.1.3%3B%20OfficeLivePatch.0.0%29&amp;s=1280x800&amp;o=Win32&amp;c=32&amp;j=true&amp;v=1.2" border="0" alt="" /> <img src="http://geo.yahoo.com/serv?s=76001055&amp;t=1230153845&amp;f=us-w69" alt="1" width="1" height="1" /></p>
<p> </p>
<p> </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
Posted in Family, Personal Tagged: Family, Friends, Personal <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=83&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2008/12/24/my-old-photos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/inlinerepresentation1c54c3d204b94cb5960026f891187b5f.jpg" medium="image">
			<media:title type="html">View Kottayam, Kerala, India - on Paul's brother marriage</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/itzme-thumb.jpg" medium="image">
			<media:title type="html">itzme</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/myclassmates-thumb1.jpg" medium="image">
			<media:title type="html">myclassmates</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/myugclassmates-thumb1.jpg" medium="image">
			<media:title type="html">myugclassmates</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/naju-thumb.jpg" medium="image">
			<media:title type="html">Naju</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/myhallroom-thumb1.jpg" medium="image">
			<media:title type="html">myhallroom</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/selaiyur-thumb1.jpg" medium="image">
			<media:title type="html">selaiyur</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/katans2-thumb1.jpg" medium="image">
			<media:title type="html">Katans2</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/12/landsec1-thumb.jpg" medium="image">
			<media:title type="html">landsec1</media:title>
		</media:content>

		<media:content url="http://visit.geocities.com/visit.gif?&#38;r=http%3A//geocities.com/sriprabu/myclassmates.html&#38;b=Microsoft%20Internet%20Explorer%204.0%20%28compatible%3B%20MSIE%208.0%3B%20Windows%20NT%206.0%3B%20WOW64%3B%20Trident/4.0%3B%20SLCC1%3B%20.NET%20CLR%202.0.50727%3B%20Media%20Center%20PC%205.0%3B%20.NET%20CLR%203.5.21022%3B%20.NET%20CLR%203.5.30729%3B%20.NET%20CLR%203.0.30618%3B%20InfoPath.2%3B%20OfficeLiveConnector.1.3%3B%20OfficeLivePatch.0.0%29&#38;s=1280x800&#38;o=Win32&#38;c=32&#38;j=true&#38;v=1.2" medium="image" />

		<media:content url="http://geo.yahoo.com/serv?s=76001055&#38;t=1230153845&#38;f=us-w69" medium="image">
			<media:title type="html">1</media:title>
		</media:content>
	</item>
		<item>
		<title>DLINK Media Lounge with Media Mall (PlayOn)</title>
		<link>http://vontlin.wordpress.com/2008/10/25/dlink-media-lounge-with-media-mall-playon/</link>
		<comments>http://vontlin.wordpress.com/2008/10/25/dlink-media-lounge-with-media-mall-playon/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 12:37:06 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[DLINK 520]]></category>
		<category><![CDATA[Home Online Video]]></category>
		<category><![CDATA[Hulu]]></category>
		<category><![CDATA[NetFlix]]></category>
		<category><![CDATA[PlayOn]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2008/10/25/dlink-media-lounge-with-media-mall-playon/</guid>
		<description><![CDATA[I signed up a beta service on The Media Mall to watch NetFlix (www.netflix.com) on the XBox, since I also have a DLINK DSM-520, I thought i will give a try!. First off, for my long waiting, this is an wonderful experience. I had to move all my wireless to the wired setting, otherwise there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=58&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I signed up a beta service on <a href="http://www.themediamall.com" target="_blank">The Media Mall</a> to watch <a href="http://www.netflix.com/" target="_blank">NetFlix</a> (<a href="http://www.netflix.com">www.netflix.com</a>) on the XBox, since I also have a <a href="http://www.dlink.com/products/?pid=438" target="_blank">DLINK DSM-520</a>, I thought i will give a try!. First off, for my long waiting, this is an wonderful experience. I had to move all my wireless to the wired setting, otherwise there is a pause every few seconds, it makes for a the quality of video i was getting ranging from 5mbs to 7mbps, (yes you will need at least 6 Mbps Internet bandwidth).</p>
<p>Ok for someone who doesn&#8217;t know what I am talking about, I have Netflix account to get one movie at a time for about $9, and also I get the online video service, which i can watch unlimited movies anytime. I have been watching TV Series and movies, connecting my laptop HDMI to the 50&#8243; Plasma (Home theater). well using the laptop is not bad using a wireless keyboard (built-in mouse), but it is not as convenient as using a conventional remote.</p>
<p>Now, with the <a href="http://www.themediamall.com/playon" target="_blank">Media Mall PlayOn</a>, I can run this PlayOn software on the PC on my home network, and the DSM 520 automatically detects and shows the list of my favorite movies in my NetFlix account, and again this <a href="http://www.dlink.com/products/?pid=438" target="_blank">DSM 520</a> is part of my home theater setup with HDMI and a simple to use Remote. Now I can watch video from <a href="http://www.hulu.com" target="_blank">Hulu</a>, CBS etc.</p>
<p><a href="http://vontlin.files.wordpress.com/2008/10/image.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/10/image-thumb.png?w=244&#038;h=217" border="0" alt="image" width="244" height="217" /></a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f560d632-5f64-40af-9a53-4b962b24a9d5" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">IceRocket Tags: <a rel="tag" href="http://blogs.icerocket.com/search?q=DSM%20520">DSM 520</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Media%20Lounge">Media Lounge</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=NetFlix">NetFlix</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Hulu">Hulu</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Home%20Online%20Video">Home Online Video</a></div>
Posted in Entertainment, Video Tagged: DLINK 520, Home Online Video, Hulu, NetFlix, PlayOn <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=58&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2008/10/25/dlink-media-lounge-with-media-mall-playon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/10/image-thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing SQL Server 2008 Express with Advanced Services</title>
		<link>http://vontlin.wordpress.com/2008/09/26/installing-sql-server-2008-express-with-advanced-services/</link>
		<comments>http://vontlin.wordpress.com/2008/09/26/installing-sql-server-2008-express-with-advanced-services/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 18:14:28 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[DTS]]></category>
		<category><![CDATA[SQL Express 2008]]></category>
		<category><![CDATA[TSQL Programming]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2008/09/26/installing-sql-server-2008-express-with-advanced-services/</guid>
		<description><![CDATA[My First Impression
Even if you don&#8217;t upgrade your older SQL database (2000 or 2005) to SQL Server 2008 Express, I see lot of benefits using the new SQL Management Studio that comes part of the SQL Server 2008 Express. The New Management is free and backwards compatible with older SQL Servers.
The Advanced Services also includes the Reporting Services and Visual [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=52&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My First Impression</p>
<p>Even if you don&#8217;t upgrade your older SQL database (2000 or 2005) to SQL Server 2008 Express, I see lot of benefits using the new SQL Management Studio that comes part of the SQL Server 2008 Express. The New Management is free and backwards compatible with older SQL Servers.</p>
<p>The Advanced Services also includes the Reporting Services and Visual Studio (SQL Server Business Intelligence Studio) for developing reports.</p>
<p><a href="http://vontlin.files.wordpress.com/2008/09/image.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/09/image-thumb.png?w=455&#038;h=139" border="0" alt="image" width="455" height="139" /></a></p>
<h2>Code Completion</h2>
<p>This is very good compare to nothing, but I still feel it could have been better, may be the basic feature limitation.. the code completion appears only on the TSQL Statements, I mean it could be nice if I type SET and shows the possible SET options like NOCOUNT ON/OFF</p>
<p><a href="http://vontlin.files.wordpress.com/2008/09/image1.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/09/image-thumb1.png?w=543&#038;h=389" border="0" alt="image" width="543" height="389" align="left" /></a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a href="http://vontlin.files.wordpress.com/2008/09/image2.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/09/image-thumb2.png?w=548&#038;h=412" border="0" alt="image" width="548" height="412" /></a></p>
<p><a href="http://vontlin.files.wordpress.com/2008/09/image3.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/09/image-thumb3.png?w=564&#038;h=425" border="0" alt="image" width="564" height="425" /></a></p>
<h2>DTS</h2>
<p>DTS is back and it is good for simple export/import, but unfortunately, we can&#8217;t save the DTS package.</p>
<p><a href="http://vontlin.files.wordpress.com/2008/09/image4.png"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/09/image-thumb4.png?w=237&#038;h=244" border="0" alt="image" width="237" height="244" align="left" /></a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5269c497-b9e2-4589-9735-b1eb5e514490" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">IceRocket Tags: <a rel="tag" href="http://blogs.icerocket.com/search?q=SQL%20Server%202008">SQL Server 2008</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=DTS">DTS</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Express">Express</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Reporting%20Services">Reporting Services</a></div>
Posted in Software Development Tagged: DTS, SQL Express 2008, TSQL Programming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=52&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2008/09/26/installing-sql-server-2008-express-with-advanced-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/09/image-thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/09/image-thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/09/image-thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/09/image-thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/09/image-thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Akshat Vontlin</title>
		<link>http://vontlin.wordpress.com/2008/08/03/akshat-vontlin/</link>
		<comments>http://vontlin.wordpress.com/2008/08/03/akshat-vontlin/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 14:48:42 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2008/08/03/akshat-vontlin/</guid>
		<description><![CDATA[Akshat, new addition to my family, born on July 30th, 5:40 PM in Houston, TX. 8 pounds, 22 inches&#8230;.

More Photos : 
IceRocket Tags: Family,children
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=37&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Akshat, new addition to my family, born on July 30th, 5:40 PM in Houston, TX. 8 pounds, 22 inches&#8230;.</p>
<p><a href="http://vontlin.files.wordpress.com/2008/08/akshat85by11.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://vontlin.files.wordpress.com/2008/08/akshat85by11-thumb.jpg?w=205&#038;h=260" border="0" alt="akshat85by11" width="205" height="260" align="left" /></a></p>
<p><a href="http://picasaweb.google.com/vontlin/Akshat">More Photos : </a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c774710c-e56d-49e4-86e7-dc0fe3ae825a" class="wlWriterSmartContent" style="display:inline;float:none;margin:0;padding:0;">IceRocket Tags: <a rel="tag" href="http://blogs.icerocket.com/search?q=Family">Family</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=children">children</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vontlin.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vontlin.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=37&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2008/08/03/akshat-vontlin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/08/akshat85by11-thumb.jpg" medium="image">
			<media:title type="html">akshat85by11</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple SCRUM with SharePoint 2007 and Outlook 2007 in Agile Product Development</title>
		<link>http://vontlin.wordpress.com/2008/07/21/simple-scrum-with-sharepoint-2007-and-outlook-2007-in-agile-product-development/</link>
		<comments>http://vontlin.wordpress.com/2008/07/21/simple-scrum-with-sharepoint-2007-and-outlook-2007-in-agile-product-development/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 05:11:24 +0000</pubDate>
		<dc:creator>vontlin</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[SCRUM]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[OUTLOOK 2007]]></category>
		<category><![CDATA[PRODUCT DEVELOPMENT]]></category>
		<category><![CDATA[SHAREPOINT 2007]]></category>

		<guid isPermaLink="false">http://vontlin.wordpress.com/2008/07/21/simple-scrum-with-sharepoint-2007-and-outlook-2007-in-agile-product-development/</guid>
		<description><![CDATA[Being in the software development for over 10 years, started working in a software service industry in the first half of my career then moving to a product development, I find myself it is a cultural change or should I say I reinvented myself many times, getting a better process or discipline on delivering Quality [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=31&subd=vontlin&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Being in the software development for over 10 years, started working in a software service industry in the first half of my career then moving to a product development, I find myself it is a cultural change or should I say I reinvented myself many times, getting a better process or discipline on delivering Quality Software on time and budget.</p>
<p>I do think every product development has to be Agile, wether you are  part of the product management or product development. You would agree, when you don’t know who is your next customer or you don’t know your next customer want. There is so much goes in a product development at least for simplicity we can say product evolves with (a) tracking the market/customer needs and (b) following Technology evolution</p>
<p>Understanding the nature of the business, and understanding the engineers and managers who involve in getting the product out, and the emotions that goes along during the changes happens that are unplanned and You as a product owner helping everyone to cope up to adopt the changes. it is a challenge and it doesn’t happen easily if you don’t have the right team. The Right team is not just a well qualified and skilled people, but it needs more than that, you will also agree you need a team full of self-responsible individuals  who respects professional ethics and trust between the team members.</p>
<p>Having tried a simple excel sheet to MS Project and writing several documents, I always wanted to keep things simple and by simple I mean, the process should evolve to meet our needs and not the other way around.</p>
<p>I always wanted to just use one single tool to communicate and coordinate and collaborate with all my team members, including product management, support and development. Common to all of us here is Outlook 2007, so I could not think of better tool to implement SCRUM and make it more effective, I wanted the information to reach to the team members instead they have to go for it to know what is changed or make an update.</p>
<p>Also I instituted the daily 5 minutes Stand up meeting – each will get about 5 minutes to state what they are going to work on today and if they need help from anyone and a weekly meeting to do recap of how it went and the plan for the next week. This really brings everyone a greater visibility of the overall picture and also makes everyone feel they are part of a team.</p>
<h2>How it Works</h2>
<p>This is a solution, you can think of it like, using as it is,  SharePoint 2007 as a back end and Outlook 2007 as a front end for all your cross functional team (sales/marketing/development/support) without writing any custom code.</p>
<p>As I started working SharePoint Server to integrate the reports Reporting Services, I started to explore and discovered the simple project tasks web part, and the “Connect to the Outlook” (you will need outlook 2007),  RSS Feed and Alert Me.</p>
<p>The important thing here to note is this integration with Outlook and ability to add RSS Feeds in Outlook and Alert Me feature.</p>
<p>By setting up the Bucket lists as a RSS Feed in your outlook, so any time, when a new item is added in the bucket lists, you will get a notification and for example, the Sales or Marketing or anyone who gets an idea or finds a need for your product, they can simply post  a new item to the bucket lists using their Outlook, without having to open the browser or searching for a link where to post. As soon as you (Product Owner) get a notification by setting the “Alert Me”, then you can analyze add minimum/required information. </p>
<p>When you assemble a Sprint/Project Tasks, developers will get an email notification as and when they get assigned to a task. And  the developers on the other hand can configure the Sprint/Project Tasks in their Outlook using “Connect to Outlook”, so they don’t have to open the browser again to update the status or get visibility of the overall status</p>
<p> </p>
<h2>PROJECT Backlog/Bucket Lists</h2>
<p>I customized the SharePoint List as a Bucket Lists as a template, so I can capture all the necessary details, as you can see below:</p>
<p><a href="http://vontlin.files.wordpress.com/2008/07/bucketlists.jpg"><img style="border-width:0;" src="http://vontlin.files.wordpress.com/2008/07/bucketlists-thumb.jpg?w=596&#038;h=538" border="0" alt="bucketlists" width="596" height="538" /></a></p>
<p> </p>
<h2>Project Tasks as SPRINT</h2>
<p>This Projects Tasks Web Part, I use it as a sprint, will show only the active tasks that are being worked</p>
<p><a href="http://vontlin.files.wordpress.com/2008/07/projecttasksinsp.jpg" target="_blank"><img style="border-width:0;" src="http://vontlin.files.wordpress.com/2008/07/projecttasksinsp-thumb.jpg?w=460&#038;h=411" border="0" alt="Project Tasks Web Part in SharePoint 2007" width="460" height="411" align="left" /></a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a href="http://vontlin.files.wordpress.com/2008/07/projectstasksganttview.jpg"><img style="border-width:0;" src="http://vontlin.files.wordpress.com/2008/07/projectstasksganttview-thumb.jpg?w=778&#038;h=459" border="0" alt="projectsTasksGanttView" width="778" height="459" /></a></p>
<p> </p>
<h2>Connect to Outlook, View RSS Feed and Alert Me</h2>
<p><a href="http://vontlin.files.wordpress.com/2008/07/projectstasksganttview.jpg"><img style="border-width:0;" src="http://vontlin.files.wordpress.com/2008/07/outllokconnectorandrss.jpg?w=962&#038;h=327" border="0" alt="outllokconnectorandRSS" width="962" height="327" /> </a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:73d14f3c-842c-4184-9c27-351d45a32fc7" class="wlWriterSmartContent" style="display:inline;float:none;margin:0;padding:0;">IceRocket Tags: <a rel="tag" href="http://blogs.icerocket.com/search?q=SCRUM">SCRUM</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Agile">Agile</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Outllook">Outllook</a>,<a rel="tag" href="http://blogs.icerocket.com/search?q=Sharepoint">Sharepoint</a></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vontlin.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vontlin.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vontlin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vontlin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vontlin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vontlin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vontlin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vontlin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vontlin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vontlin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vontlin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vontlin.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vontlin.wordpress.com&blog=3540886&post=31&subd=vontlin&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vontlin.wordpress.com/2008/07/21/simple-scrum-with-sharepoint-2007-and-outlook-2007-in-agile-product-development/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/43d1d226558e55aff8b6809022eb4f8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vontlin</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/07/bucketlists-thumb.jpg" medium="image">
			<media:title type="html">bucketlists</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/07/projecttasksinsp-thumb.jpg" medium="image">
			<media:title type="html">Project Tasks Web Part in SharePoint 2007</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/07/projectstasksganttview-thumb.jpg" medium="image">
			<media:title type="html">projectsTasksGanttView</media:title>
		</media:content>

		<media:content url="http://vontlin.files.wordpress.com/2008/07/outllokconnectorandrss.jpg" medium="image">
			<media:title type="html">outllokconnectorandRSS</media:title>
		</media:content>
	</item>
	</channel>
</rss>