<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: SQL Table Layout</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 10:51:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: The most-watched IT questions this week: March 30, 2010 - ITKE Community Blog</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/#comment-75326</link>
		<dc:creator>The most-watched IT questions this week: March 30, 2010 - ITKE Community Blog</dc:creator>
		<pubDate>Tue, 30 Mar 2010 05:44:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-75326</guid>
		<description><![CDATA[[...] SQL Table Layout, asked by Philsal and answered by Meandyou and [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL Table Layout, asked by Philsal and answered by Meandyou and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/#comment-74936</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Wed, 17 Mar 2010 13:32:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-74936</guid>
		<description><![CDATA[I don&#039;t think that would make it unwieldy.  The number of tables is not really important, and from the database design point of view, that would be the recommended approach.]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t think that would make it unwieldy.  The number of tables is not really important, and from the database design point of view, that would be the recommended approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philsal</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/#comment-74927</link>
		<dc:creator>philsal</dc:creator>
		<pubDate>Wed, 17 Mar 2010 01:31:32 +0000</pubDate>
		<guid isPermaLink="false">#comment-74927</guid>
		<description><![CDATA[Hi
Yes we programmed it in our legacy system (which is not sql). We could have a seperate table per group but there are 396 different properties in the database. Would this make it unwieldy?]]></description>
		<content:encoded><![CDATA[<p>Hi<br />
Yes we programmed it in our legacy system (which is not sql). We could have a seperate table per group but there are 396 different properties in the database. Would this make it unwieldy?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/#comment-74921</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Tue, 16 Mar 2010 23:10:48 +0000</pubDate>
		<guid isPermaLink="false">#comment-74921</guid>
		<description><![CDATA[&quot;&lt;i&gt;In our legacy system this was handled automatically&lt;/i&gt;&quot;

automatically, how ?

Something may look as &#039;automatic&#039; to the users, but internally there must be a process that automates it.   How was that managed internally ?

On the other hand, how about the one look up table for each group of properties approach (which is the option I would prefer) ?]]></description>
		<content:encoded><![CDATA[<p>&#8220;<i>In our legacy system this was handled automatically</i>&#8221;</p>
<p>automatically, how ?</p>
<p>Something may look as &#8216;automatic&#8217; to the users, but internally there must be a process that automates it.   How was that managed internally ?</p>
<p>On the other hand, how about the one look up table for each group of properties approach (which is the option I would prefer) ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philsal</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/#comment-74919</link>
		<dc:creator>philsal</dc:creator>
		<pubDate>Tue, 16 Mar 2010 22:02:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-74919</guid>
		<description><![CDATA[I guess the biggest issue I have is that I want to add relations into the tables so that tools such as crystal reports can just populate the links between tables. It seems to me that this means the every property in the base tables require two fields. There are going to be many hundreds of these so it doesnt seem to me to be efficient way of handling. In our legacy system this was handled automatically]]></description>
		<content:encoded><![CDATA[<p>I guess the biggest issue I have is that I want to add relations into the tables so that tools such as crystal reports can just populate the links between tables. It seems to me that this means the every property in the base tables require two fields. There are going to be many hundreds of these so it doesnt seem to me to be efficient way of handling. In our legacy system this was handled automatically</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-table-layout/#comment-74899</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Tue, 16 Mar 2010 15:07:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-74899</guid>
		<description><![CDATA[Another option could be splitting the properties table:

&lt;pre&gt;&lt;b&gt;PROPERTY_GROUP&lt;/b&gt;
GroupId		(PK)
GroudDescription

&lt;b&gt;PROPERTY_TABLE&lt;/b&gt;
GroupId		(PK)
PropertyId	(PK)
PropertyValue&lt;/pre&gt;

Then, your other tables would need to include the GroupId and the PropertyId.

The option of having 1 table for each group of properties is also a good one, and both have pros and cons.]]></description>
		<content:encoded><![CDATA[<p>Another option could be splitting the properties table:</p>
<pre><b>PROPERTY_GROUP</b>
GroupId		(PK)
GroudDescription

<b>PROPERTY_TABLE</b>
GroupId		(PK)
PropertyId	(PK)
PropertyValue</pre>
<p>Then, your other tables would need to include the GroupId and the PropertyId.</p>
<p>The option of having 1 table for each group of properties is also a good one, and both have pros and cons.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.034 seconds using memcached
Object Caching 337/343 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 11:13:33 -->