<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Geeky Project Part 6: Create a WebCenter VM</title>
	<atom:link href="http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/feed/" rel="self" type="application/rss+xml" />
	<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/</link>
	<description>Driving Innovation</description>
	<lastBuildDate>Wed, 08 Feb 2012 22:43:00 -0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jpiwowar</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-13188</link>
		<dc:creator>jpiwowar</dc:creator>
		<pubDate>Sun, 13 Dec 2009 08:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-13188</guid>
		<description>Okay, cool, glad it&#039;s useful.  Apparently I&#039;d passed my &quot;comment length self-consciousness&quot; threshold, and felt a need to add that last line. :-)  Good luck w/ the next steps. :)</description>
		<content:encoded><![CDATA[<p>Okay, cool, glad it&#39;s useful.  Apparently I&#39;d passed my &#8220;comment length self-consciousness&#8221; threshold, and felt a need to add that last line. <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Good luck w/ the next steps. <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jpiwowar</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10538</link>
		<dc:creator>jpiwowar</dc:creator>
		<pubDate>Sun, 13 Dec 2009 00:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10538</guid>
		<description>Okay, cool, glad it&#039;s useful.  Apparently I&#039;d passed my &quot;comment length self-consciousness&quot; threshold, and felt a need to add that last line. :-)  Good luck w/ the next steps. :)</description>
		<content:encoded><![CDATA[<p>Okay, cool, glad it&#39;s useful.  Apparently I&#39;d passed my &#8220;comment length self-consciousness&#8221; threshold, and felt a need to add that last line. <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   Good luck w/ the next steps. <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10525</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 11 Dec 2009 15:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10525</guid>
		<description>That wasn&#039;t &quot;way more than I needed to know&quot;. That&#039;s all good stuff for my &quot;stuff I figured someone smarter than me would know&quot; department. Awesome, thanks again.</description>
		<content:encoded><![CDATA[<p>That wasn&#39;t &#8220;way more than I needed to know&#8221;. That&#39;s all good stuff for my &#8220;stuff I figured someone smarter than me would know&#8221; department. Awesome, thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jpiwowar</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10523</link>
		<dc:creator>jpiwowar</dc:creator>
		<pubDate>Fri, 11 Dec 2009 14:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10523</guid>
		<description>Regarding making environment variables stick: since you&#039;re going to have multiple ORACLE_HOMEs on this server (one for the RDBMS and one for WC at a minimum, I recommend putting the commands to set up the oracle environment in a short shell script.  For example:&lt;br&gt;zathras:~ jpiwowar$ cat 11gdb.env &lt;br&gt;#!/bin/bash&lt;br&gt;export ORACLE_BASE=/u01/app/oracle&lt;br&gt;export ORACLE_HOME=${ORACLE_BASE}/product/11.2.0/dbhome_1&lt;br&gt;export PATH=${ORACLE_HOME}/bin:$PATH&lt;br&gt;export LD_LIBRARY_PATH=${ORACLE_HOME}/lib:$LD_LIBRARY_PATH&lt;br&gt;zathras:~ jpiwowar$ . 11gdb.env &lt;br&gt;zathras:~ jpiwowar$ echo $ORACLE_HOME&lt;br&gt;/u01/app/oracle/product/11.2.0/dbhome_1&lt;br&gt;&lt;br&gt;Invoking the .env script with the leading &#039;. &#039; will make sure that the environment variables are exported to your current session, and not just set for the (very short) life of the script&#039;s execution.&lt;br&gt;&lt;br&gt;You might also want to set up a similar script that sets up the WC environment variables, since you&#039;ll be dealing with a separate ORACLE_HOME and PATH at least, and maybe some other things specific to the WC environment.  &lt;br&gt;&lt;br&gt;One drawback to this method is that environment variables like PATH and LD_LIBRARY_PATH can get &quot;polluted&quot; with entries from both ORACLE_HOMEs if you&#039;re switching back and forth a lot between environments.  I &lt;a href=&quot;http://only4left.jpiwowar.com/2008/11/clearing-oracle-environment/&quot; rel=&quot;nofollow&quot;&gt;blogged&lt;/a&gt; a solution to that a while back, if it&#039;s relevant.&lt;br&gt;&lt;br&gt;BTW, you leave the CLI as soon as you type dbca, and you&#039;re back to a GUI.&lt;br&gt;&lt;br&gt;Here ends the latest missive from the Dept of &quot;Way more than I needed to know, thanks.&quot; ;-)</description>
		<content:encoded><![CDATA[<p>Regarding making environment variables stick: since you&#39;re going to have multiple ORACLE_HOMEs on this server (one for the RDBMS and one for WC at a minimum, I recommend putting the commands to set up the oracle environment in a short shell script.  For example:<br />zathras:~ jpiwowar$ cat 11gdb.env <br />#!/bin/bash<br />export ORACLE_BASE=/u01/app/oracle<br />export ORACLE_HOME=${ORACLE_BASE}/product/11.2.0/dbhome_1<br />export PATH=${ORACLE_HOME}/bin:$PATH<br />export LD_LIBRARY_PATH=${ORACLE_HOME}/lib:$LD_LIBRARY_PATH<br />zathras:~ jpiwowar$ . 11gdb.env <br />zathras:~ jpiwowar$ echo $ORACLE_HOME<br />/u01/app/oracle/product/11.2.0/dbhome_1</p>
<p>Invoking the .env script with the leading &#39;. &#39; will make sure that the environment variables are exported to your current session, and not just set for the (very short) life of the script&#39;s execution.</p>
<p>You might also want to set up a similar script that sets up the WC environment variables, since you&#39;ll be dealing with a separate ORACLE_HOME and PATH at least, and maybe some other things specific to the WC environment.  </p>
<p>One drawback to this method is that environment variables like PATH and LD_LIBRARY_PATH can get &#8220;polluted&#8221; with entries from both ORACLE_HOMEs if you&#39;re switching back and forth a lot between environments.  I <a href="http://only4left.jpiwowar.com/2008/11/clearing-oracle-environment/" rel="nofollow">blogged</a> a solution to that a while back, if it&#39;s relevant.</p>
<p>BTW, you leave the CLI as soon as you type dbca, and you&#39;re back to a GUI.</p>
<p>Here ends the latest missive from the Dept of &#8220;Way more than I needed to know, thanks.&#8221; <img src='http://theappslab.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10524</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 11 Dec 2009 14:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10524</guid>
		<description>Yeah, the 11g vs. 10g problem is exactly what I was thinking might prevent this. Also, I&#039;m not sure how big the repository is for WC, but the ECM repository alone could get pretty big. &lt;br&gt;&lt;br&gt;Plus, I wanted to do this with the latest shiny objects available :)</description>
		<content:encoded><![CDATA[<p>Yeah, the 11g vs. 10g problem is exactly what I was thinking might prevent this. Also, I&#39;m not sure how big the repository is for WC, but the ECM repository alone could get pretty big. </p>
<p>Plus, I wanted to do this with the latest shiny objects available <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jpiwowar</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10512</link>
		<dc:creator>jpiwowar</dc:creator>
		<pubDate>Fri, 11 Dec 2009 13:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10512</guid>
		<description>I think it depends on WC&#039;s requirements.  XE is an early version of 10gR2 (10.2.0.1, maybe), and unpatchable.  So if the minimum requirements for WC&#039;s repository are 10.2.0.4, for example, XE is a non-starter.  Furthermore, XE caps out at 4G of data, so if the WC repository is bigger than that, or will quickly get bigger than that you&#039;re out of luck.  It may also be that WC will still *work* against 10.2.0.1, even if it&#039;s not certified, which is fine for a sandbox, so then you just have the 4G data restriction to worry about. &lt;br&gt;&lt;br&gt;Anyhoo, if neither of those restrictions apply, and 11g RDBMS continues to be problematic, XE might be the way to go.  Nothing beats installing an entire database, software and data files, from an RPM. :)</description>
		<content:encoded><![CDATA[<p>I think it depends on WC&#39;s requirements.  XE is an early version of 10gR2 (10.2.0.1, maybe), and unpatchable.  So if the minimum requirements for WC&#39;s repository are 10.2.0.4, for example, XE is a non-starter.  Furthermore, XE caps out at 4G of data, so if the WC repository is bigger than that, or will quickly get bigger than that you&#39;re out of luck.  It may also be that WC will still *work* against 10.2.0.1, even if it&#39;s not certified, which is fine for a sandbox, so then you just have the 4G data restriction to worry about. </p>
<p>Anyhoo, if neither of those restrictions apply, and 11g RDBMS continues to be problematic, XE might be the way to go.  Nothing beats installing an entire database, software and data files, from an RPM. <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10505</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 11 Dec 2009 13:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10505</guid>
		<description>Yeah, again, what I should have done is remember that I planned to do this at some point before heading into the WC install. I need to work on this stuff earlier in the day :)</description>
		<content:encoded><![CDATA[<p>Yeah, again, what I should have done is remember that I planned to do this at some point before heading into the WC install. I need to work on this stuff earlier in the day <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10502</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 11 Dec 2009 13:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10502</guid>
		<description>Great, I&#039;ll give dbca a shot when I get back into it, and yes, Time Machine has a version with a pristine 11g install. Those environment variables don&#039;t stick, do they? I&#039;ll need to dig up how to apply them to oracle each time.&lt;br&gt;&lt;br&gt;I knew someone would mention the CLI way to do all this, which I considered but didn&#039;t have the patience to try. My tiredness wasn&#039;t helping me think straight, and I was looking for easy answers.&lt;br&gt;&lt;br&gt;Anyway, appreciate the assist.</description>
		<content:encoded><![CDATA[<p>Great, I&#39;ll give dbca a shot when I get back into it, and yes, Time Machine has a version with a pristine 11g install. Those environment variables don&#39;t stick, do they? I&#39;ll need to dig up how to apply them to oracle each time.</p>
<p>I knew someone would mention the CLI way to do all this, which I considered but didn&#39;t have the patience to try. My tiredness wasn&#39;t helping me think straight, and I was looking for easy answers.</p>
<p>Anyway, appreciate the assist.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10503</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 11 Dec 2009 13:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10503</guid>
		<description>Will Fusion Middleware 11gR1 run on XE? I guess I assumed it was tuned for 11g versions. I should be fine after stepping away overnight. I was in the weeds a bit too far and tired, which made it worse. Thanks for the suggestion.</description>
		<content:encoded><![CDATA[<p>Will Fusion Middleware 11gR1 run on XE? I guess I assumed it was tuned for 11g versions. I should be fine after stepping away overnight. I was in the weeds a bit too far and tired, which made it worse. Thanks for the suggestion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10504</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Fri, 11 Dec 2009 13:31:31 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10504</guid>
		<description>Sure, good advice. Through Time Machine, I have snapshots, maybe not as frequent as I could get through VBox. Screen recording makes a lot of sense.</description>
		<content:encoded><![CDATA[<p>Sure, good advice. Through Time Machine, I have snapshots, maybe not as frequent as I could get through VBox. Screen recording makes a lot of sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10497</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 11 Dec 2009 12:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10497</guid>
		<description>Hey Jake.&lt;br&gt;&lt;br&gt;There are two things I do when installing software I&#039;ve never used before.&lt;br&gt;&lt;br&gt;1: Take frequent snapshots. If you screw up getting back to a &quot;known good&quot; state is just three clicks away.&lt;br&gt;2: Screen record the entire process. It takes lots of disk space, but makes figuring out the settings I used really easy.&lt;br&gt;&lt;br&gt;Chris</description>
		<content:encoded><![CDATA[<p>Hey Jake.</p>
<p>There are two things I do when installing software I&#39;ve never used before.</p>
<p>1: Take frequent snapshots. If you screw up getting back to a &#8220;known good&#8221; state is just three clicks away.<br />2: Screen record the entire process. It takes lots of disk space, but makes figuring out the settings I used really easy.</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JordanOAtOracle</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10492</link>
		<dc:creator>JordanOAtOracle</dc:creator>
		<pubDate>Fri, 11 Dec 2009 10:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10492</guid>
		<description>Hi Jake,  Just curious, and I have to admit I have not read all 5 previous parts, but why not simplify the equation and use Oracle Database Express Edition (Universal for proper charset support)? &lt;a href=&quot;http://www.oracle.com/technology/software/products/database/xe/index.html&quot; rel=&quot;nofollow&quot;&gt;http://www.oracle.com/technology/software/produ...&lt;/a&gt;&lt;br&gt;The RCU will complain, ignore the compatibility error and it works fine.  You will need to bump up the processes &gt; 200, but RCU will let you know this too.  I am running an 11.1.1.2.0 SOA Stack on 10g Express without any problems. I actually limited it&#039;s memory consumption to 384K total and have no performance issues for the vm-based demos/local testing that I need to do.  HTHs, Jordan.</description>
		<content:encoded><![CDATA[<p>Hi Jake,  Just curious, and I have to admit I have not read all 5 previous parts, but why not simplify the equation and use Oracle Database Express Edition (Universal for proper charset support)? <a href="http://www.oracle.com/technology/software/products/database/xe/index.html" rel="nofollow">http://www.oracle.com/technology/software/produ&#8230;</a><br />The RCU will complain, ignore the compatibility error and it works fine.  You will need to bump up the processes &gt; 200, but RCU will let you know this too.  I am running an 11.1.1.2.0 SOA Stack on 10g Express without any problems. I actually limited it&#39;s memory consumption to 384K total and have no performance issues for the vm-based demos/local testing that I need to do.  HTHs, Jordan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jpiwowar</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10479</link>
		<dc:creator>jpiwowar</dc:creator>
		<pubDate>Fri, 11 Dec 2009 06:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10479</guid>
		<description>Also FWIW, unless I&#039;m reading this completely incorrectly, at this point you can&#039;t have all of the information that the RCU needs, because there isn&#039;t a database there for it to configure.  So no SID, no user w/ sysdba privs, etc. So don&#039;t feel badly for not writing that stuff down as you went along. :)</description>
		<content:encoded><![CDATA[<p>Also FWIW, unless I&#39;m reading this completely incorrectly, at this point you can&#39;t have all of the information that the RCU needs, because there isn&#39;t a database there for it to configure.  So no SID, no user w/ sysdba privs, etc. So don&#39;t feel badly for not writing that stuff down as you went along. <img src='http://theappslab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jpiwowar</title>
		<link>http://theappslab.com/2009/12/10/geeky-project-part-6-create-a-webcenter-vm/comment-page-1/#comment-10476</link>
		<dc:creator>jpiwowar</dc:creator>
		<pubDate>Fri, 11 Dec 2009 05:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://theappslab.com/?p=3947#comment-10476</guid>
		<description>I&#039;m slightly confused as to what state your software stack is in after rollback, because it&#039;s late and I&#039;ve only just lazy-skimmed parts 3-6 again to re-familiarize myself with the process.  If, however, you&#039;re in a state where you have a stable 11g RDBMS install (that is, before you removed the database software and attempted a re-install), then you can use the Database Creation Assistant (dbca) to create the database, without reinstalling the database software.  At a minimum, before running DBCA, you&#039;ll need to set the following environment variables:&lt;br&gt;ORACLE_BASE&lt;br&gt;ORACLE_HOME&lt;br&gt;Assuming you kept the defaults when you installed before, ORACLE_HOME will be &#039;/u01/app/oracle/product/11.2.0/dbhome_1&#039; and ORACLE_BASE will walk back a bit from there: &#039;/u01/app/oracle&#039;  After those are set, it&#039;s useful to set a few more environment variables.  So, something like this at the command line, as the owner of the oracle RDBMS software (presumably oracle), not root:&lt;br&gt;export ORACLE_BASE=/u01/app/oracle&lt;br&gt;export ORACLE_HOME=${ORACLE_BASE}/product/11.2.0/dbhome_1&lt;br&gt;export PATH=${ORACLE_HOME}/bin:$PATH&lt;br&gt;export LD_LIBRARY_PATH=${ORACLE_HOME}/lib:$LD_LIBRARY_PATH&lt;br&gt;dbca &amp;&lt;br&gt;&lt;br&gt;As you run through the dbca utility, it&#039;s going to ask you where to store data files and stuff, and a handful of other options.  I&#039;m not sure what the defaults are going to be, because I always change them ;-), but since this is just a testbed, you might be able to get away w/o tweaking too many defaults.  When the the time comes to choose your storage option, I&#039;d suggest selecting the &quot;Regular filesystem&quot; option rather than ASM, which is its own kind of fun but not a core part of this particular venture.&lt;br&gt;&lt;br&gt;Sorry to be vague, but at least I didn&#039;t just paste a link to the CREATE DATABASE command. ;-)</description>
		<content:encoded><![CDATA[<p>I&#39;m slightly confused as to what state your software stack is in after rollback, because it&#39;s late and I&#39;ve only just lazy-skimmed parts 3-6 again to re-familiarize myself with the process.  If, however, you&#39;re in a state where you have a stable 11g RDBMS install (that is, before you removed the database software and attempted a re-install), then you can use the Database Creation Assistant (dbca) to create the database, without reinstalling the database software.  At a minimum, before running DBCA, you&#39;ll need to set the following environment variables:<br />ORACLE_BASE<br />ORACLE_HOME<br />Assuming you kept the defaults when you installed before, ORACLE_HOME will be &#39;/u01/app/oracle/product/11.2.0/dbhome_1&#39; and ORACLE_BASE will walk back a bit from there: &#39;/u01/app/oracle&#39;  After those are set, it&#39;s useful to set a few more environment variables.  So, something like this at the command line, as the owner of the oracle RDBMS software (presumably oracle), not root:<br />export ORACLE_BASE=/u01/app/oracle<br />export ORACLE_HOME=${ORACLE_BASE}/product/11.2.0/dbhome_1<br />export PATH=${ORACLE_HOME}/bin:$PATH<br />export LD_LIBRARY_PATH=${ORACLE_HOME}/lib:$LD_LIBRARY_PATH<br />dbca &#038;</p>
<p>As you run through the dbca utility, it&#39;s going to ask you where to store data files and stuff, and a handful of other options.  I&#39;m not sure what the defaults are going to be, because I always change them <img src='http://theappslab.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> , but since this is just a testbed, you might be able to get away w/o tweaking too many defaults.  When the the time comes to choose your storage option, I&#39;d suggest selecting the &#8220;Regular filesystem&#8221; option rather than ASM, which is its own kind of fun but not a core part of this particular venture.</p>
<p>Sorry to be vague, but at least I didn&#39;t just paste a link to the CREATE DATABASE command. <img src='http://theappslab.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

