<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Andrew Eells dot com &#187; Database</title>
	<atom:link href="http://www.andrew-eells.com/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrew-eells.com</link>
	<description>Java, Agile, Web comments</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:45:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Agile Database dot com</title>
		<link>http://www.andrew-eells.com/2011/09/14/agile-database-dot-com/</link>
		<comments>http://www.andrew-eells.com/2011/09/14/agile-database-dot-com/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 22:36:21 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=414</guid>
		<description><![CDATA[Have added some new features to my agile database framework and decided to release as a slightly more professional undertaking &#8211; say hello to Agile Database dot com. The code&#8217;s hosted on GitHub so please feel free to take a look and let me know if you have any feedback or issues. I&#8217;m going to [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2011/09/14/agile-database-dot-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate foreign-key collections and database best practice</title>
		<link>http://www.andrew-eells.com/2011/01/09/hibernate-foreign-key-collections-database-best-practice/</link>
		<comments>http://www.andrew-eells.com/2011/01/09/hibernate-foreign-key-collections-database-best-practice/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 16:36:06 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=336</guid>
		<description><![CDATA[I came across the following situation having noticed we were not enforcing database NOT NULL column constraints, even though all column entries were non-null. This is not best-practice from a database perspective and so I thought I&#8217;d look into it. So, I have 2 tables, ENQUIRY and ELEMENT with a One-to-Many relationship such that an [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2011/01/09/hibernate-foreign-key-collections-database-best-practice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle 11g UCP with Tomcat</title>
		<link>http://www.andrew-eells.com/2010/07/07/oracle-11g-ucp-tomcat/</link>
		<comments>http://www.andrew-eells.com/2010/07/07/oracle-11g-ucp-tomcat/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 20:48:21 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=279</guid>
		<description><![CDATA[Download Instant Client Package &#8211; Basic and SQL*Plus from Oracle. Unzip packages to /Applications/oracle/instantclient_10_2. Add the following to ~/.bash_profile: export DYLD_LIBRARY_PATH=/Applications/oracle/instantclient_10_2 export TNS_ADMIN=/Applications/oracle/instantclient_10_2 export PATH=$PATH:$DYLD_LIBRARY_PATH Ensure you have the below tnsnames.ora file in TNS_ADMIN so as to connect to the server from client using connect string: sqlplus &#60;username&#62;@xyz xyz = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2010/07/07/oracle-11g-ucp-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate&#8217;s @FilterJoinTable</title>
		<link>http://www.andrew-eells.com/2009/07/28/hibernate-filter-join-table/</link>
		<comments>http://www.andrew-eells.com/2009/07/28/hibernate-filter-join-table/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 15:16:37 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Hibernate]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=229</guid>
		<description><![CDATA[Couldn&#8217;t find a completely articulate example or full documentation of how to add a filter to a Hibernate Many-to-Many collection association mapping, so thought I&#8217;d would post a complete example here. It&#8217;s possible to apply the filter to the target entity table which is reasonably well documented, or at least you can have an educated [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2009/07/28/hibernate-filter-join-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hibernate StatelessSession with Transactional Annotation</title>
		<link>http://www.andrew-eells.com/2009/07/20/hibernate-statelesssession-transactional-annotation/</link>
		<comments>http://www.andrew-eells.com/2009/07/20/hibernate-statelesssession-transactional-annotation/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 11:35:42 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Hibernate]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=217</guid>
		<description><![CDATA[I have a bi-directional collection mapping in Java which I thought was causing me problems when persisting using Hibernate&#8217;s StatelessSession API. However, it looks as though the issue was being caused by the fact I was using the @Transactional annotation instead. The API states: &#8220;Operations performed via a stateless session bypass Hibernate&#8217;s event model and [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2009/07/20/hibernate-statelesssession-transactional-annotation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Primary Keys vs GUIDs</title>
		<link>http://www.andrew-eells.com/2009/03/01/primary-keys-vs-guids/</link>
		<comments>http://www.andrew-eells.com/2009/03/01/primary-keys-vs-guids/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 22:25:15 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=180</guid>
		<description><![CDATA[Just thought I would post some code having read Savvy Duck&#8217;s comments about the above. Although the project I refer to below was greenfield and didn&#8217;t require any kind of database migration, I never encountered any of the performance problems mentioned in some of the related articles. We were using an Oracle 10g database however, [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2009/03/01/primary-keys-vs-guids/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>To GPL or not&#8230;</title>
		<link>http://www.andrew-eells.com/2008/09/29/gpl/</link>
		<comments>http://www.andrew-eells.com/2008/09/29/gpl/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 18:16:06 +0000</pubDate>
		<dc:creator>Andrew Eells</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[agile database framework]]></category>
		<category><![CDATA[gpl]]></category>

		<guid isPermaLink="false">http://www.andrew-eells.com/?p=134</guid>
		<description><![CDATA[As the following post describes in more detail, I have created and released under the GPL a versioning framework for database release patching. This has been tested and used in an Agile environment with multiple users throughout all stages of the development lifecycle. Please feel free to download and use it within your project, or [...]]]></description>
		<wfw:commentRss>http://www.andrew-eells.com/2008/09/29/gpl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.andrew-eells.com @ 2012-02-05 17:51:40 -->
