<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: New support for Rails 2.1</title>
	<atom:link href="http://db2onrails.com/2008/06/26/new-support-for-rails-21/feed/" rel="self" type="application/rss+xml" />
	<link>http://db2onrails.com/2008/06/26/new-support-for-rails-21/</link>
	<description>Agile development for enterprises large and small</description>
	<pubDate>Tue, 02 Dec 2008 12:07:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Matteo</title>
		<link>http://db2onrails.com/2008/06/26/new-support-for-rails-21/#comment-745</link>
		<dc:creator>Matteo</dc:creator>
		<pubDate>Mon, 29 Sep 2008 12:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://db2onrails.com/?p=47#comment-745</guid>
		<description>I can use ibm_db also to connect to db2 on a iSeries server? And I can specify alsoa default library?

Thanks</description>
		<content:encoded><![CDATA[<p>I can use ibm_db also to connect to db2 on a iSeries server? And I can specify alsoa default library?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://db2onrails.com/2008/06/26/new-support-for-rails-21/#comment-702</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sun, 14 Sep 2008 20:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://db2onrails.com/?p=47#comment-702</guid>
		<description>Those of you who use the command 'apt-get install db2exc' to install the latest version of DB2 Express-C 9.5 ('db2exc-9.5.0-2') on Ubuntu will need to manually remove the broken header file links found in the /usr/include directory, and run 'db2ln' (found in the /cfg directory) to re-create the header links.</description>
		<content:encoded><![CDATA[<p>Those of you who use the command &#8216;apt-get install db2exc&#8217; to install the latest version of DB2 Express-C 9.5 (&#8217;db2exc-9.5.0-2&#8242;) on Ubuntu will need to manually remove the broken header file links found in the /usr/include directory, and run &#8216;db2ln&#8217; (found in the /cfg directory) to re-create the header links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: howardb</title>
		<link>http://db2onrails.com/2008/06/26/new-support-for-rails-21/#comment-541</link>
		<dc:creator>howardb</dc:creator>
		<pubDate>Sat, 16 Aug 2008 17:24:37 +0000</pubDate>
		<guid isPermaLink="false">http://db2onrails.com/?p=47#comment-541</guid>
		<description>DB2 permits the creation of numerous database engines, called 'Database Managers' (or INSTANCE), on the same server.  

Each engine is completely independent to enable these operational characteristics:
- each runs under a different 'owner' account -- in your example this is db2inst1
- each can be started and stopped independently or else be a non-running 'client' instance
- each can be managed independently and have independent administration groups
- each can be a separate version or patch level or run a different edition of the product
- each can manage one or more different databases and/or catalog a different set of remote database environments

The db2profile script located under ~INSTANCE/sqllib/db2profile sets up all the environment variables (e.g. PATH, DB2INSTANCE, etc.) in order to access that particular INSTANCE.

You must use this script to 'choose' the instance that your runtime environment will use.

To avoid the inconvenience, since you only have one instance, you could add the one-line entry into your shell startup profile, or insert this into the script used to start your webserver.

I hope this helps. howardb</description>
		<content:encoded><![CDATA[<p>DB2 permits the creation of numerous database engines, called &#8216;Database Managers&#8217; (or INSTANCE), on the same server.  </p>
<p>Each engine is completely independent to enable these operational characteristics:<br />
- each runs under a different &#8216;owner&#8217; account &#8212; in your example this is db2inst1<br />
- each can be started and stopped independently or else be a non-running &#8216;client&#8217; instance<br />
- each can be managed independently and have independent administration groups<br />
- each can be a separate version or patch level or run a different edition of the product<br />
- each can manage one or more different databases and/or catalog a different set of remote database environments</p>
<p>The db2profile script located under ~INSTANCE/sqllib/db2profile sets up all the environment variables (e.g. PATH, DB2INSTANCE, etc.) in order to access that particular INSTANCE.</p>
<p>You must use this script to &#8216;choose&#8217; the instance that your runtime environment will use.</p>
<p>To avoid the inconvenience, since you only have one instance, you could add the one-line entry into your shell startup profile, or insert this into the script used to start your webserver.</p>
<p>I hope this helps. howardb</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blahzay</title>
		<link>http://db2onrails.com/2008/06/26/new-support-for-rails-21/#comment-497</link>
		<dc:creator>blahzay</dc:creator>
		<pubDate>Wed, 02 Jul 2008 13:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://db2onrails.com/?p=47#comment-497</guid>
		<description>I'm new to DB2 so a few things are confusing me at the moment.  So I've gotten DB2 and Rails playing nice together for the most part.  However, one of the things that is confusing me is that Rails throws the error: 

Failed to connect to the [railsapp] due to: [IBM][CLI 

Driver] unless I issue the command:

. /home/db2inst1/sqllib/db2profile

using the same console that I start up webbrick.


I realize this command is setting up the environment for DB2 to run in.  This is may only be but a minor inconvenience while developing.  However how do I get my app to run without throwing the error in a production environment.  I'm used to just being able to install mysql and forget about it and it seems like DB2 requires a lot more hand holding to function properly.  What am I missing?</description>
		<content:encoded><![CDATA[<p>I&#8217;m new to DB2 so a few things are confusing me at the moment.  So I&#8217;ve gotten DB2 and Rails playing nice together for the most part.  However, one of the things that is confusing me is that Rails throws the error: </p>
<p>Failed to connect to the [railsapp] due to: [IBM][CLI </p>
<p>Driver] unless I issue the command:</p>
<p>. /home/db2inst1/sqllib/db2profile</p>
<p>using the same console that I start up webbrick.</p>
<p>I realize this command is setting up the environment for DB2 to run in.  This is may only be but a minor inconvenience while developing.  However how do I get my app to run without throwing the error in a production environment.  I&#8217;m used to just being able to install mysql and forget about it and it seems like DB2 requires a lot more hand holding to function properly.  What am I missing?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
