<?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>making IT happen : an infrastructure blog &#187; Databases</title>
	<atom:link href="http://www.lanigera.com/wordpress/category/databases/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lanigera.com/wordpress</link>
	<description>views from the trenches</description>
	<lastBuildDate>Wed, 09 Jun 2010 03:56:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>When your senior DBA is on vacation&#8230;</title>
		<link>http://www.lanigera.com/wordpress/2009/12/when-your-senior-dba-is-on-vacation/</link>
		<comments>http://www.lanigera.com/wordpress/2009/12/when-your-senior-dba-is-on-vacation/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 05:03:11 +0000</pubDate>
		<dc:creator>tkyle</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://www.lanigera.com/wordpress/2009/12/when-your-senior-dba-is-on-vacation/</guid>
		<description><![CDATA[&#8230;you realize just how valuable he is. I&#8217;m just hoping that we don&#8217;t have any further reminders for the rest of the week.]]></description>
			<content:encoded><![CDATA[<p>&#8230;you realize just how valuable he is.</p>
<p>I&#8217;m just hoping that we don&#8217;t have any further reminders for the rest of the week.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanigera.com/wordpress/2009/12/when-your-senior-dba-is-on-vacation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kiosk for Oracle MSCA</title>
		<link>http://www.lanigera.com/wordpress/2009/11/linux-kiosk-for-oracle-msca/</link>
		<comments>http://www.lanigera.com/wordpress/2009/11/linux-kiosk-for-oracle-msca/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 16:46:38 +0000</pubDate>
		<dc:creator>tkyle</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.lanigera.com/wordpress/?p=57</guid>
		<description><![CDATA[Recently, I was asked to explore building a kiosk image for use in our manufacturing facilities.Â All the system would need to do would be to allow the user to telnet into an Oracle MSCA/MWA service.Â I thought going in that this would be a straightforward task, but it turned out to be more complicated [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I was asked to explore building a kiosk image for use in our manufacturing facilities.Â  All the system would need to do would be to allow the user to telnet into an Oracle MSCA/MWA service.Â  I thought going in that this would be a straightforward task, but it turned out to be more complicated than I realized.</p>
<p>There were two problems that I was experiencing. The first was that F1-F4 were mapped differently, for what appears to be historical reasons (VT100 terminals did not have these keys). The other was that the telnet client needed to be in character mode, instead of line mode, and there was no easy way to do this in the Linux <strong>telnet</strong> client except through the user manually changing the mode.</p>
<p>So I used Expect to translate the F1-F4 keys to what the remote MSCA telnet server wanted, and then used C-Kermit as my telnet client. The scripts I wrote to perform these two steps are as follows:</p>
<pre class="brush: bash;">
 #!/usr/local/bin/kermit

 set telnet newline-mode nvt raw
 set telnet echo remote

 telnet /nowait host.company.com 12345

 quit
</pre>
<p>and</p>
<pre class="brush: bash;">
 #!/usr/bin/expect

 eval spawn -noecho &quot;/usr/local/bin/ktelnet.sh&quot;

 interact {
 &quot;\033[[A&quot; { send &quot;\033[P&quot; }
 &quot;\033[[B&quot; { send &quot;\033[Q&quot; }
 &quot;\033[[C&quot; { send &quot;\033[R&quot; }
 &quot;\033[[D&quot; { send &quot;\033[S&quot; }
 }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lanigera.com/wordpress/2009/11/linux-kiosk-for-oracle-msca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>With the hardware these days&#8230;</title>
		<link>http://www.lanigera.com/wordpress/2009/10/with-the-hardware-these-days/</link>
		<comments>http://www.lanigera.com/wordpress/2009/10/with-the-hardware-these-days/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 01:30:10 +0000</pubDate>
		<dc:creator>tkyle</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://www.lanigera.com/wordpress/?p=51</guid>
		<description><![CDATA[Kevin Closson gives those of us who aren&#8217;t pushing a million IOPS several reasons to consider the Sunacle Exadata 2 Database Thingamajig. Unfortunately, Kevin failed to mention a potential downside of having one of these babies.Â Namely, your developers and consultants will assume (even more than they probably already do) that whatever junk code they [...]]]></description>
			<content:encoded><![CDATA[<p>Kevin Closson gives those of us who aren&#8217;t pushing a million IOPS <a href="http://kevinclosson.wordpress.com/2009/10/21/sun-oracle-database-machine-the-million-oracle-database-iops-machine-or-marketing-hype-part-i/">several reasons to consider the Sunacle Exadata 2 Database Thingamajig</a>.</p>
<p>Unfortunately, Kevin failed to mention a potential downside of having one of these babies.Â  Namely, your developers and consultants will assume (even more than they probably already do) that whatever junk code they throw at the machine will run flawlessly.Â  And if it doesn&#8217;t, it must be the DBA or Unix team&#8217;s fault.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lanigera.com/wordpress/2009/10/with-the-hardware-these-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
