<?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>siliconpizza.com &#187; SQL</title>
	<atom:link href="http://siliconpizza.com/blog/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://siliconpizza.com</link>
	<description>I'll have a slice of that</description>
	<lastBuildDate>Mon, 18 Jan 2010 10:46:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<style type="text/css">
@import url(http://www.google.com/cse/api/branding.css);
</style>
<div class="cse-branding-right" style="background-color:#FFFFFF;color:#000000">
  <div class="cse-branding-form">
    <form action="http://www.google.co.uk/cse" id="cse-search-box" target="_blank">
      <div>
        <input type="hidden" name="cx" value="partner-pub-0990092444456571:mfibeucn22n" />
        <input type="hidden" name="ie" value="ISO-8859-1" />
        <input type="text" name="q" size="31" />
        <input type="submit" name="sa" value="Search" />
      </div>
    </form>
  </div>
  <div class="cse-branding-logo">
    <img src="http://www.google.com/images/poweredby_transparent/poweredby_FFFFFF.gif" alt="Google" />
  </div>
  <div class="cse-branding-text">
    Custom Search
  </div>
</div>

<script type="text/javascript"><!--
google_ad_client = "pub-0990092444456571";
/* 728x90, created 7/24/08 */
google_ad_slot = "4348084769";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>	<item>
		<title>Pondering web server design decisions</title>
		<link>http://siliconpizza.com/blog/2008/05/16/pondering-web-server-design-decisions/</link>
		<comments>http://siliconpizza.com/blog/2008/05/16/pondering-web-server-design-decisions/#comments</comments>
		<pubDate>Fri, 16 May 2008 09:57:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Intranet]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://siliconpizza.com/blog/2008/05/16/pondering-web-server-design-decisions/</guid>
		<description><![CDATA[Due to the fact it is on my task list, I have been pondering the decision points for deploying a new web based application and supporting infrastructure. At a first stab there must be 400 questions which may be in the mix. The trick is to work out which ones are Critical to success, which [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=8cc0ef4416d627c65d4771f7e5701b17&amp;default=' alt='No Gravatar' width=40 height=40/><p>Due to the fact it is on my task list, I have been pondering the decision points for deploying a new web based application and supporting infrastructure. At a first stab there must be 400 questions which may be in the mix. The trick is to work out which ones are Critical to success, which ones have no impact, which ones can be linked and therefore become a single decision with many results. Does the implementation mean some of these decisions can be made after Go live (VMware lets you add extra resource to a guest operating system)<br />
How much input can the business customer provide?<br />
How much input can the application developer provider?<br />
What assumptions can you make?</p>
<p><span id="more-257"></span><br />
How much dynamic processing is going to take place, (this requires MORE CPU than static)?<br />
How many page impressions per hour are going to be required?<br />
How many hits per page are required?<br />
Do they need to host large Files, podcasts, video etc?<br />
Do they need to RUN reports on the Data?<br />
How many concurrent sessions are going to be supported (this may impact memory)?<br />
Is the developer using any .NET memory intensive data manipulation?<br />
Do they require Web HA or a WEB farm?<br />
Do they require SSL?<br />
How do you deal with SSL in Web HA or a Web Farm?<br />
How do you deal with Session state in Web HA or Web Farm?<br />
Will they require HA or web farm in the future, (your design must scale out)?<br />
Is the application data read or data write intensive?<br />
Is the Application Developer trusted to write safe code?<br />
Can you lower the .net trust settings to protect the Os from the application?<br />
Are file uploads required (this can impact scale out)?<br />
Local or NAS based content (NAS content will require extra identity configuration)?<br />
Where do you keep the web server logs?<br />
How long do you keep web server logs?<br />
What level of logging do you use for the Web server?<br />
How much pro-active monitoring do you do?<br />
How much Local disk space do you need?<br />
What extra .NET assemblies are going to be required?<br />
What extra COM components are going to be required?<br />
Does the developer understand he is not going to get console access?<br />
Does the App need scheduled tasks?<br />
Does the APP use DTS and / or SSIS?<br />
Does the App need a large TempDB?<br />
How big is TempDB?<br />
How big are the database logs files?<br />
Does the App need to partition the tables?<br />
DAS or SAN for the data disks?<br />
IF SAN, one big LUN or lots of LUNs (does it make a difference)?<br />
Does the app need database mirroring or Failover cluster?<br />
IF Database mirroring is done, is it HA or high perf?<br />
If database mirroring do you use a witness for auto failover?<br />
Does the app take a data feed from someother system?<br />
is this a linked server?<br />
is this a SSIS job?<br />
is this a regular bulk import?<br />
Are there any BLOB object being used?<br />
Can you trust the App developer to setup indexe on appropriate columns and with correct fill factors?<br />
I will add more when I think about them !</p>
]]></content:encoded>
			<wfw:commentRss>http://siliconpizza.com/blog/2008/05/16/pondering-web-server-design-decisions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server, the Queen&#8217;s english and Microsoft english</title>
		<link>http://siliconpizza.com/blog/2008/05/14/sql-server-the-queens-english-and-microsoft-english/</link>
		<comments>http://siliconpizza.com/blog/2008/05/14/sql-server-the-queens-english-and-microsoft-english/#comments</comments>
		<pubDate>Wed, 14 May 2008 14:25:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[UK English]]></category>

		<guid isPermaLink="false">http://siliconpizza.com/blog/2008/05/14/sql-server-the-queens-english-and-microsoft-english/</guid>
		<description><![CDATA[Guess who has just been had by the date format thing between the Queens English and Microsoft English Query Error: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value. The statement has been terminated. Datasource: PINBACK Native Error Code: 242 Executing SQL: Data was &#8217;14/05/2008 13:47:30&#8242; [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=8cc0ef4416d627c65d4771f7e5701b17&amp;default=' alt='No Gravatar' width=40 height=40/><p><a href="http://siliconpizza.com/files/2008/05/english.JPG" title="English setting in SQL"></a>Guess who has just been had by the date format thing between the Queens English and Microsoft English</p>
<p>Query Error: The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.<br />
The statement has been terminated. Datasource: PINBACK Native Error Code: 242 Executing SQL:</p>
<p>Data was &#8217;14/05/2008 13:47:30&#8242;</p>
<p>the Fix was the Language for the SQL user</p>
<p><a href="http://siliconpizza.com/files/2008/05/english.JPG" title="English setting in SQL"><img src="http://siliconpizza.com/files/2008/05/english.JPG" alt="English setting in SQL" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://siliconpizza.com/blog/2008/05/14/sql-server-the-queens-english-and-microsoft-english/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When to and when NOT to !</title>
		<link>http://siliconpizza.com/blog/2008/05/14/when-to-and-when-not-to/</link>
		<comments>http://siliconpizza.com/blog/2008/05/14/when-to-and-when-not-to/#comments</comments>
		<pubDate>Wed, 14 May 2008 09:07:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Unbelievable]]></category>
		<category><![CDATA[MSACCESS]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://siliconpizza.com/blog/2008/05/14/when-to-and-when-not-to/</guid>
		<description><![CDATA[Life is full of tools, tips, tricks and technology. However most people fail on the &#8220;When to&#8221; and &#8220;When NOT to&#8221; use a particular piece of technology. For example you would not use a pair of scissors to cut the lawn, or a lawn mower for a hair cut , yet they are both cutting / [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=8cc0ef4416d627c65d4771f7e5701b17&amp;default=' alt='No Gravatar' width=40 height=40/><p>Life is full of tools, tips, tricks and technology. However most people fail on the &#8220;When to&#8221; and &#8220;When NOT to&#8221; use a particular piece of technology.</p>
<p>For example you would not use a pair of scissors to cut the lawn, or a lawn mower for a hair cut , yet they are both cutting / triming devices !</p>
<p>So why it is we see some people use a full on SQL database to manage the population of a TEN item drop down box and other use MSAccess (and the MSACCESS GUI not a web app) to run a million pound revneue generating mission critical business application for 100 users over 20 sites</p>
]]></content:encoded>
			<wfw:commentRss>http://siliconpizza.com/blog/2008/05/14/when-to-and-when-not-to/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
