<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot site cfguy</title><link>http://cfguy.instantspot.com</link><description>Observations and confessions of a web worker.</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2008 by cfguy</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Mon, 13 Oct 2008 04:03:12 GMT</pubDate><item><title>Interesting Oracle Authentication Behavior</title><link>http://cfguy.instantspot.com/blog/2007/01/30/Interesting-Oracle-Authentication-Behavior</link><description>&lt;p&gt;
Oracle doesn&amp;#39;t allow (by default) usernames that begin with a number, as well as certain special characters in usernames and passwords.&amp;nbsp; After doing some research, I learn that Oracle will&amp;nbsp;allow almost ANY username and password, as long as they are provided in quotes: 
&lt;/p&gt;
&lt;p&gt;
So, (in Java) this: &lt;br /&gt;
&lt;font face=&quot;courier new,courier&quot;&gt;stmt.executeUpdate(&amp;quot;alter user &amp;quot; + loginName + &amp;quot; identified by &amp;quot; + password); &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
Becomes this: &lt;br /&gt;
&lt;font face=&quot;courier new,courier&quot;&gt;stmt.executeUpdate(&amp;quot;alter user \&amp;quot;&amp;quot; + loginName + &amp;quot;\&amp;quot; identified by \&amp;quot;&amp;quot; + password + &amp;quot;\&amp;quot;&amp;quot;); &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
No problemo.&amp;nbsp; But there is a &amp;quot;gotcha&amp;quot;!&amp;nbsp;&amp;nbsp;When you add the quotes,&amp;nbsp;usernames&amp;nbsp;become CASE SENSITIVE! 
&lt;/p&gt;
&lt;p&gt;
Luckily for us, all of the usernames in this system are uppercase.&amp;nbsp; so a quick addition, and you&amp;#39;re good to go: &lt;br /&gt;
&lt;font face=&quot;courier new,courier&quot;&gt;stmt.executeUpdate(&amp;quot;alter user \&amp;quot;&amp;quot; + loginName.toUpperCase() + &amp;quot;\&amp;quot; identified by \&amp;quot;&amp;quot; + password + &amp;quot;\&amp;quot;&amp;quot;); &lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
I don&amp;#39;t usually post Oracle stuff, but since there was so little information on this behavior, I thought I would share. Maybe it will help someone else out. :) 
&lt;/p&gt;
</description><pubDate>Tue, 30 Jan 2007 15:05:24 GMT</pubDate><guid>http://cfguy.instantspot.com/blog/2007/01/30/Interesting-Oracle-Authentication-Behavior</guid><category>Oracle</category></item><item><title>ColdFusion Developer Urgently Needed in Houston</title><link>http://cfguy.instantspot.com/blog/2006/09/22/ColdFusion-Developer-Urgently-Needed-in-Houston</link><description>&lt;p&gt;ColdFusion developer needed ASAP in the Galleria area of Houston.&amp;nbsp; This is a permanent, full-time position that will pay in the ~$60k range.&lt;br /&gt;
&lt;br /&gt;
Required skills include ColdFusion and SQL Server, but they are growing quickly and value a diverse skill set for future need.&amp;nbsp; Immediate availability is a big plus!&lt;br /&gt;
&lt;br /&gt;
There is no significant travel.&lt;br /&gt;
&lt;br /&gt;
They provide services in the income tax industry so there is a busy season before April 15th that will include significant overtime that will be balanced during the off season.&amp;nbsp; There are bonuses available and good benefits.&lt;br /&gt;
&lt;br /&gt;
Shoot me an email with your resume&apos; attached if you&apos;re interested.&amp;nbsp; My email address is my first name @ my full name (no underscored) dot com.&lt;/p&gt;
&lt;p&gt;-Seth&lt;br /&gt;
(Mr. Bienek if you&apos;re nasty)&lt;/p&gt;</description><pubDate>Fri, 22 Sep 2006 11:47:00 GMT</pubDate><guid>http://cfguy.instantspot.com/blog/2006/09/22/ColdFusion-Developer-Urgently-Needed-in-Houston</guid><category>ColdFusion,Adobe</category></item></channel></rss>