<?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>coders</title>
	<atom:link href="http://coders.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://coders.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 01 May 2007 10:23:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='coders.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>coders</title>
		<link>http://coders.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://coders.wordpress.com/osd.xml" title="coders" />
	<atom:link rel='hub' href='http://coders.wordpress.com/?pushpress=hub'/>
		<item>
		<title></title>
		<link>http://coders.wordpress.com/2007/05/01/11/</link>
		<comments>http://coders.wordpress.com/2007/05/01/11/#comments</comments>
		<pubDate>Tue, 01 May 2007 10:23:38 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/05/01/11/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=11&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=11&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/05/01/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>Change SQL 2005 Database Owner</title>
		<link>http://coders.wordpress.com/2007/05/01/change-sql-2005-database-owner/</link>
		<comments>http://coders.wordpress.com/2007/05/01/change-sql-2005-database-owner/#comments</comments>
		<pubDate>Tue, 01 May 2007 10:19:40 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/05/01/change-sql-2005-database-owner/</guid>
		<description><![CDATA[You can use the sp_changedbowner system stored procedure to change the database owner. Read about the sp_changedbowner stored procedure in SQL Server Books Online. This is the example to make the user John the owner of the pubs database: USE pubs GO EXEC sp_changedbowner 'John' GO<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=10&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can use the <strong>sp_changedbowner</strong> system stored procedure to change the database owner.<br />
Read about the <strong>sp_changedbowner</strong> stored procedure in SQL Server Books Online.<br />
This is the example to make the user John the owner of the pubs database:</p>
<table width="100%">
<tr bgcolor="#dcdcdc">
<td>
<pre>USE pubs

GO

EXEC sp_changedbowner 'John'

GO</pre>
</td>
</tr>
</table>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=10&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/05/01/change-sql-2005-database-owner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>T-SQL: binary and varbinary</title>
		<link>http://coders.wordpress.com/2007/04/14/t-sql-binary-and-varbinary/</link>
		<comments>http://coders.wordpress.com/2007/04/14/t-sql-binary-and-varbinary/#comments</comments>
		<pubDate>Sat, 14 Apr 2007 11:06:28 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/04/14/t-sql-binary-and-varbinary/</guid>
		<description><![CDATA[binary and varbinary (Transact-SQL)  Binary data types of either fixed length or variable length. binary [ ( n ) ] Fixed-length binary data with a length of n bytes, where n is a value from 1 through 8,000. The storage size is n bytes. varbinary [ ( n &#124; max) ] Variable-length binary data. n [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=9&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="title"><span style="font-weight:bold;">binary and varbinary (Transact-SQL) </span></p>
<p><!--Content type: DocStudio. Transform: devdiv2mtps.xslt.-->   <span style="color:DarkGray;"> </span> <span> </span></p>
<p>Binary data types of either fixed length or variable length.</p>
<dl>
<dt> <strong>binary</strong> [ ( <em>n</em> ) ] </dt>
<dd>Fixed-length binary data with a length of <em>n</em> bytes, where <em>n</em> is a value from 1 through 8,000. The storage size is <em>n</em> bytes.</p>
</dd>
</dl>
<dl>
<dt> <strong>varbinary</strong> [ ( <em>n</em> | <strong>max</strong>) ] </dt>
<dd>Variable-length binary data. <em>n</em> can be a value from 1 through 8,000. <strong>max</strong> indicates that the maximum storage size is 2^31-1 bytes. The storage size is the actual length of the data entered + 2 bytes. The data that is entered can be 0 bytes in length. The SQL-2003 synonym for <strong>varbinary</strong> is <strong>binary varying</strong>.</p>
</dd>
</dl>
<p>  var ExpCollDivStr = ExpCollDivStr; ExpCollDivStr = ExpCollDivStr + &#8220;ctl00_LibFrame_ctl063f2f2d0,&#8221;; var ExpCollImgStr = ExpCollImgStr;  ExpCollImgStr = ExpCollImgStr + &#8220;ctl00_LibFrame_ctl06img,&#8221;;<br />
<a name="remarksToggle"></a><a name="remarksToggle"></a>When <em>n</em> is not specified in a data definition or variable declaration statement, the default length is 1. When <em>n</em><em> </em>is not specified with the CAST function, the default length is 30.</p>
<p><a name="remarksToggle"></a><a name="remarksToggle"></a>Use <strong>binary</strong> when the sizes of the column data entries are consistent.</p>
<p><a name="remarksToggle"></a><a name="remarksToggle"></a>Use <strong>varbinary</strong> when the sizes of the column data entries vary considerably.</p>
<p><a name="remarksToggle"></a><a name="remarksToggle"></a>Use <strong>varbinary(max)</strong> when the column data entries exceed 8,000 bytes.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=9&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/04/14/t-sql-binary-and-varbinary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>Wikipedia</title>
		<link>http://coders.wordpress.com/2007/04/12/wikipedia/</link>
		<comments>http://coders.wordpress.com/2007/04/12/wikipedia/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 15:04:32 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/04/12/wikipedia/</guid>
		<description><![CDATA[Wikipedia is a multilingual, web-based, free content encyclopedia project. Wikipedia is written collaboratively by volunteers; its articles can be edited by anyone with access to the web site. The name is a portmanteau of the words wiki (a type of collaborative website) and encyclopedia. Its primary servers are in Tampa, Florida, with additional servers in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=8&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Wikipedia</strong> is a multilingual, web-based, free content encyclopedia project. Wikipedia is written collaboratively by volunteers; its articles can be edited by anyone with access to the web site. The name is a portmanteau of the words <em>wiki</em> (a type of collaborative website) and <em>encyclopedia</em>. Its primary servers are in Tampa, Florida, with additional servers in Amsterdam and Seoul.</p>
<p>Wikipedia was launched as the English Wikipedia on January 15, 2001, as a complement to Nupedia, an expert-written and now defunct encyclopedia. The project is now operated by the Wikimedia Foundation, a non-profit organization created by Jimmy Wales who is a co-founder of Wikipedia.<sup><a href="http://en.wikipedia.org/wiki/Wikipedia#_note-foundercontroversy"></a></sup> Wikipedia has approximately seven million articles in 251 languages,<sup><a href="http://en.wikipedia.org/wiki/Wikipedia#_note-ListOfWikipedias"></a></sup> 1.7 million of which are in the English edition. It has steadily risen in popularity since its inception, and currently ranks among the top twenty most-visited websites worldwide.</p>
<p>Critics have questioned Wikipedia&#8217;s reliability and accuracy. The site has also been criticized for its susceptibility to vandalism,<sup> </sup>uneven quality, systemic bias and inconsistencies, Wikipedia&#8217;s content policies and for favoring consensus over credentials in its editorial process. and sub-projects set up by contributors seek to address these concerns. Two scholarly studies have concluded that vandalism is generally short-lived and that Wikipedia is roughly as accurate as other encyclopedias.</p>
<p>You should use it, I do <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=8&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/04/12/wikipedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Services</title>
		<link>http://coders.wordpress.com/2007/04/12/web-services/</link>
		<comments>http://coders.wordpress.com/2007/04/12/web-services/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 15:01:37 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/04/12/web-services/</guid>
		<description><![CDATA[The World Wide Web is more and more used for application to application communication. The programmatic interfaces made available are referred to as Web services. The goal of the Web Services Activity is to develop a set of technologies in order to lead Web services to their full potential. [Wikipedia] The W3C defines a Web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=7&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The World Wide Web is more and more used for application to application communication. The programmatic interfaces made available are referred to as <em>Web services</em>.</p>
<p><span class="summary">The goal of the Web Services Activity is to develop a set of technologies in order to lead Web services to their full potential.</span></p>
<p>[Wikipedia]</p>
<p>The W3C defines a <strong>Web service</strong> as a software system designed to support interoperable Machine to Machine interaction over a network. Web services are frequently just Web APIs that can be accessed over a network, such as the Internet, and executed on a remote system hosting the requested services.</p>
<p>The W3C Web service definition encompasses many different systems, but in common usage the term refers to clients and servers that communicate XML messages that follow the SOAP-standard. Common in both the field and the terminology is the assumption that there is also a machine readable description of the operations supported by the server, a description in the WSDL. The latter is not a requirement of SOAP <em>endpoint</em>, but it is a prerequisite for automated client-side code generation in the mainstream Java and .NET SOAP frameworks. Some industry organizations, such as the WS-I, mandate both SOAP and WSDL in their definition of a Web service.</p>
<p>Need an example ? Post a comment <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=7&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/04/12/web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Create Table Full Syntax</title>
		<link>http://coders.wordpress.com/2007/04/12/sql-create-table-full-syntax/</link>
		<comments>http://coders.wordpress.com/2007/04/12/sql-create-table-full-syntax/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 14:52:50 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/04/12/sql-create-table-full-syntax/</guid>
		<description><![CDATA[CREATE TABLE Creates a new table. Syntax CREATE TABLE [ database_name.[ owner ] . &#124; owner. ] table_name ( { &#60; column_definition &#62; &#124; column_name AS computed_column_expression         &#124; &#60; table_constraint &#62; } [ ,...n ] ) [ ON { filegroup &#124; DEFAULT } ] [ TEXTIMAGE_ON { filegroup &#124; DEFAULT } ] &#60; column_definition &#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=6&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="title">CREATE TABLE</p>
<p><!--Content type: PSDK_9. Transform: psdk2mtps.xslt.-->Creates a new table.</p>
<h5>Syntax</h5>
<p>CREATE TABLE<br />
[ <em>database_name</em><strong>.</strong>[ <em>owner </em>] <strong>. </strong>| <em>owner</em><strong>. </strong>] <em>table_name </em><br />
<strong>( </strong>{ &lt; column_definition &gt;<br />
| <em>column_name</em> AS <em>computed_column_expression<br />
</em>        | &lt; table_constraint &gt; } [ <strong>,</strong>...<em>n </em>]<br />
<strong>) </strong></p>
<p>[ ON { <em>filegroup</em> | DEFAULT } ]<br />
[ TEXTIMAGE_ON { <em>filegroup</em> | DEFAULT } ]</p>
<p>&lt; column_definition &gt; ::= <em>column_name</em> <em>data_type</em><br />
[ COLLATE &lt; collation_name &gt; ]<br />
[ [ DEFAULT <em>constant_expression</em> ]<br />
| [ IDENTITY [ ( <em>seed </em><strong>,</strong> <em>increment</em> ) [ NOT FOR REPLICATION ] ] ]<br />
]<br />
[ ROWGUIDCOL]<br />
[ &lt; column_constraint &gt; ] [ ...<em>n </em>]</p>
<p>&lt; column_constraint &gt; ::= [ CONSTRAINT <em>constraint_name </em>]<br />
{ [ NULL | NOT NULL ]<br />
| [ { PRIMARY KEY | UNIQUE }<br />
[ CLUSTERED | NONCLUSTERED ]<br />
[ WITH FILLFACTOR <strong>=</strong> <em>fillfactor </em>]<br />
[ON {<em>filegroup</em> | DEFAULT} ] ]<br />
]<br />
| [ [ FOREIGN KEY ]<br />
REFERENCES <em>ref_table</em> [ <strong>( </strong><em>ref_column </em><strong>) </strong>]<br />
[ ON DELETE { CASCADE | NO ACTION } ]<br />
[ ON UPDATE { CASCADE | NO ACTION } ]<br />
[ NOT FOR REPLICATION ]<br />
]<br />
| CHECK [ NOT FOR REPLICATION ]<br />
<strong>( </strong><em>logical_expression </em><strong>) </strong><br />
}</p>
<p>&lt; table_constraint &gt; ::= [ CONSTRAINT <em>constraint_name </em>]<br />
{ [ { PRIMARY KEY | UNIQUE }<br />
[ CLUSTERED | NONCLUSTERED ]<br />
{ <strong>(</strong> <em>column</em> [ ASC | DESC ] [ <strong>,</strong>...<em>n </em>] <strong>)</strong> }<br />
[ WITH FILLFACTOR <strong>=</strong> <em>fillfactor </em>]<br />
[ ON { <em>filegroup</em> | DEFAULT } ]<br />
]<br />
| FOREIGN KEY<br />
[ <strong>( </strong><em>column </em>[ <strong>,</strong>...<em>n </em>] <strong>) </strong>]<br />
REFERENCES <em>ref_table</em> [ <strong>( </strong><em>ref_column </em>[ <strong>,</strong>...<em>n </em>] <strong>) </strong>]<br />
[ ON DELETE { CASCADE | NO ACTION } ]<br />
[ ON UPDATE { CASCADE | NO ACTION } ]<br />
[ NOT FOR REPLICATION ]<br />
| CHECK [ NOT FOR REPLICATION ]<br />
<strong>( </strong><em>search_conditions </em><strong>) </strong><br />
}</p>
<p>Confused about a param meaning? Post a comment and I will make it clear <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=6&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/04/12/sql-create-table-full-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Deadlocks</title>
		<link>http://coders.wordpress.com/2007/04/12/sql-deadlocks/</link>
		<comments>http://coders.wordpress.com/2007/04/12/sql-deadlocks/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 14:49:21 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/04/12/sql-deadlocks/</guid>
		<description><![CDATA[A deadlock occurs when two or more users are waiting for data locked by each other. When this happens, these users are stuck (deadly embraced) and cannot continue processing. Oracle automatically detects deadlocks and resolves them by rolling back one of the statements involved in the deadlock, thus releasing one set of data locked by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=5&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A deadlock occurs when two or more users are waiting for data locked by each other. When this happens, these users are stuck (deadly embraced) and cannot continue processing.</p>
<p>Oracle automatically detects deadlocks and resolves them by rolling back one of the statements involved in the deadlock, thus releasing one set of data locked by that statement. The session that is rolled back will observe Oracle error: ORA-00060: deadlock detected while waiting for resource. Oracle will also write out a trace file with detailed information to the database&#8217;s UDUMP directory.</p>
<p>Multi-table deadlocks can be avoided by locking tables in same order (in all applications), thus preventing a deadlock condition. For example, session1 lock table: emp then dept; session2: emp then dept. If this is not possible, your application should check for ORA-60 errors and restart the rolled back transactions.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=5&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/04/12/sql-deadlocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
		<item>
		<title>Send Email in C#</title>
		<link>http://coders.wordpress.com/2007/03/24/send-email-in-c/</link>
		<comments>http://coders.wordpress.com/2007/03/24/send-email-in-c/#comments</comments>
		<pubDate>Sat, 24 Mar 2007 13:19:25 +0000</pubDate>
		<dc:creator>pesq</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coders.wordpress.com/2007/03/24/send-email-in-c/</guid>
		<description><![CDATA[If you want to send an email using C#, you can use the following code: // create mail message object MailMessage oMail = new MailMessage(); //set from address oMail.From = &#8220;&#8221;; //set to address oMail.To = &#8220;&#8221;; //set subject oMail.Subject = &#8220;&#8221;; //set message body oMail.Body = &#8220;&#8221;; //set smtp server SmtpMail.SmtpServer = &#8220;&#8221;; // [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=3&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>If you want to send an email using C#, you can use the following code:</strong></p>
<p>// create mail message object<br />
MailMessage oMail = new MailMessage();</p>
<p>//set from address<br />
oMail.From = &#8220;&#8221;;</p>
<p>//set to address<br />
oMail.To = &#8220;&#8221;;</p>
<p>//set subject<br />
oMail.Subject = &#8220;&#8221;;</p>
<p>//set message body<br />
oMail.Body = &#8220;&#8221;;</p>
<p>//set smtp server<br />
SmtpMail.SmtpServer = &#8220;&#8221;;</p>
<p>// send the mail<br />
SmtpMail.Send(oMail);</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/coders.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/coders.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coders.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coders.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coders.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coders.wordpress.com&amp;blog=909596&amp;post=3&amp;subd=coders&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coders.wordpress.com/2007/03/24/send-email-in-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c37ffc620d7f4c70e42424a847f01596?s=96&#38;d=identicon" medium="image">
			<media:title type="html">pesq</media:title>
		</media:content>
	</item>
	</channel>
</rss>
