<?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/"
	>

<channel>
	<title>Data Access Handbook</title>
	<atom:link href="http://dataaccesshandbook.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dataaccesshandbook.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 18 Jan 2010 19:02:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Data Access and Virtualization</title>
		<link>http://dataaccesshandbook.com/community/data-access-and-virtualization/</link>
		<comments>http://dataaccesshandbook.com/community/data-access-and-virtualization/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 18:50:19 +0000</pubDate>
		<dc:creator>rsteward</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/uncategorized/data-access-and-virtualization/</guid>
		<description><![CDATA[In this podcast Rob Steward explains why data access middleware makes a difference within a virtualization environment. The podcast lasts for 9:14.
Rob Steward: 
 

Click to play

I’ve been talking to a lot folks who have undergone a very large virtualization project. So, for example, they may be taking their entire infrastructure, and trying to virtualize [...]]]></description>
			<content:encoded><![CDATA[<p>In this podcast Rob Steward explains why data access middleware makes a difference within a virtualization environment. The podcast lasts for 9:14.</p>
<p><strong>Rob Steward: </strong></p>
<p><script src="http://blip.tv/scripts/pokkariPlayer.js?ver=2009070701" type="text/javascript"></script> <script src="http://blip.tv/syndication/write_player?skin=js&amp;posts_id=3121683&amp;source=3&amp;autoplay=false&amp;file_type=mp3&amp;player_width=320&amp;player_height=20" type="text/javascript"></script></p>
<div id="blip_movie_content_3121683"><a onclick="play_blip_movie_3121683(); return false;" rel="enclosure" href="http://blip.tv/file/get/ProgressDataDirect-DataAccessAndVirtualization267.mp3"><img title="Click to play" src="http://blip.tv/file/get/ProgressDataDirect-DataAccessAndVirtualization267.mp3.jpg" border="0" alt="Video thumbnail. Click to play." /></a><br />
<a onclick="play_blip_movie_3121683(); return false;" rel="enclosure" href="http://blip.tv/file/get/ProgressDataDirect-DataAccessAndVirtualization267.mp3">Click to play</a></div>
<p><script type="text/javascript"><!--
						       play_blip_movie_3121683();							
// --></script><br />
I’ve been talking to a lot folks who have undergone a very large virtualization project. So, for example, they may be taking their entire infrastructure, and trying to virtualize as much of it as they can. And obviously, the reason for doing virtualization is to lower costs. When you say virtualization most people think of VMWare, a Windows hypervisor, or some kind of virtualization environment where they take multiple machines and put them on a single piece of hardware. Interestingly enough, as people have started to do this, they’ve started to virtualize their entire environment. I’m starting to see much more maturity in terms of how they approach what they’re going to virtualize, and how they’re going to make the decisions of what to move to those environments.</p>
<p>I’m seeing one big trend in that people are having issues getting their databases themselves onto virtualized environments and maintaining anywhere close to the throughput that they’re used in a non-virtualized environment. So, for example, one of the guys that works for me went to the <a href="http://www.vmworld.com/index.jspa">VMWorld Conference</a> that VMWare recently held and noticed in a lot of the sessions people brought up the question of: can I run Oracle database efficiently on a VMWare environment? And obviously, from the approach that WMWare themselves took at that conference, this is an issue that’s near and dear to their heart. And it’s also — the reason I bring that up is that, it’s also a concern that I’ve heard multiple times in talking to customers. Specifically with Oracle, but I’m sure the same concerns exist with every database. And that is, when we put the database on that virtual machine, we don’t get the same amount of throughput that we do in the non-virtualized environment.</p>
<p>For example, I visited one customer who was, again, virtualizing their whole environment, and they came to me and said, ‘Rob, can you help with this problem that we’re having in that when we put our databases on virtual machines, we can’t get the throughput that we need to support our business.’ This particular customer had set up a very nice testing infrastructure where they would take a machine that was not virtualized, they would move it over with its applications, with its operating system, with everything, put it on a VMWare machine, run it, run their tests and measure whether the throughput that they got through that application, or through that entire application’s stack was at least 90% as good as it was in the non-virtualized environment. And for any app, or any application’s stack that they could get to that 90% throughput, they would then virtualize it, put it in production in a virtual environment. Which I thought was a very interesting way to go about it, because they had done a lot of setup for a lab to measure these things, which of course the VMWare tools give you really good ability to measure these things, but they were testing every single application and every single application stack. Now, they never could get that 90% number out of any Oracle databases that they had virtualized. So, they approached me to ask, ‘Rob, you know, can the database middleware help us get that database server running at 90%?’ And the answer that I had for them was, to some degree, we can help that processing that goes on in the database server, because the database middleware influences the amount of processing on the database server, because of the way it sends, say the way it may execute a statement, the way it may minimize the amount of data that has to be returned, or minimize the number of networks round trips. And also there are options within database middleware, your JDBC drivers are going to be drivers that can affect whether certain processing happens on a server on the database itself or whether it happens on decline. So, for example, and probably one of the biggest things that the database middleware can influence on how much processing goes on on the database is, whether character set conversions happen within the drivers or within that database middleware, or whether they happen on the database server. Typically, they’re options which you can set to affect where that processing occurs, so where do you want it? Do you want to offload it to a database; do you want it in the middleware? So I sat with this customer, and looked at some things and we were able to make a difference, but we still were not able to get that database running at 90% throughput.</p>
<p>This is one of the areas that I’m doing some research within my team on how we can help virtualized environments. How Progress DataDirect can help to minimize the amount of processing that happens on the database server. Why does data access middleware matter at all? Why does it make a difference in a virtualization environment? In the<a href="http://www.dataaccesshandbook.com/"> book</a> and <a href="http://blogs.datadirect.com/2009/07/virtualizations-implications-on-database-applications.html">on this blog</a> we’ve talked a lot about why it really matters and what kind of differences it can make in terms of performance. If you think through what the value of virtualization really is, then you see we’ve got machines that are sitting around that are only being utilized part of the time, so what we want to do is instead of the 80% of the time that a machine is sitting there doing nothing, let’s put it to work. So the idea is I don’t have to have five machines, I can have one. So that saves you not only in terms of the machine cost but in <a href="http://blogs.zdnet.com/virtualization/?p=141">terms of electricity, in terms of air conditioning</a>, in terms of space in your data center. These things can add up to millions of dollars for companies of any size. That’s why everyone is looking to virtualization. If you think through any sort of normal business application, it spends typically between 60 and 80 percent of its time accessing the data, so if we can cut that amount of time and those amount of resources in half it makes a huge difference in the overall resource usage and throughput of your application.</p>
<p>Let’s say your application is 60% of its time doing data access and 60% of its resources. If we can cut that in half then we’ve just reduced the resource usage of that application by 30%. That 30%, as we start to add additional virtual machines and additional applications to those same virtual machines, that difference means we can start to put a lot more virtual machines on the same piece of hardware. The <a href="http://www.datadirect.com/products/data-connectivity/index.ssp">data access middleware</a> is making that kind of difference on the resource usage within the application.</p>
<input id="gwProxy" type="hidden" />
<p><!--Session data--><br />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;t=Data%20Access%20and%20Virtualization" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=In%20this%20podcast%20Rob%20Steward%20explains%20why%20data%20access%20middleware%20makes%20a%20difference%20within%20a%20virtualization%20environment.%20The%20podcast%20lasts%20for%209%3A14.%0D%0A%0D%0ARob%20Steward%3A%20%0D%0A%0D%0A%20%0D%0A%0D%0AClick%20to%20play%0D%0A%0D%0AI%E2%80%99ve%20been%20talking%20to%20a%20lot%20folks%20who%20have%20undergone%20a%20very" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F&amp;title=Data%20Access%20and%20Virtualization" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-and-virtualization%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/data-access-and-virtualization/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Implications of Storing Data on the Cloud</title>
		<link>http://dataaccesshandbook.com/community/implications-of-storing-data-on-the-cloud/</link>
		<comments>http://dataaccesshandbook.com/community/implications-of-storing-data-on-the-cloud/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 18:52:41 +0000</pubDate>
		<dc:creator>rsteward</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<category><![CDATA[Cloud computing]]></category>

		<category><![CDATA[middleware]]></category>

		<category><![CDATA[Storing Data]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/community/implications-of-storing-data-on-the-cloud/</guid>
		<description><![CDATA[n this podcast Rob Steward explains how clouds are currently used for storing data and how this is going to impact the IT landscape. This podcast lasts for 3:44 and can be listened to here: http://blogs.datadirect.com/media/ImplicationsOfStoringDataOnCloud.mp3
Rob Steward:
There’s a lot of data being moved out into the cloud, and there’s a lot of different paradigms that [...]]]></description>
			<content:encoded><![CDATA[<p>n this podcast Rob Steward explains how clouds are currently used for storing data and how this is going to impact the IT landscape. <span id="more-688"></span>This podcast lasts for 3:44 and can be listened to here: <a href="http://blogs.datadirect.com/media/ImplicationsOfStoringDataOnCloud.mp3">http://blogs.datadirect.com/media/ImplicationsOfStoringDataOnCloud.mp3</a></p>
<p><strong>Rob Steward</strong>:</p>
<p>There’s a lot of data being moved out into the cloud, and there’s a lot of different paradigms that are coming up in order to access that data, so let me give you an example. Microsoft has recently moved <a href="http://www.brentozar.com/sql/sql-server-in-the-cloud/">SQL Server in the Cloud</a>, Amazon’s got <a href="http://aws.amazon.com/simpledb/">SimpleDB</a>, there are a lot of other ones out there that I could talk about. And those are really databases within the clouds. If you think about it, SAS applications — so something like a <a href="http://www.datadirect.com/company/news/press/pressitem/pressrelease_1264479/index.ssp">NetSuite</a> or a <a href="http://www.salesforce.com/">Salesforce CRM</a> or an application that you’ve written in Force.com for that platform of Salesforce’s are cloud-based apps. The data that lives within Salesforce.com, it’s really your corporate data. It’s how do you access that data? How do you get to the data within Simple DB or within Salesforce.com or with any of the platforms or any of the SAS vendors out there? You know, you may use Workday or you may use any of the popular — NetSuite or any of the more popular SaaS applications out there.</p>
<p>It creates an interesting data integration problem, and the reason that I say this is if all of your customer data sits within Salesforce but all of your ERP data sits within SAP inside your enterprise, how do you combine that data? How do you integrate that data? And so there are very interesting things happening in the cloud to allow you to do integration. There’s companies like <a href="http://www.pervasivesoftware.com/Pages/default.aspx">Pervasive</a> and <a href="http://www.castiron.com/">Cast Iron</a> that are all producing solutions that can do integrations point-to-point within the clouds.</p>
<p><a href="http://blogs.datadirect.com/wp-content/uploads/2009/12/clip_image002.jpg"><img src="http://blogs.datadirect.com/wp-content/uploads/2009/12/clip_image002_thumb.jpg" border="0" alt="clip_image002" width="488" height="325" /></a></p>
<p>(Image credit: Cloud Computing by <a href="http://search.creativecommons.org/">Kevin Krejci</a>)</p>
<p>Well, one of the things that we’re looking at, at <a href="http://www.datadirect.com/">Progress DataDirect</a>, is how do we integrate that data that’s out there in your Salesforce app or any of those SAS applications, or within those databases in the cloud. How do you integrate them with your data that’s inside your firewall? And how do you integrate them into the apps that you’re familiar with that run on your desktop? So if you like <a href="http://www.crystalreports.com/">Crystal Reports</a> to do reporting, how do you hook that up and get your data out of <a href="http://www.netsuite.com/portal/home.shtml">NetSuite</a> and be reporting using Crystal Reports on that? So I think that there are a lot of interesting questions, and I’ll just say that we at <a href="http://www.datadirect.com/">Progress DataDirect</a> are going to solve some of these problems of how you integrate through standards based APIs, but also the more general question about data in the cloud — I don’t see a big movement yet outside of SAS applications. A lot of people use a Salesforce or NetSuite. What I don’t see yet is, Amazon SimpleDB or SQL Server in the Cloud or any of those databases that just live in the cloud — I don’t see yet real business applications running on them. I see people playing with them. So I’m inclined to say the jury’s still out on whether those are viable as just back-end data stores. We’ll see as we move forward.</p>
<p>Tagged as: <a href="http://blogs.datadirect.com/tag/cloud">Cloud</a>, <a href="http://blogs.datadirect.com/tag/netsuite">NetSuite</a>, <a href="http://blogs.datadirect.com/tag/salesforce">SalesForce</a></p>
<input id="gwProxy" type="hidden" />
<p><!--Session data--></p>
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<p><!--Session data--></p>
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<p><!--Session data--><br />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;t=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=n%20this%20podcast%20Rob%20Steward%20explains%20how%20clouds%20are%20currently%20used%20for%20storing%20data%20and%20how%20this%20is%20going%20to%20impact%20the%20IT%20landscape.%20This%20podcast%20lasts%20for%203%3A44%20and%20can%20be%20listened%20to%20here%3A%20http%3A%2F%2Fblogs.datadirect.com%2Fmedia%2FImplicationsOfStoringDataO" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F&amp;title=Implications%20of%20Storing%20Data%20on%20the%20Cloud" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fimplications-of-storing-data-on-the-cloud%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/implications-of-storing-data-on-the-cloud/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reflections on ITARC</title>
		<link>http://dataaccesshandbook.com/community/reflections-on-itarc/</link>
		<comments>http://dataaccesshandbook.com/community/reflections-on-itarc/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 18:53:46 +0000</pubDate>
		<dc:creator>rsteward</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/community/reflections-on-itarc/</guid>
		<description><![CDATA[Rob Steward recently attended the IT Architect Regional Conference: Thought Leader Edition, and spoke on “Achieving Optimal Database Application Performance and Scalability.” In this podcast Rob shares about his ITARC experience. The podcast lasts for 1:57 seconds and can be listened to here: http://blogs.datadirect.com/media/ITARCConference.mp3
Rob Steward:
So I thought it was a great conference, fairly small, less [...]]]></description>
			<content:encoded><![CDATA[<p>Rob Steward recently attended the <a href="http://www.iasahome.org/web/itarc/2009/nyc/topics">IT Architect Regional Conference: Thought Leader Edition</a>, and spoke on “Achieving Optimal Database Application Performance and Scalability.” In this podcast Rob shares about his ITARC experience. <span id="more-689"></span>The podcast lasts for 1:57 seconds and can be listened to here: <a href="http://blogs.datadirect.com/media/ITARCConference.mp3">http://blogs.datadirect.com/media/ITARCConference.mp3</a></p>
<p><strong>Rob Steward</strong>:</p>
<p>So I thought it was a great conference, fairly small, less than 100 people there, but there were some really big names in the software architecture world: <a href="http://www.handbookofsoftwarearchitecture.com/index.jsp?page=Blog">Grady Booch</a> was there, <a href="http://www.amazon.com/s/ref=ntt_at_ep_srch/179-7346822-7136914?ie=UTF8&amp;search-alias=books&amp;field-author=Angela+Yochem&amp;sort=relevancerank">Angela Yochem</a>, <a href="http://en.wikipedia.org/wiki/Bill_Inmon">Bill Inmon</a>, and <a href="http://it.toolbox.com/blogs/madgreek/john-zachmans-acceptance-speech-for-his-lifetime-achievement-award-33001">John Zachman</a>. There were a lot of big headliner names, and I thought the attendees brought a very high level of knowledge. I was impressed with everybody that I talked to. With less than 100 people and <a href="http://www.iasahome.org/web/itarc/2009/nyc/topics">six or eight sessions going on,</a> none of the sessions were very large.</p>
<p>My session on achieving optimum performance was actually a packed room. There were no empty chairs, although it was a small room. I really like environments like that where you’ve got a small, much more cozy audience. At this conference – due to the high level of knowledge of the attendees and the cozy setting — I got to ask questions during my session, and to be honest, as a speaker I would much rather stand up there and be asked questions than just point at a screen and lecture. I thought, again, there were some really good questions that I got. I enjoyed talking with the attendees. I enjoyed listening to the panel discussions. I thought it was a very well run conference and very well worth the time. Really enjoyed it.</p>
<p><a href="http://blogs.datadirect.com/wp-content/uploads/2009/11/clip_image0027.jpg"><img src="http://blogs.datadirect.com/wp-content/uploads/2009/11/clip_image0027_thumb1.jpg" border="0" alt="clip_image002[7]" width="435" height="126" /></a></p>
<input id="gwProxy" type="hidden" />
<p><!--Session data--><br />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;t=Reflections%20on%20ITARC" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=Rob%20Steward%20recently%20attended%20the%20IT%20Architect%20Regional%20Conference%3A%20Thought%20Leader%20Edition%2C%20and%20spoke%20on%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%20and%20Scalability.%E2%80%9D%20In%20this%20podcast%20Rob%20shares%20about%20his%20ITARC%20experience.%20The%20podcast%20last" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F&amp;title=Reflections%20on%20ITARC" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Freflections-on-itarc%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/reflections-on-itarc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Leading Architects to Speak at IT Architect Regional Conference</title>
		<link>http://dataaccesshandbook.com/community/leading-architects-to-speak-at-it-architect-regional-conference/</link>
		<comments>http://dataaccesshandbook.com/community/leading-architects-to-speak-at-it-architect-regional-conference/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 09:00:40 +0000</pubDate>
		<dc:creator>rsteward</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/community/leading-architects-to-speak-at-it-architect-regional-conference/</guid>
		<description><![CDATA[I’m excited to be speaking at the upcoming 2009 IASA IT Architect Regional Conference, Thought Leader Edition. The conference will bring together leading architects and will offer more than 30 seminars. The October 12 – 14 conference is New York’s largest to address the needs of IT architects, and attendees are able to select from [...]]]></description>
			<content:encoded><![CDATA[<p>I’m excited to be speaking at the upcoming 2009 IASA <a href="http://www.iasahome.org/web/itarc/2009/NYC">IT Architect Regional Conference, Thought Leader Edition</a>. The conference will bring together leading architects and will offer more than 30 seminars. The October 12 – 14 conference is New York’s largest to address the needs of IT architects, and attendees are able to select from five specialty tracks (Enterprise, Infrastructure, Software, Information and Fundamentals). For more information, see Zain Naboulsi’s <a href="http://blogs.msdn.com/zainnab/archive/2009/09/01/new-york-architecture-titans-meeting.aspx">New York - Architecture Titans Meeting </a>post.</p>
<p>I encourage you to attend my “Achieving Optimal Database Application Performance and Scalability” presentation. I<em> </em>will<em> </em>be sharing tips and techniques to successfully predict, diagnose and solve issues in database applications. Exploring some themes and content featured in the &#8220;<a href="http://www.dataaccesshandbook.com/">The Data Access Handbook</a>,” I plan to address application design, development and deployment strategies with an emphasis on the role of database middleware on performance. What makes my presentation particularly unique is that it tackles performance issues outside the database – that is, problems in the software that connects applications to databases.</p>
<p>Key topics I will address include:</p>
<ul>
<li>Understanding the different components of database middleware that cause performance issues</li>
<li>How to design for optimal performance</li>
<li>How to write good application code</li>
<li>How to troubleshoot your own performance issues and to set realistic performance expectations</li>
</ul>
<p>I hope to see in October at<a href="http://www.iasahome.org/web/home/blogs/-/blogs/206710"> ITARC</a>!</p>
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;t=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=I%E2%80%99m%20excited%20to%20be%20speaking%20at%20the%20upcoming%202009%20IASA%20IT%20Architect%20Regional%20Conference%2C%20Thought%20Leader%20Edition.%20The%20conference%20will%20bring%20together%20leading%20architects%20and%20will%20offer%20more%20than%2030%20seminars.%20The%20October%2012%20%E2%80%93%2014%20conference%20is%20New%20York%E2" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F&amp;title=Leading%20Architects%20to%20Speak%20at%20IT%20Architect%20Regional%20Conference" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fleading-architects-to-speak-at-it-architect-regional-conference%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/leading-architects-to-speak-at-it-architect-regional-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Brent Ozar &#8211; SQL Server DBA, &#34;What&#8217;s On My Bookshelf?&#34; September 28, 2009</title>
		<link>http://dataaccesshandbook.com/news/brent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009/</link>
		<comments>http://dataaccesshandbook.com/news/brent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 15:14:46 +0000</pubDate>
		<dc:creator>mnelson</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/news/brent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009/</guid>
		<description><![CDATA[http://www.brentozar.com/archive/2009/09/whats-on-my-bookshelf/



Like what you see?  Share and Enjoy:


	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p><a title="http://www.brentozar.com/archive/2009/09/whats-on-my-bookshelf/" href="http://www.brentozar.com/archive/2009/09/whats-on-my-bookshelf/">http://www.brentozar.com/archive/2009/09/whats-on-my-bookshelf/</a></p>



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;t=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=http%3A%2F%2Fwww.brentozar.com%2Farchive%2F2009%2F09%2Fwhats-on-my-bookshelf%2F" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F&amp;title=Brent%20Ozar%20%26ndash%3B%20SQL%20Server%20DBA%2C%20%26quot%3BWhat%27s%20On%20My%20Bookshelf%3F%26quot%3B%20September%2028%2C%202009" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fbrent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/news/brent-ozar-sql-server-dba-whats-on-my-bookshelf-september-28-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Advantages of Wire Protocol Drivers</title>
		<link>http://dataaccesshandbook.com/community/the-advantages-of-wire-protocol-drivers/</link>
		<comments>http://dataaccesshandbook.com/community/the-advantages-of-wire-protocol-drivers/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 18:00:20 +0000</pubDate>
		<dc:creator>mnelson</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/community/the-advantages-of-wire-protocol-drivers/</guid>
		<description><![CDATA[In this podcast Rob Steward explains the advantages of using wire protocol drivers. This podcast is runs for 2:56. 
You may listen to the podcast here: http://blogs.datadirect.com/media/RobSteward_WireProtocolDatabaseDrivers.mp3
 
Rob Steward:
So when we talk specifically about wire protocol architecture drivers, this is something where really what you&#8217;re talking about is a type 4 JDBC or a completely [...]]]></description>
			<content:encoded><![CDATA[<p>In this podcast Rob Steward explains the advantages of using wire protocol drivers. This podcast is runs for 2:56. </p>
<p>You may listen to the podcast here: <a href="http://blogs.datadirect.com/media/RobSteward_WireProtocolDatabaseDrivers.mp3">http://blogs.datadirect.com/media/RobSteward_WireProtocolDatabaseDrivers.mp3</a></p>
<p> <b><u></u></b>
<p><b><u>Rob Steward</u></b>:</p>
<p>So when we talk specifically about wire protocol architecture drivers, this is something where really what you&#8217;re talking about is a <a href="http://paragdongre.wordpress.com/2009/04/16/jdbc-driver-types/">type 4 JDBC</a> or a completely managed, 100% managed ADO.NET data provider, or in the case of ODBC, you have an ODBC driver which talks directly, opens up a <a href="http://blog.silviosilva.com/index.php/2009/07/15/berkeley-socket-api-creating-a-tcpip-server-in-c/">TCP/IP socket</a> or some network socket to the database and directly communicates using the network protocol and using the packets that the databases themselves understand. So that&#8217;s kind of the difference between a wire protocol and a non-wire protocol, so you may have pretty much any type 4 JDBC driver is going to be talking a wire protocol to the database, because it has to stay within the DM and it can&#8217;t call any native OS. A <a href="http://blog.csdn.net/TravisLi4891/archive/2009/09/06/4525269.aspx">type 2 JDBC</a> driver or a partially managed ADO.NET or what most people typically think of as ODBC, you&#8217;ve got that driver component on top of some other native component, and it&#8217;s that native component that talks across the wire to the database, and the driver itself does not talk directly. So there&#8217;s a lot of differences, a lot of different architectures out there with which to build the driver.</p>
<p>Now, of course, the obvious question is which one is best, and certainly, in my opinion, the best ones are the wire protocol drivers and the type 4 JDBC because in terms of performance, scalability, functionality, those are always going to be better in terms of performance and scalability in particular, and reliability, as well. When you get into pure Java solutions within the Java environment or 100% managed within .NET, theoretically you can&#8217;t have things like <a href="http://cercsresearch.blogspot.com/2009/08/buffer-overruns.html">buffer overruns</a> or memory leaks, so reliability is increased with those type 4 wire protocol type solutions, as well. So &#8212; and also in terms of performance and scalability, the fact that it is a wire protocol, let&#8217;s say wire protocol ODBC, where that driver talks directly to the database and not through some intermediate component, it&#8217;s going to perform better because it&#8217;s designed to do exactly what your ODBC application needs. It doesn&#8217;t have all this other stuff. It doesn&#8217;t have double sets of buffering, one in that client layer, one in the driver layer, and the reliability, again, is going to be increased. So, you know, in my opinion certainly type 4 JDBC, 100% managed in the <a href="http://forums.aspfree.com/net-development-11/">.NET world</a>, and wire protocol ODBC are somewhat equivalent when you think about architecture, and those, to me, would always be the best performing and best scaling solutions.</p>



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;t=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=In%20this%20podcast%20Rob%20Steward%20explains%20the%20advantages%20of%20using%20wire%20protocol%20drivers.%20This%20podcast%20is%20runs%20for%202%3A56.%20%20%20You%20may%20listen%20to%20the%20podcast%20here%3A%20http%3A%2F%2Fblogs.datadirect.com%2Fmedia%2FRobSteward_WireProtocolDatabaseDrivers.mp3%20%20%20Rob%20Steward%3A%20%20So%20w" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F&amp;title=The%20Advantages%20of%20Wire%20Protocol%20Drivers" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fthe-advantages-of-wire-protocol-drivers%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/the-advantages-of-wire-protocol-drivers/feed/</wfw:commentRss>
<enclosure url="http://blogs.datadirect.com/media/RobSteward_WireProtocolDatabaseDrivers.mp3" length="2825934" type="audio/mpeg" />
		</item>
		<item>
		<title>Data Access Considerations Regarding SOA</title>
		<link>http://dataaccesshandbook.com/community/data-access-considerations-regarding-soa/</link>
		<comments>http://dataaccesshandbook.com/community/data-access-considerations-regarding-soa/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 09:16:36 +0000</pubDate>
		<dc:creator>mnelson</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<category><![CDATA[Data Access]]></category>

		<category><![CDATA[Services]]></category>

		<category><![CDATA[SOA]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/community/data-access-considerations-regarding-soa/</guid>
		<description><![CDATA[In the Data Access Handbook, there&#8217;s a chapter on service oriented architecture. In this podcast Rob provides a number of considerations regarding SOA (Service Oriented Architecture) that changes data access strategies. This podcast last for 5:37. 
You may listen to the Data Access Considerations Regarding SOA podcast here: http://blogs.datadirect.com/media/RobSteward_SOADataAccessStrategies.mp3
Rob Steward:
So Mike, I think what&#8217;s particular [...]]]></description>
			<content:encoded><![CDATA[<p>In the Data Access Handbook, there&#8217;s a chapter on service oriented architecture. In this podcast Rob provides a number of considerations regarding SOA (Service Oriented Architecture) that changes data access strategies. This podcast last for 5:37. <span id="more-680"></span></p>
<p>You may listen to the Data Access Considerations Regarding SOA podcast here: <a href="http://blogs.datadirect.com/media/RobSteward_SOADataAccessStrategies.mp3">http://blogs.datadirect.com/media/RobSteward_SOADataAccessStrategies.mp3</a></p>
<p><strong>Rob Steward</strong><strong>:</strong></p>
<p>So Mike, I think what&#8217;s particular to data access as in <a href="http://systemsintegration.searchsoa.com/kw;Data+Access+Middleware/service-oriented-content.htm">service oriented architecture reference to data access</a>, there&#8217;s some very specific things that we&#8217;ve seen in the real world, so SOA&#8217;s been around really as an idea for about eight or ten years. What we&#8217;ve really seen is that in the last three to four years is real world implementation starting to roll out, and so what we share <a href="http://www.dataaccesshandbook.com/">in the book</a> is: What is it that we&#8217;ve seen people do that they could do better if they were to change a few things with their data access code within service oriented architectures?</p>
<p>So one of the things that I&#8217;ll talk about right now is <a href="http://www.soainstitute.org/articles/article/article/the-four-tenets-of-service-orientation.html">one of the tenets</a> of service oriented architecture is reuse of components, so really <a href="http://www.ebizq.net/blogs/2009/08/taking_soa_to_the_next_level_d.php">when companies do service oriented architecture</a>s they&#8217;re doing it to make themselves <a href="http://blogs.zdnet.com/service-oriented/?p=1963">more agile in terms of the business</a>, so that&#8217;s <a href="http://rvsoapbox.blogspot.com/2009/08/economics-of-agility.html">the main thing that you&#8217;re after with SOA</a>. So another tenet of SOA that goes along with it is you want to capture best practices. So a big thing with SOA is you build your service, or build your services, you are capturing best practices. So for example, if I build a service that takes some item out of my inventory, then I want to build that service in a way that every application&#8217;s going to use it &#8212; that&#8217;s why we build the thing, so they can be reused &#8212; but when I do it, I do it in the best possible way. That way every application that uses that service is going to inherit that best coding that I did within that inventory service. So what that means, if you think about that from a data access point of view, is that the data access code that was in that service to remove that item from the inventory, if it&#8217;s written well then all the applications that use it will have good data access practices just by the fact that they&#8217;re using that service.</p>
<p>Now, what generally happens in companies that I&#8217;ve seen implement service oriented architecture is that they have some architects who understand services, understand service oriented architecture, understand how to implement it, they talk about governance, they talk about all the things that go around managing services, but what these guys are not is experts in <a href="http://www.ebizq.net/topics/soa_management/features/11676.html">data access</a>. So what I&#8217;ve seen in many places is people will write a service &#8212; let&#8217;s take that example again, the inventory service &#8212; and they write within it some data access code, and that <a href="http://dataaccesshandbook.com/community/the-implications-of-excellent-coding-part-2-real-world-examples/">data access code</a> may not be the best. It may not be the best way to do it: it may be slow or maybe it&#8217;s OK. What I see more often is that for the first application that needs that service, they write the service, it works fine for them, that application has 50 users, right, and it works fine for them, but again, the tenets of service oriented architecture is another application is going to come along and it&#8217;s going to use that service, so this service that one team wrote to begin with, that services 50 users within an application, all of a sudden here comes the second application. Now we&#8217;ve got 100 users, and now a third application, and we&#8217;ve got 200 users, and before you know it you&#8217;ve got 500 or 1,000 users on this service that was originally working fine when only 50 people were using it, but once it got to 500, it was working way too slow. Now, this is something that I&#8217;ve seen happen over and over and over. Services get rolled out, they work fine, but as you start to scale up your service oriented architecture and you get more people using them, the scalability just isn&#8217;t there.</p>
<p>So here&#8217;s my tip for that: I mentioned earlier that you typically have the services architects when you do SOA. What you also need is data access, the <a href="http://en.wikipedia.org/wiki/Data_architect">data architect</a> involved as well, so you&#8217;ve got people who know what is the best way to access this data. Make sure they&#8217;re involved in your planning for your services. Even when you have an application that&#8217;s only got a few users and you&#8217;re writing a service for it, remember service oriented architecture is designed such so that more applications can come along after you and use that service, so make sure that you design those services and use all your knowledge of data access and use the things that we talk about in <a href="http://www.dataaccesshandbook.com/community">the book</a> to make each service a much better performing service and much more scalable. Again, I&#8217;ve seen this over and over in the last few years where it rolled out, it was fine, but as soon as you started adding users to it you found out, &#8220;Oh, you know what, we really have to go back and rewrite that data access code because there&#8217;s a much better way to do it and make it more scalable.&#8221;</p>
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;t=Data%20Access%20Considerations%20Regarding%20SOA" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=In%20the%20Data%20Access%20Handbook%2C%20there%27s%20a%20chapter%20on%20service%20oriented%20architecture.%20In%20this%20podcast%20Rob%20provides%20a%20number%20of%20considerations%20regarding%20SOA%20%28Service%20Oriented%20Architecture%29%20that%20changes%20data%20access%20strategies.%20This%20podcast%20last%20for%205%3A37.%20%0D%0A" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F&amp;title=Data%20Access%20Considerations%20Regarding%20SOA" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fdata-access-considerations-regarding-soa%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/data-access-considerations-regarding-soa/feed/</wfw:commentRss>
<enclosure url="http://blogs.datadirect.com/media/RobSteward_SOADataAccessStrategies.mp3" length="5402577" type="audio/mpeg" />
		</item>
		<item>
		<title>ebizQ, &#8220;Data Access in SOA Environments,&#8221; Sept. 9, 2009</title>
		<link>http://dataaccesshandbook.com/news/ebizq-data-access-in-soa-environments-sept-9-2009/</link>
		<comments>http://dataaccesshandbook.com/news/ebizq-data-access-in-soa-environments-sept-9-2009/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 15:35:36 +0000</pubDate>
		<dc:creator>mnelson</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/news/ebizq-data-access-in-soa-environments-sept-9-2009/</guid>
		<description><![CDATA[http://www.ebizq.net/topics/soa_management/features/11676.html



Like what you see?  Share and Enjoy:


	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ebizq.net/topics/soa_management/features/11676.html">http://www.ebizq.net/topics/soa_management/features/11676.html</a></p>



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;t=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=http%3A%2F%2Fwww.ebizq.net%2Ftopics%2Fsoa_management%2Ffeatures%2F11676.html" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F&amp;title=ebizQ%2C%20%26ldquo%3BData%20Access%20in%20SOA%20Environments%2C%26rdquo%3B%20Sept.%209%2C%202009" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Febizq-data-access-in-soa-environments-sept-9-2009%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/news/ebizq-data-access-in-soa-environments-sept-9-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Enterprise Systems Journal, “Achieving Optimal Database Application Performance: Benchmark Tips and Techniques,” Sept. 8, 2009</title>
		<link>http://dataaccesshandbook.com/news/enterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009/</link>
		<comments>http://dataaccesshandbook.com/news/enterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 15:00:18 +0000</pubDate>
		<dc:creator>mnelson</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/news/enterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009/</guid>
		<description><![CDATA[http://esj.com/articles/2009/09/08/achieving-database-performance-1.aspx?sc_lang=en





Like what you see?  Share and Enjoy:


	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p><a href="http://esj.com/articles/2009/09/08/achieving-database-performance-1.aspx?sc_lang=en">http://esj.com/articles/2009/09/08/achieving-database-performance-1.aspx?sc_lang=en</a></p>
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;t=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=http%3A%2F%2Fesj.com%2Farticles%2F2009%2F09%2F08%2Fachieving-database-performance-1.aspx%3Fsc_lang%3Den%0D%0A%0D%0A" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F&amp;title=Enterprise%20Systems%20Journal%2C%20%E2%80%9CAchieving%20Optimal%20Database%20Application%20Performance%3A%20Benchmark%20Tips%20and%20Techniques%2C%E2%80%9D%20Sept.%208%2C%202009" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fnews%2Fenterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/news/enterprise-systems-journal-achieving-optimal-database-application-performance-benchmark-tips-and-techniques-sept-8-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Overcoming Memory Bottlenecks</title>
		<link>http://dataaccesshandbook.com/community/overcoming-memory-bottlenecks/</link>
		<comments>http://dataaccesshandbook.com/community/overcoming-memory-bottlenecks/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 21:45:28 +0000</pubDate>
		<dc:creator>mnelson</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<category><![CDATA[Data Access]]></category>

		<category><![CDATA[database performance]]></category>

		<category><![CDATA[middleware]]></category>

		<guid isPermaLink="false">http://dataaccesshandbook.com/community/overcoming-memory-bottlenecks/</guid>
		<description><![CDATA[The Data Access Handbook covers numerous causes for database bottlenecks, including hardware constraints, particularly with regards to memory issues. In this podcast Rob addresses issues that cause memory bottlenecks and explains how they can be overcome. The podcast lasts for 4:32.
You may listen to the podcast here: http://blogs.datadirect.com/media/RobSteward_MemoryDataAccessBottlenecks.mp3

Rob Steward:
So there&#8217;s a specific class of issues [...]]]></description>
			<content:encoded><![CDATA[<p>The <em><a href="http://www.dataaccesshandbook.com/community">Data Access Handbook</a></em> covers numerous causes for database bottlenecks, including hardware constraints, particularly with regards to memory issues. In this podcast Rob addresses issues that cause memory bottlenecks and explains how they can be overcome. The podcast lasts for 4:32.<span id="more-670"></span></p>
<p>You may listen to the podcast here: <a href="http://blogs.datadirect.com/media/RobSteward_MemoryDataAccessBottlenecks.mp3">http://blogs.datadirect.com/media/RobSteward_MemoryDataAccessBottlenecks.mp3</a></p>
<p><strong></strong></p>
<p><strong><span style="text-decoration: underline;">Rob Steward</span></strong>:</p>
<p>So there&#8217;s a specific class of issues that will happen that will cause you to use a lot more memory than you may need or you may want. In <a href="http://www.dataaccesshandbook.com/">the book</a>, we talk about a number of different tips that are sort of related, but we don&#8217;t &#8212; it&#8217;s a great question because we don&#8217;t have it organized necessarily all in one spot saying &#8220;Here&#8217;s a thing that can affect memory.&#8221; So the biggest thing I would say that can affect memory is the data that you retrieve, if it contains long data. So if the data that you&#8217;re retrieving or trying to insert or update contains pictures or papers, very long books, very long string fields or character fields, typically they&#8217;re going to be in a clob or a blob column or a long or a text or an image or any of those data types across the different databases that can store, say, a 2GB piece of data in one column in one row. So for example, this week I had a customer who was getting an out of memory error, and when we started to look at the code, what we found was they were trying to insert some pictures, and actually their pictures were getting up close to 2GB, but what would happen was within &#8212; and this particular case was <a href="http://blogs.msdn.com/adonet/archive/2009/08/19/datadirect-releases-entity-framework-provider-for-oracle.aspx">ADO.NET</a> &#8212; what was happening was they were loading that entire picture into memory, into an insert in the database, but there are a lot of ways within ADO.NET and within .NET to stream that picture in not all at once, and again, the exact error that they were getting was that they were getting an <a href="http://support.microsoft.com/kb/825680">out of memory exception</a>, so this is exactly, you know, the case that we&#8217;re talking about. Once they change their code to use the streaming interfaces that exist in .NET, everything looks fine. So again, there was that long data, you know &#8212; the same types of interfaces existed in JDBC. And in ODBC, you can also stream data in in chunks when you&#8217;re dealing with very large data.</p>
<p>Now, that&#8217;s when you&#8217;re doing like an insert or an update. Same thing applies when you&#8217;re fetching the data. Most drivers have options that control how much of that data&#8217;s buffered. So again, we talk extensively in <a href="http://www.facebook.com/group.php?gid=56251506034&amp;ref=ts">the book</a> about getting <a href="http://www.sswug.org/articles/guestarticle.aspx?id=45031">database middleware</a>, drivers, providers, or whatever that is <a href="http://dataaccesshandbook.com/community/why-tuning-the-database-is-vital/">tunable</a>, one of the tuning parameters that you typically have is when I fetch that picture data, or that long data, how much of it should I get at a time, how much of it should I buffer? So look there as well. That&#8217;s one of the big things that we see as well as those tuning parameters affect how the drivers do that. Also, some of them &#8212; or all the APIs have some way to retrieve that data in chunks, so don&#8217;t just allocate a 1GB buffer. If you think about it, if you have a picture column and you retrieve 100 rows, and even if, you know, you do half a GB, you know, that&#8217;s 50GB &#8212; you&#8217;re going to get an out of memory error. So you have to be careful about the way you stream long data. That&#8217;s the most common way that I see that people hit memory limitations.</p>
<p>The other way that we see is when you pull very large result sets &#8212; so for example, you might have some <a href="http://technet.microsoft.com/en-us/magazine/2008.04.dwperformance.aspx">data warehouse query</a> that returns a million rows. Now, when those million rows come back, you know, they may be a couple thousand bytes a piece, or they may &#8212; you may get into where you&#8217;re using a lot of memory to store those results coming back. Again, there are <a href="http://en.wikipedia.org/wiki/Database_tuning">tuning parameters</a> on most good database middleware, most drivers, that allow you to affect how much it will hash in memory, and some of them contain options that say, &#8220;Well, when I hit this certain memory limit let&#8217;s start caching the disk,&#8221; but probably the biggest thing you&#8217;re going to see in terms of memory is watch out for that long data.</p>
<input id="gwProxy" type="hidden" />
<p><!--Session data--></p>
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<p><!--Session data--></p>
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden" />
<p><!--Session data--><br />
<input id="jsProxy" onclick="jsCall();" type="hidden" />
<input id="gwProxy" type="hidden"><!--Session data--></input>
<input id="jsProxy" onclick="jsCall();" type="hidden" />



Like what you see?  Share and Enjoy:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="Digg"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="Sphinn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/sphinn.gif" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="del.icio.us"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;t=Overcoming%20Memory%20Bottlenecks" title="Facebook"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="Mixx"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="Google"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks&amp;source=Data+Access+Handbook+Just+another+WordPress+weblog&amp;summary=The%20Data%20Access%20Handbook%20covers%20numerous%20causes%20for%20database%20bottlenecks%2C%20including%20hardware%20constraints%2C%20particularly%20with%20regards%20to%20memory%20issues.%20In%20this%20podcast%20Rob%20addresses%20issues%20that%20cause%20memory%20bottlenecks%20and%20explains%20how%20they%20can%20be%20over" title="LinkedIn"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="Reddit"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F&amp;title=Overcoming%20Memory%20Bottlenecks" title="StumbleUpon"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F" title="Technorati"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdataaccesshandbook.com%2Fcommunity%2Fovercoming-memory-bottlenecks%2F" title="TwitThis"><img src="http://dataaccesshandbook.com/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://dataaccesshandbook.com/community/overcoming-memory-bottlenecks/feed/</wfw:commentRss>
<enclosure url="http://blogs.datadirect.com/media/RobSteward_MemoryDataAccessBottlenecks.mp3" length="4354609" type="audio/mpeg" />
		</item>
	</channel>
</rss>


