<?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>UseStrict Consulting &#187; PAR</title>
	<atom:link href="http://usestrict.net/tag/par/feed/" rel="self" type="application/rss+xml" />
	<link>http://usestrict.net</link>
	<description>Professional IT Solutions &#38; Training</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:01:05 +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>Perl: Connecting to an Oracle database WITHOUT having an installed client</title>
		<link>http://usestrict.net/2009/01/perl-connecting-to-an-oracle-database-without-having-an-installed-client/</link>
		<comments>http://usestrict.net/2009/01/perl-connecting-to-an-oracle-database-without-having-an-installed-client/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 03:41:28 +0000</pubDate>
		<dc:creator>vinny</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[archive tool]]></category>
		<category><![CDATA[array reference]]></category>
		<category><![CDATA[bastard]]></category>
		<category><![CDATA[BEGIN]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[CPAN]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[dbd::oracle]]></category>
		<category><![CDATA[dbi]]></category>
		<category><![CDATA[dbs]]></category>
		<category><![CDATA[ENV]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[fileName]]></category>
		<category><![CDATA[filenames]]></category>
		<category><![CDATA[hash]]></category>
		<category><![CDATA[hostname]]></category>
		<category><![CDATA[intention]]></category>
		<category><![CDATA[ip port]]></category>
		<category><![CDATA[lazy bastard]]></category>
		<category><![CDATA[libs]]></category>
		<category><![CDATA[oracle 10g client]]></category>
		<category><![CDATA[oracle client]]></category>
		<category><![CDATA[oracle database]]></category>
		<category><![CDATA[PAR]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[perl archive]]></category>
		<category><![CDATA[perl module]]></category>
		<category><![CDATA[Pretty]]></category>
		<category><![CDATA[quickie]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[subroutine]]></category>
		<category><![CDATA[SUM]]></category>
		<category><![CDATA[sun solaris sparc]]></category>
		<category><![CDATA[target machines]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Unpack]]></category>
		<category><![CDATA[username]]></category>

		<guid isPermaLink="false">http://usestrict.net/?p=154</guid>
		<description><![CDATA[Using Perl to connect to a DB without having Oracle Client installed.]]></description>
			<content:encoded><![CDATA[<p>I started this post with the intention of having it be a quickie, just showing people how to connect to Oracle with Perl/DBI without having to have Oracle client or even Perl installed, but it&#8217;s not that simple.  So I decided to rewrite it with detailed instructions.</p>
<p>Here is a list of what I used:</p>
<p><strong>Machine:</strong> Sun Solaris SPARC on build and target machines<br />
<strong>Oracle:</strong> Oracle 10g client (build machine only)<br />
<strong>Perl:</strong> v. 5.10.0 (build machine only)<br />
<strong>Perl modules:</strong> <a href="http://search.cpan.org/~timb/DBI-1.607/DBI.pm" target="_blank">DBI (1.607)</a>, <a href="http://search.cpan.org/~pythian/DBD-Oracle-1.22/Oracle.pm" target="_blank">DBD::Oracle (1.22)</a>, <a href="http://search.cpan.org/~smueller/PAR-1.002/lib/PAR.pm" target="_blank">PAR (0.983)</a>, <a href="http://search.cpan.org/~rschupp/PAR-Packer-1.012/lib/pp.pm" target="_blank">pp (0.982)</a>, <a href="http://search.cpan.org/~nwclark/perl-5.8.9/lib/PerlIO.pm">PerlIO (1.04)</a> (build machine only)</p>
<p><span id="more-154"></span></p>
<p>&nbsp;</p>
<h2>How I did it:</h2>
<p>Being the <a href="http://wiki.preshweb.co.uk/doku.php?id=perl:virtues" target="_blank">lazy</a> bastard that I am, I decided to write a Perl module that would do my DBI connections for me once I supplied it the SID, username, and password. This module isn&#8217;t in CPAN, but you can probably find similar ones in there. Who knows maybe one day I&#8217;ll make it available to the public, but for now I will only explain how it works and show the tidbits I used to get it connecting without the Oracle client installed. Let&#8217;s call my module <strong>MyDB.pm</strong> (at the time of this writing, there is no MyDB.pm module in CPAN).</p>
<p><strong>MyDB.pm:</strong> exports one subroutine: <strong>connect()</strong>. <strong> connect()</strong> takes an array reference of 3 values: <em>SID</em>, <em>username</em>, <em>password</em>. It then uses the given SID to check against <strong>%configured_dbs</strong> and fetch hostname/IP,  port, and alternative SID. It then connects to the DBI. Pretty straight-forward.</p>
<p><strong>Oracle Client: </strong>You&#8217;ll need the Oracle Client installed in your build machine. Or not. As long as you have access to the following files (the example here is for 10.1 version &#8211; your filenames may vary): <strong>libclntsh.so.10.1</strong>, and <strong>libnnz10.so</strong>. These are the magic libs that we will carry along with us.</p>
<p><strong>PAR/pp:</strong> The Perl Archive Tool is a VERY handy module. It basically allows you to pack modules/files into a regular zip (renamed to .par) and even to create self extracting executables. It comes with tools such as parl to load those packages and deploy the scripts inside, or you can run it from inside a separate script to use your modules without having to install them in a specific path. Oh, and with the PAR self extracting executable, you can even bundle Perl core files and run it in a machine that doesn&#8217;t have Perl installed! Sweet, eh? pp is part of the PAR family &#8211; it&#8217;s thescript that does the creation of the par packages. One downside of PAR is that it creates potentially HUGE  packages. A simple hello world can be over 2Mb large. But that&#8217;s not a concern in this tutorial, since we will be getting rid of having to keep Oracle up to date in every single machine, changing environment variables and the such.</p>
<p>When running a PAR package, it calculates the MD5SUM of the file and creates a temporary directory under /var/tmp/par-<em>userId</em>/cache-<em>md5sum </em>(replace <em>userId</em> with the ID of the person running the file, and <em>md5sum</em> with the actual md5sum) . It then unpacks the contents of the PAR into that directory and sets some environment variables &#8211; some of which will tell Perl to check in there for modules.  However, it seems to not automatically extract the libs, so we have to modify MyDB.pm to have it behave appropriately.</p>
<h1><img class="alignnone size-full wp-image-8" title="spacer" src="http://usestrict.net/wp-content/uploads/2008/10/spacer1.gif" alt="spacer" width="10" height="20" /></h1>
<h2>Making MyDB.pm work when called in a PAR context</h2>
<p>Create a BEGIN block checking for <strong>$ENV{PAR_TEMP}</strong>. This is the value of the PAR temp directory where the files should be extracted. Since PAR creates zipped files, it offers a method to return an Archive::Zip  handler:</p>
<p style="padding-left: 60px;"><em>my $zip_handler = PAR::par_handle(&#8216;MyDB.par&#8217;)</em>;</p>
<p>Now you can use Archive::Zip methods to manipulate your .par file. I used the following code for my BEGIN block:</p>
<pre class="brush:perl">BEGIN {
	if ($ENV{PAR_TEMP}) {

		# Get $par_cache (easier to type than $ENV{PAR_TEMP})
		my $par_cache = $ENV{PAR_TEMP};

		# Get Zip handler
		my $par_file = PAR::handle("MyDB.par");

		# Set files to look for
		my %membersToFind = (’libclntsh.so.10.1’ =&gt;1,
							 ’libnnz10.so’ =&gt; 1 );

		# Unpack files
		for my $m ($par_file-&gt;members()) {

			# Get path/name of the zipped file
			my $fileName = $m-&gt;fileName();

			# Prepare to check if the libs
			# have already been extracted
			use Find::File;

			# Iterate through %membersToFind keys
			for my $k (keys %membersToFind) {

				# If zipped file is one of the keys...
				if ($fileName =~ /$k/) {

					# do nothing if the file has already been extracted
					next if find(sub { /$k/ or return 0 },$par_cache); 

					# ...then remove from hash (we’ll check the hash later)...
					delete $membersToFind{$k};

					# ... and unpack into $par_cache directory
					$par_file-&gt;extractMember($fileName,"$par_cache") ||
					warn ("Failed to extract $fileName n");

				}
			}
		}

		# Check to see if any of the files wasn’t unpacked because it wasn’t found
		if (scalar(keys %membersToFind) &gt; 0) {

			warn("The following file(s) could not be found in PAR file: " .  join(’,’,@{ keys %membersToFind }) ."n");

		}
	}
}</pre>
<p>So now MyDB.pm will know what to do if $ENV{PAR_TEMP} is set.  The next step is to generate the PAR file.</p>
<h1><img class="alignnone size-full wp-image-8" title="spacer" src="http://usestrict.net/wp-content/uploads/2008/10/spacer1.gif" alt="spacer" width="10" height="20" /></h1>
<h2>Creating the PAR package</h2>
<p>You&#8217;ll need a dummy perl script to pass to <strong>pp</strong>:</p>
<pre class="brush:shell">	$ echo "use MyDB;" &gt; dummy.pl</pre>
<p>and then create the PAR file. Make sure MyDB.pm and your oracle libs are in places where Perl can find it. I placed MyDB.pm in the same directory as dummy.pl, and set LD_LIBRARY_PATH to my $ORACLE_HOME/lib32 (if you&#8217;re using Instant Client, set it to $ORACLE_HOME/instantclient or wherever your instant client keeps the libs). The pp command is this (on a shell prompt):</p>
<pre class="brush:shell">
$ pp -z 9 -v 3 -p -d -o MyDB.par
	-X DBD::Proxy
	-X DBD::DBM
	-X DBD::File
	-X DBD::NullP
	-X DBD::Gofer
	-X DBD::Sponge
	-X DBD::ExampleP
	-X DBD::mysql
	-X DBD::Gofer::Policy::rush
	-X DBD::Gofer::Policy::classic
	-X DBD::Gofer::Policy::Base
	-X DBD::Gofer::Policy::pedantic
	-X DBD::Gofer::Transport::pipeone
	-X DBD::Gofer::Transport::Base
	-X DBD::Gofer::Transport::stream
	-X DBD::Gofer::Transport::null
	-X DBD::mysql::GetInfo
	-X DBD::Chart
	-X DBD::Chart::Plot
	-M MyDB
	-M PerlIO
	-l libclntsh.so.10.1
	-l libnnz10.so
        -l libociei.so   # for Oracle instant client users only! Thanks to Jonathon Robinson for the heads up. (see comments for details)
	dummy.pl</pre>
<p><strong>pp command explained</strong></p>
<p><strong>pp:</strong> the PAR packer script<br />
<strong>-z 9:</strong> maximum compression<br />
<strong>-v 3:</strong> maximum verbosity<br />
<strong>-p:</strong> create par file<br />
<strong>-d:</strong> dependent. This means it will not add the Perl interpreter to the bundle. This reduces its size, but makes it rely on either perl being installed in the target machine, or your script (the one that&#8217;s going to use MyDB) being PAR&#8217;d without the -d option.<br />
<strong>-0 MyDB.par:</strong> the filename to be used on output<br />
<strong>-X <em>module</em>:</strong> removes un-necessary modules. Read more about it <a href="http://search.cpan.org/~smueller/PAR-1.002/lib/PAR/FAQ.pod#The_resulting_files_are_huge!_How_can_I_reduce_the_size_of_the_output_file?" target="_blank">here</a>.<br />
<strong>-M <em>module</em>:</strong> the modules you want to add (PAR sometimes misses a module during its dependency scan).  PerlIO is required.<br />
<strong>-l <em>lib</em>:</strong> adds the additional libs<strong><br />
dummy.pl:</strong> last item of the command, tells <strong>pp</strong> what the main script is.<br />
There &#8211; after lots of output on the screen, you should have a pretty large MyDB.par (at least 7Mb). Now we have to alter our main script (the one that <em>use</em>s MyDB in the first place) to have it handle the PAR file. Add the following lines right after your <em>use strict;</em> line (you DO use strict, RIGHT?!).</p>
<pre class="brush:perl">
          use PAR './MyDB.par';
          use MyDB;
          # the rest is business as usual
</pre>
<p>Once altered, you can choose to <strong>pp</strong> your script to have it run without a perl interpreter on another machine. This might take several attempts, since you will have to test the executable a few times to make sure you got all your modules bundled. The basic pp command though is this:</p>
<pre class="brush:shell">
       $ pp -z 9 -v 3 -o yourscript.exe yourscript.pl    # .exe not required
</pre>
<p>Here the absense of -d makes it assume -B which bundles Perl inside the executable. As mentioned before, you might need to add some -M <em>module</em> parameters before yourscript.pl to catch any missing modules.</p>
<h2>Running the scripts</h2>
<p>To run the scripts, just send them to the target machine and execute <em>yourscript.exe</em>. It will fetch MyDB.par in the same directory, extract it to $ENV{PAR_TEMP} the first time (so it might be a little slow at first) and carry on with its logic.</p>
<h2>Caveat</h2>
<p>I strongly advise that you delete your par_cache directory between rebuilds (while testing). The reason for this is that the cache will be created by the execution of <em>yourscript.exe</em> and NOT by MyDB.par. When this happens and you alter MyDB.par, the changes will not be reflected when you run <em>yourscript.exe</em>.</p>
<p>If you liked this post, please leave a comment. If you didn&#8217;t, leave a comment too! <img src='http://usestrict.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;d like to know what people think of my blog and ways to improve it.</p>
<p>&nbsp;</p>
<h3>Book Suggestions:</h3>
<div>
<script type="text/javascript">
    (function(){
        document.write('<script type="text/javascript" src="http://cb1.cronblocks.com//js/content.js?c=11&#038;t='+(Math.floor(new Date().getTime()/1000))+'&#038;s=client"><\/script>');
    })();
</script>
</div>
]]></content:encoded>
			<wfw:commentRss>http://usestrict.net/2009/01/perl-connecting-to-an-oracle-database-without-having-an-installed-client/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

