 




<?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>IT Answers &#187; Design</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 13:39:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>AS400 outsourcing</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/as400-outsourcing/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/as400-outsourcing/#comments</comments>
		<pubDate>Mon, 20 Aug 2012 20:58:46 +0000</pubDate>
		<dc:creator>scoad5</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/as400-outsourcing/</guid>
		<description><![CDATA[New Discussion Post by Sureyz]]></description>
				<content:encoded><![CDATA[New Discussion Post by Sureyz]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/as400-outsourcing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Access Filtering</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-filtering/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/access-filtering/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 17:37:59 +0000</pubDate>
		<dc:creator>Mwpv1</dc:creator>
				<category><![CDATA[Access 2007]]></category>
		<category><![CDATA[columns]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[formulas]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SORT]]></category>
		<category><![CDATA[totals functions]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a database which has multiple Product fields ( Prod Name, Prod Name 1, Prod Name 2, Prod Name 4). It is set up this way because one customer can order more than one product up to about four. The products are listed by number and the users can enter a product number into [...]]]></description>
				<content:encoded><![CDATA[<p>I have a database which has multiple Product fields ( Prod Name, Prod Name 1, Prod Name 2, Prod Name 4). It is set up this way because one customer can order more than one product up to about four. The products are listed by number and the users can enter a product number into each of the fields, so it is possible to have one product number in any of the fields with different orders. EX. A customer can order 1088 from Prod Name 1 another customer can order the same product but it might be in Prod Name 4 depending on the order they entered it. Is it possible to make Access produce a report that can grab all of the same product numbers form each of the different fields into one report and to a cumulative total for the number ordered at the same time? I tried to figure out a way to do it but so far no luck. Any help is greatly appreciated. Thank you in advance.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/access-filtering/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>database querying question SQLite</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/database-querying-question/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/database-querying-question/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 17:29:16 +0000</pubDate>
		<dc:creator>Kreyszig</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi I&#8217;m setting up an SQLIte database within my C application that will be used as an intermediate stage in converting filetypes. My design tries to keep data normalized &#8211; for example, i have an Entity table, and in that table each entity has an integer type. There is another EntityTypes table with a string [...]]]></description>
				<content:encoded><![CDATA[<p>Hi</p>
<p>I&#8217;m setting up an SQLIte database within my C application that will be used as an intermediate stage in converting filetypes. My design tries to keep data normalized &#8211; for example, i have an Entity table, and in that table each entity has an integer type. </p>
<p>There is another EntityTypes table with a string value for the type, and an integer primary key ID. The two are linked using a foreign key constraint.<br />
i.e:</p>
<pre>"create table Entities(
      ID integer primary key not null unique,
      Name varchar(512),
      Type integer,
      File integer,
      Filepos integer,
      foreign key (File) references Files(ID),
      foreign key (Type) references EntityTypes(ID));"

"create table EntityTypes(
      <b>ID </b>integer primary key not null unique,
      Name varchar(512));"</pre>
<p>When I want to insert an entity (foo) into the Entity table, I could do so armed with only the entity type name (bar) by using a subquery (ignoring the file stuff in the table):<br />
insert into Entities(Name, Type) values (&#8216;foo&#8217;, (select ID from EntityTypes where Name=&#8217;bar&#8217;));</p>
<p>But since I&#8217;m diong this all from inside my own app, I can also just make sure that I populate EntityTypes with ID, Name pairs that I know about (enum&#8217;d values and string-&gt;enum routines for example). </p>
<p>My question is: am I defeating the purpose of having a normalized design by keeping these enum values/routines? I presume I am going to see a gain in performance by not having to keep looking up the values in the EntityTypes table with every insert , or am I ignoring a likely caching/other efiiciency?<br />
Essentially it feels like I&#8217;m adding code that I might not actually need. </p>
<p>Your thoughts most appreciated!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/database-querying-question/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Designing a PMO for Maximum Effectiveness</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/designing-a-pmo-for-maximum-effectiveness/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/designing-a-pmo-for-maximum-effectiveness/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 21:30:50 +0000</pubDate>
		<dc:creator>Deby</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[PMO]]></category>
		<category><![CDATA[Project Management Office]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I was reading the answer to the question “What is the appropriate design for a project management office (PMO) for maximum effectiveness in the short-, mid- and long-term?” at:  http://expertanswercenter.techtarget.com/eac/expertAnswer/0,295208,sid63_gci1157387,00.html The slides seem to be very important to the answer, so I was hoping someone might know where those slides are located&#8230;]]></description>
				<content:encoded><![CDATA[<p>I was reading the answer to the question “What is the<br />
appropriate design for a project management office (PMO) for maximum<br />
effectiveness in the short-, mid- and long-term?” at:<b> </b> <a href="http://expertanswercenter.techtarget.com/eac/expertAnswer/0,295208,sid63_gci1157387,00.html">http://expertanswercenter.techtarget.com/eac/expertAnswer/0,295208,sid63_gci1157387,00.html</a><br />
<br/><br/><br />
The slides seem to be very important to the answer, so I<br />
was hoping someone might know where those slides are located&#8230;<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/designing-a-pmo-for-maximum-effectiveness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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/18 queries in 0.022 seconds using memcached
Object Caching 516/572 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 13:44:45 -->