<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>SQL Server, SQL Server Express, and SqlDataSource Control</title><link>http://forums.asp.net/54.aspx</link><description>All about SQL Server, SQL Server Express, MSDE, and the SqlDataSource control.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3275157.aspx</link><pubDate>Sun, 05 Jul 2009 06:56:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3275157</guid><dc:creator>ambrose1</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3275157.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3275157</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Thank u&amp;nbsp;ramireddyindia,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I understand the concept...........Thanks a Lot for spending time with my questions.....................&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274834.aspx</link><pubDate>Sat, 04 Jul 2009 16:47:31 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274834</guid><dc:creator>ramireddyindia</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274834.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274834</wfw:commentRss><description>&lt;p&gt;We can tell that a table is in second normal form if it saitisfies the following.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;i) It should be in first normal form.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;ii) When the Table has only single column primary key, then&amp;nbsp; it means automatically in second normal form. otherwise if the table has a composite primary key, then the other column should depends on all the columns of that composite key.&lt;/p&gt;&lt;p&gt;Eg:&lt;/p&gt;&lt;p&gt;OrderItems Table (ORderId,ItemId,ItemDescription,ItemQty,ItemPrice)&lt;/p&gt;&lt;p&gt;Now this table represents the Items ordered in that order.&lt;/p&gt;&lt;p&gt;that means the primary key is both OrderId and ItemId&lt;/p&gt;&lt;p&gt;Now check the remaining columns,&lt;/p&gt;&lt;p&gt;ItemDescription : Description of the Item, means it depends only on Items table. so this column depends only on ItemId column. so this column is not allowed.&lt;/p&gt;&lt;p&gt;ItemQty : The Quantity of the Item ordered in That Order. this column depends on both the columns. so this column is ok.&lt;/p&gt;&lt;p&gt;ItemPrice : the Price of the Item. again it depends only on ItemId column. so this column is not allowed.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;so ,we will split it into 2 parts&lt;/p&gt;&lt;p&gt;OrderITems (OrderId,ITemId,ItemQuantity)&lt;/p&gt;&lt;p&gt;Items(ItemId,ItemDescription,ItemPrice)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274792.aspx</link><pubDate>Sat, 04 Jul 2009 15:50:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274792</guid><dc:creator>ambrose1</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274792.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274792</wfw:commentRss><description>&lt;p&gt;Thank u ramireddyindia,&lt;/p&gt;
&lt;p&gt;I understand the Third Formal Form,Your example is so good.Can u give&amp;nbsp;some Example for second normal form,It will so helpful for me....I can use it in the future................&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274739.aspx</link><pubDate>Sat, 04 Jul 2009 14:44:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274739</guid><dc:creator>ramireddyindia</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274739.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274739</wfw:commentRss><description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In 3NF, Every Non_Key Field must depends on only keyfield. it should not depends on another Non_key Field.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Eg:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; Orders Table:&lt;/p&gt;&lt;p&gt;&amp;nbsp;OrderId&amp;nbsp;&amp;nbsp;&amp;nbsp; CustomerName CustomerPhoneNo&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 345&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In above table OrderId is the only KeyField of the table, Customer Name and CustomerPhoneNo are the non-key Fields. and customer phone number depends on Customer Name. It should depends on only keyfields. but its currently depends on non-key field &amp;quot;customername&amp;quot;. so the above table is not in third normal form.&lt;/p&gt;&lt;p&gt;so we will make it as 2 tables.&lt;/p&gt;&lt;p&gt;Orders Table : ORderId,CustomerId&lt;/p&gt;&lt;p&gt;Customers Table: CustomerId,CustomerName,CustomerPhoneNo&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274718.aspx</link><pubDate>Sat, 04 Jul 2009 14:03:29 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274718</guid><dc:creator>ambrose1</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274718.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274718</wfw:commentRss><description>&lt;p&gt;Thank u&amp;nbsp;akhhttar,Anits,ramireddyindia,AvanthaSiriwardana&lt;/p&gt;
&lt;p&gt;I came to understand First and Second Normal form,But it would be helpful for me,if u explain the third normal form with some simple examples here....so that I can understand it very clearly................&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274349.aspx</link><pubDate>Sat, 04 Jul 2009 06:49:14 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274349</guid><dc:creator>AvanthaSiriwardana</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274349.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274349</wfw:commentRss><description>&lt;p&gt;http://www.databasejournal.com/sqletc/article.php/1428511/Database-Normalization.htm&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274343.aspx</link><pubDate>Sat, 04 Jul 2009 06:43:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274343</guid><dc:creator>ramireddyindia</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274343.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274343</wfw:commentRss><description>&lt;p&gt;http://www.phlonx.com/resources/nf3/&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274341.aspx</link><pubDate>Sat, 04 Jul 2009 06:42:05 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274341</guid><dc:creator>Anits</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274341.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274341</wfw:commentRss><description>&lt;p&gt;Plz go thr this link.&lt;/p&gt;&lt;p&gt;http://www.bkent.net/Doc/simple5.htm&lt;/p&gt;</description></item><item><title>Re: First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274340.aspx</link><pubDate>Sat, 04 Jul 2009 06:41:04 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274340</guid><dc:creator>akhhttar</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274340.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274340</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Please see following articles,&lt;/p&gt;&lt;p&gt;For high level overview of notmalizations and theri forms: http://databases.about.com/od/specificproducts/a/normalization.htm&lt;/p&gt;&lt;p&gt;For Detail look with examples: http://www.phlonx.com/resources/nf3/&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Hope these articles will help you to understand the concepts of database normalizations and their different forms.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Thank You&lt;/p&gt;&lt;p&gt;Muhammad Akhtar Shiekh&lt;br /&gt;&lt;/p&gt;</description></item><item><title>First,Second and Third Normal Form</title><link>http://forums.asp.net/thread/3274172.aspx</link><pubDate>Sat, 04 Jul 2009 03:26:18 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3274172</guid><dc:creator>ambrose1</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3274172.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=54&amp;PostID=3274172</wfw:commentRss><description>&lt;p&gt;Hello Friends,&lt;/p&gt;
&lt;p&gt;Can u Explain First,Second and Third Normal form in a Easy way&amp;nbsp;with simple Examples.&lt;/p&gt;
&lt;p&gt;Thanks in Advance&lt;/p&gt;</description></item></channel></rss>