<?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>Yasser Azeem&#039;s Blog</title>
	<atom:link href="http://yazeem.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://yazeem.wordpress.com</link>
	<description>Blog about programming articles</description>
	<lastBuildDate>Tue, 19 Jul 2011 10:34:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='yazeem.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Yasser Azeem&#039;s Blog</title>
		<link>http://yazeem.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://yazeem.wordpress.com/osd.xml" title="Yasser Azeem&#039;s Blog" />
	<atom:link rel='hub' href='http://yazeem.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Troubleshooting a typical Windows Azure Storage Emulator database issue</title>
		<link>http://yazeem.wordpress.com/2011/07/19/troubleshooting-a-typical-windows-azure-storage-emulator-database-issue/</link>
		<comments>http://yazeem.wordpress.com/2011/07/19/troubleshooting-a-typical-windows-azure-storage-emulator-database-issue/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 10:34:11 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
		
		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=80</guid>
		<description><![CDATA[With this information we know that we can initialize our local SQL Server default instance with the following command: dsinit /sqlInstance:.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=80&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With this information we know that we can initialize our local SQL Server default instance with the following command:</p>
<p>dsinit /sqlInstance:.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=80&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2011/07/19/troubleshooting-a-typical-windows-azure-storage-emulator-database-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding Permissions on Directory</title>
		<link>http://yazeem.wordpress.com/2011/06/30/adding-permissions-on-directory/</link>
		<comments>http://yazeem.wordpress.com/2011/06/30/adding-permissions-on-directory/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 08:15:42 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
		
		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=78</guid>
		<description><![CDATA[public void AddPermission(string absoluteFolderPath) { string name = WindowsIdentity.GetCurrent().Name; DirectoryInfo myDirectoryInfo = new DirectoryInfo(absoluteFolderPath); DirectorySecurity myDirectorySecurity = myDirectoryInfo.GetAccessControl(); myDirectorySecurity.AddAccessRule(new FileSystemAccessRule( name, FileSystemRights.FullControl, AccessControlType.Allow)); myDirectorySecurity.AddAccessRule(new FileSystemAccessRule( &#8220;Everyone&#8221;, FileSystemRights.FullControl, AccessControlType.Allow)); myDirectoryInfo.SetAccessControl(myDirectorySecurity); FileInfo file = new FileInfo(absoluteFolderPath + @&#8221;\Izenda.config&#8221;); FileSecurity fileSecurity = file.GetAccessControl(); fileSecurity.AddAccessRule(new FileSystemAccessRule( name, FileSystemRights.FullControl, AccessControlType.Allow)); fileSecurity.AddAccessRule(new FileSystemAccessRule( &#8220;NETWORK SERVICE&#8221;, FileSystemRights.FullControl, AccessControlType.Allow)); file.SetAccessControl(fileSecurity); }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=78&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>public void AddPermission(string absoluteFolderPath)<br />
        {<br />
            string name = WindowsIdentity.GetCurrent().Name;</p>
<p>            DirectoryInfo myDirectoryInfo = new DirectoryInfo(absoluteFolderPath);</p>
<p>            DirectorySecurity myDirectorySecurity = myDirectoryInfo.GetAccessControl();</p>
<p>            myDirectorySecurity.AddAccessRule(new FileSystemAccessRule(<br />
            name,<br />
            FileSystemRights.FullControl,<br />
            AccessControlType.Allow));</p>
<p>            myDirectorySecurity.AddAccessRule(new FileSystemAccessRule(<br />
            &#8220;Everyone&#8221;,<br />
            FileSystemRights.FullControl,<br />
            AccessControlType.Allow));<br />
            myDirectoryInfo.SetAccessControl(myDirectorySecurity);</p>
<p>            FileInfo file = new FileInfo(absoluteFolderPath + @&#8221;\Izenda.config&#8221;);<br />
            FileSecurity fileSecurity = file.GetAccessControl();</p>
<p>            fileSecurity.AddAccessRule(new FileSystemAccessRule(<br />
            name,<br />
            FileSystemRights.FullControl,<br />
            AccessControlType.Allow));</p>
<p>            fileSecurity.AddAccessRule(new FileSystemAccessRule(<br />
            &#8220;NETWORK SERVICE&#8221;,<br />
            FileSystemRights.FullControl,<br />
            AccessControlType.Allow));</p>
<p>            file.SetAccessControl(fileSecurity);<br />
        }</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=78&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2011/06/30/adding-permissions-on-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>Current time stamp in C#</title>
		<link>http://yazeem.wordpress.com/2011/05/31/current-time-stamp-in-c/</link>
		<comments>http://yazeem.wordpress.com/2011/05/31/current-time-stamp-in-c/#comments</comments>
		<pubDate>Tue, 31 May 2011 12:38:40 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
		
		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=76</guid>
		<description><![CDATA[DateTime.Now.ToString(&#8220;yyyyMMddHHmmssffff&#8221;)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=76&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>DateTime.Now.ToString(&#8220;yyyyMMddHHmmssffff&#8221;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=76&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2011/05/31/current-time-stamp-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>selecting from XML in Sql server</title>
		<link>http://yazeem.wordpress.com/2011/05/04/selecting-from-xml-in-sql-server/</link>
		<comments>http://yazeem.wordpress.com/2011/05/04/selecting-from-xml-in-sql-server/#comments</comments>
		<pubDate>Wed, 04 May 2011 12:14:53 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
		
		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=74</guid>
		<description><![CDATA[DECLARE @myXml AS XML SET @myXml = ‘ test1 test2 ‘ SELECT T.c.VALUE(‘@id[1]‘, ‘int’) AS [id] , T.c.VALUE(‘Description[1]‘, ‘nvarchar(max)’) AS [description] FROM @myXml.nodes(‘/ArrayOfProduct/Product’) AS T(c)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=74&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>DECLARE @myXml AS XML<br />
SET @myXml =<br />
‘</p>
<p>                test1</p>
<p>                test2</p>
<p>‘</p>
<p>SELECT<br />
        T.c.VALUE(‘@id[1]‘, ‘int’) AS [id]<br />
        , T.c.VALUE(‘Description[1]‘, ‘nvarchar(max)’) AS [description]<br />
FROM @myXml.nodes(‘/ArrayOfProduct/Product’) AS T(c)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=74&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2011/05/04/selecting-from-xml-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>XML to Table in SQL Server</title>
		<link>http://yazeem.wordpress.com/2011/05/04/xml-to-table-in-sql-server/</link>
		<comments>http://yazeem.wordpress.com/2011/05/04/xml-to-table-in-sql-server/#comments</comments>
		<pubDate>Wed, 04 May 2011 10:32:22 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
				<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=72</guid>
		<description><![CDATA[DECLARE @xmlDoc NVARCHAR(200) DECLARE @handle INT SET @xmlDoc = N&#8217; 409-56-7008 Bennet Abraham &#8216; EXEC sp_xml_preparedocument @handle OUTPUT, @xmlDoc SELECT * FROM OPENXML (@handle, &#8216;/authors&#8217;, 2) WITH (au_id VARCHAR(20), au_lname NVARCHAR(20), au_fname NVARCHAR(20) ) EXEC sp_xml_removedocument @handle<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=72&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>DECLARE @xmlDoc NVARCHAR(200)<br />
DECLARE @handle INT<br />
SET @xmlDoc = N&#8217;</p>
<p>    409-56-7008<br />
    Bennet<br />
    Abraham</p>
<p>&#8216;<br />
EXEC sp_xml_preparedocument @handle OUTPUT, @xmlDoc<br />
SELECT * FROM OPENXML (@handle, &#8216;/authors&#8217;, 2) WITH<br />
  (au_id VARCHAR(20),<br />
   au_lname NVARCHAR(20),<br />
   au_fname NVARCHAR(20)<br />
  )<br />
EXEC sp_xml_removedocument @handle</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=72&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2011/05/04/xml-to-table-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft SQL Server 2008 R2 Sample databases</title>
		<link>http://yazeem.wordpress.com/2010/12/19/microsoft-sql-server-2008-r2-sample-databases/</link>
		<comments>http://yazeem.wordpress.com/2010/12/19/microsoft-sql-server-2008-r2-sample-databases/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 14:38:21 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
		
		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=70</guid>
		<description><![CDATA[Northwind or other sample database is not installed by default in Microsoft SQL Server 2008 R2 Express edition. you can download the sample AdventureWorks database from following link. http://sqlserversamples.codeplex.com/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=70&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Northwind or other sample database is not installed by default in Microsoft SQL Server 2008 R2 Express edition. you can download the sample AdventureWorks database from following link.</p>
<p><a href="http://sqlserversamples.codeplex.com/">http://sqlserversamples.codeplex.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=70&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2010/12/19/microsoft-sql-server-2008-r2-sample-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>Get Modified Tables, Views, Store Procedures in specified date range</title>
		<link>http://yazeem.wordpress.com/2010/07/08/get-modified-tables-views-store-procedures-in-specified-date-range/</link>
		<comments>http://yazeem.wordpress.com/2010/07/08/get-modified-tables-views-store-procedures-in-specified-date-range/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 06:56:19 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=68</guid>
		<description><![CDATA[Following queries are used to get Modified Tables, Views, Store Procedures in specified date range select database and run following queries &#8211; USER_TABLE select * from sys.objects where type = &#8216;U&#8217; and modify_date between &#8217;2010-07-01 11:58:20.000&#8242; and &#8217;2010-07-31 12:00:00.000&#8242; &#8211; VIEW select * from sys.objects where type = &#8216;V&#8217; and modify_date between &#8217;2010-07-01 11:58:20.000&#8242; and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=68&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following queries are used to get Modified Tables, Views, Store Procedures in specified date range</p>
<p>select database and run following queries</p>
<p>&#8211; USER_TABLE<br />
select * from sys.objects<br />
where type = &#8216;U&#8217;<br />
and modify_date between &#8217;2010-07-01 11:58:20.000&#8242; and &#8217;2010-07-31 12:00:00.000&#8242;</p>
<p>&#8211; VIEW<br />
select * from sys.objects<br />
where type = &#8216;V&#8217;<br />
and modify_date between &#8217;2010-07-01 11:58:20.000&#8242; and &#8217;2010-07-31 12:00:00.000&#8242;</p>
<p>&#8211; SQL_STORED_PROCEDURE<br />
select * from sys.objects<br />
where type = &#8216;P&#8217;<br />
and modify_date between &#8217;2010-07-01 11:58:20.000&#8242; and &#8217;2010-07-31 12:00:00.000&#8242;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=68&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2010/07/08/get-modified-tables-views-store-procedures-in-specified-date-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>Breakout in Silverlight</title>
		<link>http://yazeem.wordpress.com/2010/04/12/breakout-in-silverlight/</link>
		<comments>http://yazeem.wordpress.com/2010/04/12/breakout-in-silverlight/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 17:56:26 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
				<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=62</guid>
		<description><![CDATA[Silverlight technology serves one of the best platform to write web based games. The main advantage is that shapes in Silverlight draw themselves and they support the same events as other elements. So we don’t need to worry about painting process of shapes etc. This game also serves as the basics to develop game in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=62&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Silverlight technology serves one of the best platform to write web  based games. The main advantage is that shapes in Silverlight draw  themselves and they support the same events as other elements. So we  don’t need to worry about painting process of shapes etc. This game also  serves as the basics to develop game in Silverlight.</p>
<p><a href="http://yazeem.files.wordpress.com/2010/04/gameplay.png"><img class="alignnone size-medium wp-image-63" title="gameplay" src="http://yazeem.files.wordpress.com/2010/04/gameplay.png?w=251&#038;h=300" alt="" width="251" height="300" /></a></p>
<p>complete article at following link</p>
<p><a title="http://www.codeproject.com/KB/silverlight/Silverlight_Breakout.aspx" href="http://www.codeproject.com/KB/silverlight/Silverlight_Breakout.aspx" target="_blank">http://www.codeproject.com/KB/silverlight/Silverlight_Breakout.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=62&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2010/04/12/breakout-in-silverlight/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>

		<media:content url="http://yazeem.files.wordpress.com/2010/04/gameplay.png?w=251" medium="image">
			<media:title type="html">gameplay</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2010 Launch Live</title>
		<link>http://yazeem.wordpress.com/2010/04/12/visual-studio-2010-launch-live/</link>
		<comments>http://yazeem.wordpress.com/2010/04/12/visual-studio-2010-launch-live/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 17:46:40 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
				<category><![CDATA[Tools and Services]]></category>

		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=60</guid>
		<description><![CDATA[watch Visual Studio 2010 launch live at following link http://www.microsoft.com/visualstudio/en-us/watch-it-live<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=60&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>watch Visual Studio 2010 launch live at following link</p>
<p><a title="http://www.microsoft.com/visualstudio/en-us/watch-it-live" href="http://www.microsoft.com/visualstudio/en-us/watch-it-live" target="_blank">http://www.microsoft.com/visualstudio/en-us/watch-it-live</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=60&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2010/04/12/visual-studio-2010-launch-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
		<item>
		<title>Relative URL for html controls</title>
		<link>http://yazeem.wordpress.com/2010/03/28/relative-url-for-html-controls/</link>
		<comments>http://yazeem.wordpress.com/2010/03/28/relative-url-for-html-controls/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 05:32:16 +0000</pubDate>
		<dc:creator>yazeem</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://yazeem.wordpress.com/?p=55</guid>
		<description><![CDATA[if you want to assign a resource path to an html element like this &#60;img src=&#8221;~/Module/91.jpg&#8221; /&#62; this will not work, this will work only for server side controls, to do this job you can use ASP.NET ResolveClientUrl(relativePath) method as &#60;img src=&#8217;&#60;%= ResolveClientUrl(&#8220;~/Module/91.jpg&#8221;) %&#62;&#8217; /&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=55&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>if you want to assign a resource path to an html element like this</p>
<p>&lt;img src=&#8221;~/Module/91.jpg&#8221; /&gt;</p>
<p>this will not work, this will work only for server side controls, to do this job you can use ASP.NET ResolveClientUrl(relativePath) method as</p>
<p>&lt;img src=&#8217;&lt;%= ResolveClientUrl(&#8220;~/Module/91.jpg&#8221;) %&gt;&#8217; /&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yazeem.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yazeem.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yazeem.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yazeem.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yazeem.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yazeem.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yazeem.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yazeem.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yazeem.wordpress.com&amp;blog=9091554&amp;post=55&amp;subd=yazeem&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yazeem.wordpress.com/2010/03/28/relative-url-for-html-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/13d5374a8b9d20ff9b316a88e75d9430?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yazeem</media:title>
		</media:content>
	</item>
	</channel>
</rss>
