<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dotnet365.Com</title>
	<atom:link href="http://www.dotnet365.com/site/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.dotnet365.com/site</link>
	<description>For .Net Readers to read</description>
	<lastBuildDate>Thu, 05 Jan 2012 17:26:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SQL Truncate Table</title>
		<link>http://www.dotnet365.com/site/?p=201</link>
		<comments>http://www.dotnet365.com/site/?p=201#comments</comments>
		<pubDate>Sun, 01 Jan 2012 17:17:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=201</guid>
		<description><![CDATA[The SQL Truncate Table command do delete the rows from a database table. And the SQL Truncate table syntax is below: Truncate Table Student Here Truncate is same as Delete command which do not have the Where Condition and tow statements are &#8230; <a href="http://www.dotnet365.com/site/?p=201">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The SQL Truncate Table command do delete the rows from a database table. And the SQL Truncate table syntax is below:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">Truncate Table Student</td>
</tr>
</tbody>
</table>
<p>Here Truncate is same as Delete command which do not have the Where Condition and tow statements are as follows..</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">Truncate Table Student</td>
</tr>
</tbody>
</table>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">Delete from Student</td>
</tr>
</tbody>
</table>
<p>We can use the Truncate Command when we need to delete all the rows in the table.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=201</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Delete</title>
		<link>http://www.dotnet365.com/site/?p=192</link>
		<comments>http://www.dotnet365.com/site/?p=192#comments</comments>
		<pubDate>Sun, 01 Jan 2012 02:54:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=192</guid>
		<description><![CDATA[The SQL Delete command is used delete the data from the database table. The easy and simple SQL Delete command syntax will look like this DELETE FROM TABLENAME The above mentioned SQL Command will delete the data from the TableName &#8230; <a href="http://www.dotnet365.com/site/?p=192">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The SQL Delete command is used delete the data from the database table. The easy and simple SQL Delete command syntax will look like this</p>
<table style="width: 100%; height: 44px;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">DELETE FROM TABLENAME</td>
</tr>
</tbody>
</table>
<p>The above mentioned SQL Command will delete the data from the TableName</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">DELETE FROM EMPLOYEE WHERE DEPARTMENT = &#8220;MECHANICAL&#8221;</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=192</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Update</title>
		<link>http://www.dotnet365.com/site/?p=189</link>
		<comments>http://www.dotnet365.com/site/?p=189#comments</comments>
		<pubDate>Sat, 31 Dec 2011 08:58:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=189</guid>
		<description><![CDATA[SQL Update command used update the data in database table. The SQL Update basic syntax will look like this Update TableName SET ColumnName1 = Value1, ColumnName1 = Value2,&#8230; Please find the SQL Update Syntax Update EmpTable SET DepartmentName = “ComputerTechnology”]]></description>
			<content:encoded><![CDATA[<p>SQL Update command used update the data in database table. The SQL Update basic syntax will look like this</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">Update TableName SET ColumnName1 = Value1, ColumnName1 = Value2,&#8230;</td>
</tr>
</tbody>
</table>
<p>Please find the SQL Update Syntax</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">Update EmpTable SET DepartmentName = “ComputerTechnology”</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=189</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SELECT DISTINCT</title>
		<link>http://www.dotnet365.com/site/?p=184</link>
		<comments>http://www.dotnet365.com/site/?p=184#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:30:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=184</guid>
		<description><![CDATA[SELECT command The syntax is as follows: SELECT DISTINCT &#8220;columnname&#8221; FROM &#8220;TableName&#8221;For example, to select all distinct stores in Table Department Table Department Select distinct Emp_Dept from Deptartment Result: IT Department HR Department Finance Department]]></description>
			<content:encoded><![CDATA[<p>SELECT command The syntax is as follows:</p>
<p>SELECT DISTINCT &#8220;columnname&#8221; FROM &#8220;TableName&#8221;For example, to select all distinct stores in Table Department  Table Department</p>
<p>Select distinct Emp_Dept from Deptartment</p>
<p>Result:</p>
<p>IT Department HR Department Finance Department</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=184</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Where</title>
		<link>http://www.dotnet365.com/site/?p=178</link>
		<comments>http://www.dotnet365.com/site/?p=178#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:25:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=178</guid>
		<description><![CDATA[If we want to select data from table with conditionally The syntax is as follows.. SELECT &#8220;columnname&#8221; FROM &#8220;TableName&#8221; WHERE &#8220;condition&#8221; Table Employee SELECT Emp_Name FROM Employee WHERE Salary &#62; 10000 Result: Mahesh]]></description>
			<content:encoded><![CDATA[<p>If we want to select data from table with conditionally</p>
<p>The syntax is as follows..</p>
<p>SELECT &#8220;columnname&#8221; FROM &#8220;TableName&#8221; WHERE &#8220;condition&#8221;</p>
<p><span style="text-decoration: underline;">Table Employee</span></p>
<p>SELECT Emp_Name FROM Employee WHERE Salary &gt; 10000</p>
<p><span style="text-decoration: underline;">Result:</span></p>
<p>Mahesh</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=178</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Select Into</title>
		<link>http://www.dotnet365.com/site/?p=174</link>
		<comments>http://www.dotnet365.com/site/?p=174#comments</comments>
		<pubDate>Fri, 30 Dec 2011 16:30:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=174</guid>
		<description><![CDATA[SELECT Column1, Column2, Column3, INTO Table_Name FROM TableActual (OR) SELECT * INTO Employee_Table FROM Employee]]></description>
			<content:encoded><![CDATA[<p>SELECT Column1, Column2, Column3,<br />
INTO Table_Name<br />
FROM TableActual</p>
<p>(OR)</p>
<p>SELECT *<br />
INTO Employee_Table<br />
FROM Employee</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=174</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Select</title>
		<link>http://www.dotnet365.com/site/?p=169</link>
		<comments>http://www.dotnet365.com/site/?p=169#comments</comments>
		<pubDate>Fri, 30 Dec 2011 16:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL Commands]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=169</guid>
		<description><![CDATA[SQL Tutorial &#8211; To Study SQL SELECT Column1, Column2, Column3, FROM Table_Name (OR) SELECT * FROM Table_Name]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;">SQL Tutorial &#8211; To Study SQL</span><br />
SELECT Column1, Column2, Column3,<br />
FROM Table_Name</p>
<p>(OR)</p>
<p>SELECT *<br />
FROM Table_Name</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=169</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is architecture ? 2/3 Tier explain</title>
		<link>http://www.dotnet365.com/site/?p=106</link>
		<comments>http://www.dotnet365.com/site/?p=106#comments</comments>
		<pubDate>Fri, 02 Dec 2011 14:57:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=106</guid>
		<description><![CDATA[What is architecture ? 2/3 Tier explain]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-2312466414063277";
/* dotnet_top_728_links */
google_ad_slot = "7865786967";
google_ad_width = 728;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "pub-2312466414063277";
/* c2n_home_250_banner */
google_ad_slot = "8363015907";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<li><a class="aligncenter" title="N - Tier Architecture" href="http://www.microsoft.com/belux/msdn/fr/community/columns/hyatt/ntier1.mspx" target="_blank">What is architecture ? 2/3 Tier explain</a></li>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(OOP&#8217;s)Object Oriented Programming in .Net</title>
		<link>http://www.dotnet365.com/site/?p=104</link>
		<comments>http://www.dotnet365.com/site/?p=104#comments</comments>
		<pubDate>Fri, 02 Dec 2011 14:50:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#.Net]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=104</guid>
		<description><![CDATA[OOP&#8217;s Object Oriented Programming in .Net What architecture ? 2/3 Tier explain]]></description>
			<content:encoded><![CDATA[<ul>
<li><a class="aligncenter" title="OOP's" href="http://msdn.microsoft.com/en-us/library/dd460654.aspx" target="_self">OOP&#8217;s Object Oriented Programming in .Net</a></li>
<li><a class="aligncenter" title="N-Tier Architecture" href="http://www.dotnet365.com/site/?p=106 " target="_self">What architecture ? 2/3 Tier explain</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=104</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is address used in WCF? and transport schema are in WCF?</title>
		<link>http://www.dotnet365.com/site/?p=97</link>
		<comments>http://www.dotnet365.com/site/?p=97#comments</comments>
		<pubDate>Mon, 28 Nov 2011 17:51:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.dotnet365.com/site/?p=97</guid>
		<description><![CDATA[Address is a way of letting client know that where a service is located. Address is used to find the service is located In WCF, each service is associated with a unique address. This will refers to location of the &#8230; <a href="http://www.dotnet365.com/site/?p=97">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ul>
<li>Address is a way of letting client know that where a service is located.<br />
Address is used to find the service is located</li>
<li>In WCF, each service is associated with a unique address.<br />
This will refers to location of the service and transport schemas.</li>
<li>Here below transport schemas mentioned which is used to support the WCF<br />
HTTP<br />
TCP<br />
Peer network<br />
IPC (Inter-Process Communication over named pipes)<br />
MSMQ</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dotnet365.com/site/?feed=rss2&amp;p=97</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
