<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Speech to Text to APEX</title>
	<atom:link href="http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/feed/" rel="self" type="application/rss+xml" />
	<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/</link>
	<description>Technology with a focus on Oracle, Application Express and Linux</description>
	<lastBuildDate>Fri, 13 Nov 2009 11:47:58 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bill Dwight</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1362</link>
		<dc:creator>Bill Dwight</dc:creator>
		<pubDate>Sun, 18 May 2008 16:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1362</guid>
		<description>Really, really cool! It was on my list to try this with Jott and now I don&#039;t have to - many thanks for the time saver Tyler! (P.S. I had the same problem as #4 David Peake above - 404 - and the same solution - log out of Jott and edit the custom link. Would be interesting to know what is going on there since a typical user would be stymied by the experience and likely give up).</description>
		<content:encoded><![CDATA[<p>Really, really cool! It was on my list to try this with Jott and now I don&#8217;t have to &#8211; many thanks for the time saver Tyler! (P.S. I had the same problem as #4 David Peake above &#8211; 404 &#8211; and the same solution &#8211; log out of Jott and edit the custom link. Would be interesting to know what is going on there since a typical user would be stymied by the experience and likely give up).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Dwight</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1361</link>
		<dc:creator>Bill Dwight</dc:creator>
		<pubDate>Sun, 18 May 2008 16:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1361</guid>
		<description>Looks really cool, but is your demo still up? When configuring the custom link, the redirect to:

http://apex.oracle.com/pls/otn/tyler.jott.register?userKey=...etc...

yielded a 404:

Not Found
The requested URL /pls/otn/tyler.jott.register was not found on this server.

Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server Server at htmldb.oracle.com Port 80</description>
		<content:encoded><![CDATA[<p>Looks really cool, but is your demo still up? When configuring the custom link, the redirect to:</p>
<p><a href="http://apex.oracle.com/pls/otn/tyler.jott.register?userKey=...etc.." rel="nofollow">http://apex.oracle.com/pls/otn/tyler.jott.register?userKey=&#8230;etc..</a>.</p>
<p>yielded a 404:</p>
<p>Not Found<br />
The requested URL /pls/otn/tyler.jott.register was not found on this server.</p>
<p>Oracle-Application-Server-10g/10.1.3.0.0 Oracle-HTTP-Server Server at htmldb.oracle.com Port 80</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ittichai</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1360</link>
		<dc:creator>ittichai</dc:creator>
		<pubDate>Sat, 17 May 2008 23:04:58 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1360</guid>
		<description>I agree that there is no limit here. I tried to configured it by following the instructions, and it works well without any issue. Thanks Tyler.

As DBA, I think this can be used for database management and monitoring; for example, to check database export status, object count, etc. So I created a package where it just simply executing a defined SQL statement and send its output back.

----
Part of Package
:
:
    if lower(p_cmd) like &#039;select all object%&#039; then
        select count(*) into l_return_val from all_objects;
    end if;  

  return l_return_val;

:
:

---
In the jot package, I just added the return result into the returned message.
                   
            l_return := sql_cmd.exec_sql_cmd(l_message);

            htp.p(l_message&#124;&#124;chr(13)&#124;&#124;l_return);

It is not pretty but it seems to work fine.

Output sample-

Jott to APEX (APEX): Select all objects.
Select all objects. 
44373

Thanks again for a great post.

Ittichai</description>
		<content:encoded><![CDATA[<p>I agree that there is no limit here. I tried to configured it by following the instructions, and it works well without any issue. Thanks Tyler.</p>
<p>As DBA, I think this can be used for database management and monitoring; for example, to check database export status, object count, etc. So I created a package where it just simply executing a defined SQL statement and send its output back.</p>
<p>&#8212;-<br />
Part of Package<br />
:<br />
:<br />
    if lower(p_cmd) like &#8217;select all object%&#8217; then<br />
        select count(*) into l_return_val from all_objects;<br />
    end if;  </p>
<p>  return l_return_val;</p>
<p>:<br />
:</p>
<p>&#8212;<br />
In the jot package, I just added the return result into the returned message.</p>
<p>            l_return := sql_cmd.exec_sql_cmd(l_message);</p>
<p>            htp.p(l_message||chr(13)||l_return);</p>
<p>It is not pretty but it seems to work fine.</p>
<p>Output sample-</p>
<p>Jott to APEX (APEX): Select all objects.<br />
Select all objects.<br />
44373</p>
<p>Thanks again for a great post.</p>
<p>Ittichai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Roessler</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1355</link>
		<dc:creator>Michael Roessler</dc:creator>
		<pubDate>Thu, 15 May 2008 19:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1355</guid>
		<description>Excellent information. Thank you for this!
This opens up a lot of ideas, especially if in future Jott could post into distinct table columns or APEX form fields, ie:
JOTT: &quot;What do you want to Jott?&quot;
Me: Buy stock
JOTT: Which stock?
Me: Oracle
JOTT: How many?
Me: 10,000
JOTT: Limit price?
Me: 21.75
JOTT: Got it!</description>
		<content:encoded><![CDATA[<p>Excellent information. Thank you for this!<br />
This opens up a lot of ideas, especially if in future Jott could post into distinct table columns or APEX form fields, ie:<br />
JOTT: &#8220;What do you want to Jott?&#8221;<br />
Me: Buy stock<br />
JOTT: Which stock?<br />
Me: Oracle<br />
JOTT: How many?<br />
Me: 10,000<br />
JOTT: Limit price?<br />
Me: 21.75<br />
JOTT: Got it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler Muth</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1350</link>
		<dc:creator>Tyler Muth</dc:creator>
		<pubDate>Tue, 13 May 2008 19:22:21 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1350</guid>
		<description>Make sure you follow instructions carefully.  A bunch of people have tried to skip the jott step and register null accounts (yeah, I&#039;m talking to you Beowolf, Dummy, Dummy2, Foo, Bar, Blah, and Hello).  I added some validation to the app to prevent this in the future.</description>
		<content:encoded><![CDATA[<p>Make sure you follow instructions carefully.  A bunch of people have tried to skip the jott step and register null accounts (yeah, I&#8217;m talking to you Beowolf, Dummy, Dummy2, Foo, Bar, Blah, and Hello).  I added some validation to the app to prevent this in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Peake</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1348</link>
		<dc:creator>David Peake</dc:creator>
		<pubDate>Mon, 12 May 2008 22:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1348</guid>
		<description>Tyler,

I went through your instructions and it kept failing at Step 3. when I hit the &quot;save&quot; button it kept coming up with a 404 Error. I actually logged off Jott and back on again and there were multiple Custom Links configured so deleted all but one. When I edited the one remaining link it correctly went to your application.

Now I can Jott away with glee :)

Yet another marvelous example of using APEX in creative ways.

Thanks,
David</description>
		<content:encoded><![CDATA[<p>Tyler,</p>
<p>I went through your instructions and it kept failing at Step 3. when I hit the &#8220;save&#8221; button it kept coming up with a 404 Error. I actually logged off Jott and back on again and there were multiple Custom Links configured so deleted all but one. When I edited the one remaining link it correctly went to your application.</p>
<p>Now I can Jott away with glee <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Yet another marvelous example of using APEX in creative ways.</p>
<p>Thanks,<br />
David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inside Oracle APEX: Integrate Speech Recognition into Oracle APEX</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1344</link>
		<dc:creator>Inside Oracle APEX: Integrate Speech Recognition into Oracle APEX</dc:creator>
		<pubDate>Mon, 12 May 2008 09:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1344</guid>
		<description>[...] of the speech recognition into the table of an Oracle APEX application. Read all the details on his Speech to text to Oracle APEX [...]</description>
		<content:encoded><![CDATA[<p>[...] of the speech recognition into the table of an Oracle APEX application. Read all the details on his Speech to text to Oracle APEX [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1343</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Mon, 12 May 2008 09:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1343</guid>
		<description>Tyler, that&#039;s really cool! To bad that&#039;s not available here in Europe :-(

Patrick</description>
		<content:encoded><![CDATA[<p>Tyler, that&#8217;s really cool! To bad that&#8217;s not available here in Europe <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://tylermuth.wordpress.com/2008/05/11/speech-to-text-to-apex/#comment-1342</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Sun, 11 May 2008 22:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://tylermuth.wordpress.com/?p=74#comment-1342</guid>
		<description>Cool post, yet another example of the limitless possibilities offered through Apex.  I could see some cool implementation of this that would really take my users by surprise.  Thanks for the info.

Tony</description>
		<content:encoded><![CDATA[<p>Cool post, yet another example of the limitless possibilities offered through Apex.  I could see some cool implementation of this that would really take my users by surprise.  Thanks for the info.</p>
<p>Tony</p>
]]></content:encoded>
	</item>
</channel>
</rss>
