<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8267817195182556826</id><updated>2011-07-28T14:25:18.009-07:00</updated><category term='certification'/><category term='SQL'/><category term='package'/><category term='books'/><category term='Regular Expressions'/><category term='Loop'/><category term='PL/SQL'/><category term='APEX'/><category term='Miscellaneous'/><category term='Forms'/><category term='Oracle'/><category term='ADF'/><category term='dependencies'/><title type='text'>Oracle Repairman</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-8447392875897899586</id><published>2007-09-14T05:37:00.000-07:00</published><updated>2007-09-14T05:58:07.790-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='package'/><category scheme='http://www.blogger.com/atom/ns#' term='PL/SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='dependencies'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><title type='text'>Package dependencies</title><content type='html'>There are multiple ways to track the dependencies between objects in an Oracle database, and I won't go into those here. &lt;br&gt;
But what I'd really like (or even need) is a tool that shows the dependencies between procedures and functions &lt;i&gt;within&lt;/i&gt; a package body. Not just the simple one-level tree-view you see in all PL/SQL IDE's, but something that shows the package procedure and functions and what functions/procedures (within the packages) they, in their turn, call, as tree nodes:

&lt;pre&gt;&lt;code&gt;
SOME_PACKAGE

|- PROCEDURE do_general_stuff
   +- PROCEDURE do_this_first
      +- FUNCTION get_that_over_there
      |- PROCEDURE delete_leftovers
|- FUNCTION is_that_so
|- PROCEDURE some_other_things

&lt;/code&gt;&lt;/pre&gt;

In fact, this would be such a great help in programming modularly I imagine there should be tools like this already, I just can't find them. So if you have any hints or tips, I'd like to hear them...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-8447392875897899586?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/8447392875897899586/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=8447392875897899586' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/8447392875897899586'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/8447392875897899586'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/09/package-dependencies.html' title='Package dependencies'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-7876373892108424286</id><published>2007-08-30T23:08:00.000-07:00</published><updated>2007-11-08T22:33:55.019-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PL/SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='Loop'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Loops - wtf</title><content type='html'>Ponder this for a moment (on Oracle 9i):

&lt;pre&gt;&lt;code&gt;
begin
    for r_x in (select * from x)
    loop
        for r_y in (select * from y where x_id = r_x.id)
        loop
            for r_z in (select * from z where y_id = r_y.id)
            loop
                -- some code ...
            end loop;
        end loop;
    end loop;
end;
&lt;/code&gt;&lt;/pre&gt;

Thinking that it was too obvious, I spent ten confused minutes wondering what could've been the idea behind it. When I inquired with the creator, the succinct "I thought this was more readable code" landed me back in reality.
&lt;br&gt;&lt;br&gt;
In case you're wondering, I prefer:

&lt;pre&gt;&lt;code&gt;
select  * 
from    x
join    y on x.id = y.x_id
join    z on y.id = z.y_id;
&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-7876373892108424286?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/7876373892108424286/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=7876373892108424286' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/7876373892108424286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/7876373892108424286'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/08/loops.html' title='Loops - wtf'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-841533966501866633</id><published>2007-08-29T22:56:00.000-07:00</published><updated>2007-08-29T23:13:23.668-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><category scheme='http://www.blogger.com/atom/ns#' term='certification'/><title type='text'>Oracle Beta Exam: 1Z1-047 SQL Expert</title><content type='html'>By mere chance, I came across the Oracle Beta exams, and as it's most relevant for my day job, I took a glance at the the &lt;a href="http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&amp;p_exam_id=1Z0_047"&gt;SQL Expert&lt;/a&gt; exam. Some thoughts on that:

&lt;ul&gt;
&lt;li&gt; (+) It's good to see they included some of the 'newer' SQL features, like Merge, Group By extensions, hierarchical queries, even Regular Expressions! (I know some of these are not so new, but ok...)
&lt;li&gt; (-) Nothing on Analytic Functions?
&lt;li&gt; (-) Nothing on Oracle Text Searches?
&lt;li&gt; (-) There's still too much basic SQL in it, like multiple-column subqueries, manipulating data (just to name two).
&lt;/ul&gt;

I'm just reflecting on the topics mentioned, I have no clue about the content (&lt;a href="http://laurentschneider.com/wordpress/2007/07/sql-expert.html"&gt;Laurent Schneider&lt;/a&gt; took the beta exam, if you want a first hand opinion). To me it looks like half of it is introduction to SQL, and only half of it is 'Expert' stuff (too generous, or too harsh?). When it's past beta, I'll probably take the exam, but I'd still like to see something more worthy of the name "Expert"...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-841533966501866633?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/841533966501866633/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=841533966501866633' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/841533966501866633'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/841533966501866633'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/08/oracle-beta-exam-1z1-047-sql-expert.html' title='Oracle Beta Exam: 1Z1-047 SQL Expert'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-3943245040094942968</id><published>2007-08-23T22:14:00.000-07:00</published><updated>2007-08-23T23:05:36.963-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='APEX'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>A native list of months</title><content type='html'>A &lt;a href="http://jochenvdv.blogspot.com/2007/04/apex-and-list-of-months.html"&gt;while&lt;/a&gt; ago I blogged about making a list of months in an (APEX) application, for which I used a query with connect by. I got some feedback on that, and Gunnar Andersson informed me that such lists are actually provided with APEX as views. For example:&lt;br&gt;&lt;br&gt;

&lt;pre&gt;&lt;code&gt;
Select * from WWV_FLOW_MONTHS_MON;

MONTH_DISPLAY        MONTH_VALUE
-------------------- ----------------------
Jan 1
Feb 2
Mrt 3
Apr 4
Mei 5
Jun 6
Jul 7
Aug 8
Sep 9
Okt 10
Nov 11
Dec 12

12 rows selected

&lt;/code&gt;&lt;/pre&gt;&lt;br&gt;&lt;br&gt;

The same goes for &lt;br&gt; 
WWV_FLOW_HOURS_12&lt;br&gt; 
WWV_FLOW_HOURS_24 &lt;br&gt; 
WWV_FLOW_MINUTES &lt;br&gt; 
WWV_FLOW_MINUTES_5 &lt;br&gt; 
... &lt;br&gt; 
I was curious as to how Oracle defined these views, if they used the same connect by "trick", so I drilled down the DDL. &lt;br&gt;&lt;br&gt;

&lt;pre&gt;&lt;code&gt;
select  dbms_metadata.get_ddl( 'VIEW', 
                               'WWV_FLOW_MONTHS_MON', 
                               'FLOWS_030000'
                             ) as the_ddl
from    dual;

THE_DDL
----------------------
select "MONTH_DISPLAY","MONTH_VALUE" 
from   wwv_flow_months_mon_temp 
where  month_value &lt; 13;
&lt;/code&gt;&lt;/pre&gt;&lt;br&gt;&lt;br&gt;

Seems I'll have to dig a little deeper:&lt;br&gt;&lt;br&gt;

&lt;pre&gt;&lt;code&gt;
select  dbms_metadata.get_ddl( 'VIEW', 
                               'WWV_FLOW_MONTHS_MON_TEMP', 
                               'FLOWS_030000'
                             ) as the_ddl
from    dual;

THE_DDL
----------------------
select to_char(to_date(to_char(rownum,'00'),'MM'),'Mon') month, 
       rownum value 
from   wwv_flow_dual100
where  rownum &lt; 13
union all
select '                    ', 
       20 
from   dual;
&lt;/code&gt;&lt;/pre&gt;&lt;br&gt;&lt;br&gt;


I don't really get why the "union all" is there, but anyway: like its name suggests, WWV_FLOW_DUAL100 is actually a table with one dummy column and a 100 rows with numbers for values. No fancy SQL, and probably more efficient.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-3943245040094942968?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/3943245040094942968/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=3943245040094942968' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3943245040094942968'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3943245040094942968'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/08/native-list-of-months.html' title='A native list of months'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-2876261080003334945</id><published>2007-08-06T22:07:00.000-07:00</published><updated>2007-08-06T23:02:58.564-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Forms'/><category scheme='http://www.blogger.com/atom/ns#' term='ADF'/><title type='text'>Mimicing Forms with ADF BC &amp; ADF Swing</title><content type='html'>If you are a Forms Developer and you're into Java/Oracle ADF/JDeveloper, there's a great new &lt;a href="http://groundside.com/blog/GrantRonald.php?p=602&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1#more602"&gt;Oracle White Paper&lt;/a&gt; by Grant Ronald, where he demonstrates mimicing the Forms look with ADF Business Components and ADF Swing.&lt;br&gt;
Considering that Swing is even closer to the Forms look and (development) feel than JSF, this might be a better introduction to J2EE than the book by &lt;a href="http://www.amazon.co.uk/Oracle-JDeveloper-Forms-SQL-Developers/dp/0072259604/ref=sr_1_1/202-6594818-8139043?ie=UTF8&amp;s=books&amp;qid=1186465717&amp;sr=8-1"&gt;Mills &amp; Koletzke&lt;/a&gt; (cf. the image on the right). Which is to say, for a J2EE novice like myself, I tought the JSF architecture was a bit daunting at first.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-2876261080003334945?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/2876261080003334945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=2876261080003334945' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2876261080003334945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2876261080003334945'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/08/mimicing-forms-with-adf-bc-adf-swing.html' title='Mimicing Forms with ADF BC &amp; ADF Swing'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-2676094853923601818</id><published>2007-08-06T02:44:00.000-07:00</published><updated>2007-08-06T03:44:13.929-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Forms'/><title type='text'>OTN Forms forum, week 30 and 31</title><content type='html'>Some interesting stuff the last two weeks. The amount of noob questions on the forums used to put me off in the past, but I have to admit there's a lot of quality posts and ideas on the Forms forum. Now I wish I had more time to try everything that seems worthwhile :) Anyway, here's my list:&lt;br&gt;&lt;br&gt;

&lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=382867&amp;start=0&amp;tstart=135"&gt;Zdebug -- Download a Forms debugging message tool&lt;/a&gt; &lt;br&gt;&lt;br&gt;

A very small but very handy tool for debugging your forms, by &lt;a href="http://members.aol.com/stevec5088/index.htm"&gt;Steve Cosner&lt;/a&gt;. It uses a substitute for the message built-in and captures all those messages in a recordgroup. By including an extra button in your own form, you can call the debug form, which displays all the captured messages. It also supports getting serveroutput (dbms_output). Simple, efficient, practical! &lt;br&gt;&lt;br&gt;

&lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=536990&amp;tstart=150"&gt;Implementing JFreeCharts instead of FormsGraph.jar?&lt;/a&gt;&lt;br&gt;&lt;br&gt;

An unanswered question I as well would like to know the answer to. If you happen to know a solution, post it in the forum, pretty please...&lt;br&gt;&lt;br&gt;

&lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=536647&amp;tstart=180"&gt;Search a string in all .fmb in a directory&lt;/a&gt;&lt;br&gt;&lt;br&gt;

Not really an issue on Unix or Linux, but if you use Windows as an OS (my condolences), &lt;a href="http://www.wingrep.com/"&gt;WinGrep&lt;/a&gt; is the app you need.&lt;br&gt;&lt;br&gt;

&lt;a href="http://forums.oracle.com/forums/thread.jspa?messageID=1961614&amp;#1961614"&gt;Using Enter-Query Mode Programmatically&lt;/a&gt;&lt;br&gt;&lt;br&gt;

A workaround to hitting the Enter Query and Execute Query buttons every time the user wants to perform a search. The user can stay in Normal mode, enter a search criterium in one of the fields, and Execute the search. The subsequent discussion is definitely worth reading too.&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-2676094853923601818?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/2676094853923601818/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=2676094853923601818' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2676094853923601818'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2676094853923601818'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/08/otn-forms-forum-week-30-and-31.html' title='OTN Forms forum, week 30 and 31'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-1987829448354795163</id><published>2007-07-31T22:59:00.000-07:00</published><updated>2007-07-31T23:40:57.705-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Regular Expressions'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Regular Expressions in Oracle 10g database</title><content type='html'>As I was on holiday in Toulouse (France), I'll have to skip a week or two of my OTN Forms forum posts. However, while cleaning up my browser bookmarks, I found some gems of the SQL and PL/SQL forum I thought I'd share. Last year, user "cd" wrote an excellent introduction on using regular expressions in the Oracle 10g database. You can find the series here:&lt;br&gt;

&lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=427716"&gt;Part 1&lt;/a&gt;&lt;br&gt;
&lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=430647"&gt;Part 2&lt;/a&gt;&lt;br&gt;
&lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=435109&amp;tstart=0"&gt;Part 3&lt;/a&gt;&lt;br&gt;
&lt;br&gt;

If you haven't got a clue about what regular expressions are, make the effort of trying out the examples, you'll find they are very powerful and can make your programming life a lot easier. If you prefer your reading material to be portable, you could try the &lt;a href="http://www.amazon.co.uk/Oracle-Regular-Expressions-Reference-OReilly/dp/0596006012/ref=sr_1_1/202-6594818-8139043?ie=UTF8&amp;s=books&amp;qid=1185949079&amp;sr=8-1"&gt; Oracle Regular Expressions Pocket Reference&lt;/a&gt; by &lt;a href="http://www.gennick.com/"&gt;Jonathan Gennick&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-1987829448354795163?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/1987829448354795163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=1987829448354795163' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/1987829448354795163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/1987829448354795163'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/07/regular-expressions-in-oracle-10g.html' title='Regular Expressions in Oracle 10g database'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-5693650184542397146</id><published>2007-07-15T23:17:00.000-07:00</published><updated>2007-07-15T23:38:46.431-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Forms'/><title type='text'>OTN forms forum, week 28</title><content type='html'>As I was either away from home, studying, or too busy at work, my summary for the last week is kind of limited, maybe quality makes up for quantity ;) &lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=529646&amp;tstart=0"&gt;Delete table for a user in when_button_press&lt;/a&gt;&lt;br&gt;&lt;br&gt;

The solution works fine of course, but I still feel one should ask &lt;i&gt;why&lt;/i&gt; someone would have such a requirement.&lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=444708&amp;tstart=0"&gt;Need some help?&lt;/a&gt; &lt;br&gt;&lt;br&gt;

A fun read on a very specific business requirement. Try coming up with a solution yourself before scrolling down to see what others came up with! :) &lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=530852&amp;tstart=0"&gt;Do form menus respect hierarchical roles?&lt;/a&gt;&lt;br&gt;&lt;br&gt;

A Forms limitation you might have stumbled upon yourself: due to the view Forms uses to determine the roles for a user, it fails to see nested or hierarchical roles. The solution is quite simple however.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-5693650184542397146?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/5693650184542397146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=5693650184542397146' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/5693650184542397146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/5693650184542397146'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/07/otn-forms-forum-week-28.html' title='OTN forms forum, week 28'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-2060354066588104737</id><published>2007-07-08T22:58:00.000-07:00</published><updated>2007-07-09T00:29:37.853-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Forms'/><title type='text'>OTN forms forum, week 27</title><content type='html'>I kept an eye on the Oracle Forms forum on OTN last week, I'll probably get tired of it soon, but for what it's worth, here are some topics I found interesting. My personal wrap-up for week 27:&lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=527116&amp;tstart=0"&gt;&lt;i&gt;How long is Oracle Forms/Developer Suite to be supported?&lt;/i&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;

Should be reassuring for those who invest(ed) a lot of their time in the Forms technology, be it as a company or as a developer. If I got a euro for every time it's proclaimed dead, I could buy myself some new Oracle books. As stated, it's mostly the new trends in webdevelopment that toll the bell.&lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=493635&amp;tstart=0"&gt;François Degrelle's Forms look &amp; feel project&lt;/a&gt;&lt;br&gt;&lt;br&gt;

While you're hanging on to Forms, a great way to upgrade your skills is integrating Java Beans and Pluggable Java Components. François Degrelle has been doing this for a while, it's worth your time checking out &lt;a href="http://fdegrelle.over-blog.com/"&gt;his blog&lt;/a&gt;.&lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=473423&amp;start=0&amp;tstart=0"&gt;Bean to load image item from URL?&lt;/a&gt;&lt;br&gt;&lt;br&gt;

One simple example of the Forms &amp; Java integration mentioned above.&lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=526953&amp;tstart=0"&gt;Any way to know the source table of a form at runtime?&lt;/a&gt;&lt;br&gt;&lt;br&gt;

I picked this one to point out the difference between where you query from (block_property QUERY_DATA_SOURCE_NAME) and where you write your data to (block property DML_DATA_TARGET_NAME). They don't have to be identical.&lt;br&gt;&lt;br&gt;

* &lt;a href="http://forums.oracle.com/forums/thread.jspa?threadID=526287&amp;tstart=15"&gt;Substitute for JInitiator&lt;/a&gt;&lt;br&gt;&lt;br&gt;

For those who think they're stuck to JInitiator to run forms on the web, this thread provides some links to installing the Sun JRE plugin as an alternative.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-2060354066588104737?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/2060354066588104737/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=2060354066588104737' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2060354066588104737'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2060354066588104737'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/07/otn-forms-forum-week-27.html' title='OTN forms forum, week 27'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-3407034761676390685</id><published>2007-07-08T10:19:00.000-07:00</published><updated>2007-07-08T22:57:43.668-07:00</updated><title type='text'>Coaching</title><content type='html'>The last few weeks I spent a significant portion of my time coaching junior developers, which I enjoy a lot. I'm learning learning people :-) You have to pay attention to &lt;i&gt;how&lt;/i&gt; you help someone. Just giving or showing them the solution won't get them any further when they encounter a similar problem. &lt;br&gt;
Most of the time, I'll show the relevant section of the help files (in case of Forms) or the Oracle docs,  hoping they'll pick it up as a problem-solving strategy.&lt;br&gt;
I also try to ask questions in a certain direction, so they can 'give birth' to a solution themselves. If my terminology strikes you as odd, it refers to the &lt;a href="http://en.wikipedia.org/wiki/Maieutics"&gt;maieutic method&lt;/a&gt; of Socrates. &lt;br&gt;&lt;br&gt;

&lt;a href="http://www.amazon.co.uk/Information-Anxiety-2-Hayden-Que/dp/0789724103/ref=sr_1_4/202-5993310-4875812?ie=UTF8&amp;s=books&amp;qid=1182229636&amp;sr=1-4"&gt;R.S. Wurmans's book&lt;/a&gt; (in the currently reading section to the right) also has some interesting ideas on giving instructions. It's not the most recent, but certainly still up-to-date, and plenty of food for thought. If you reckon the original book came out at the start of the 90's, that's an amazing feat.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-3407034761676390685?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/3407034761676390685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=3407034761676390685' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3407034761676390685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3407034761676390685'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/07/coaching.html' title='Coaching'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-5751112554712683841</id><published>2007-07-05T03:28:00.000-07:00</published><updated>2007-07-05T11:10:44.192-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PL/SQL'/><title type='text'>Going flat on your face</title><content type='html'>It's been a while since I posted here, I've been too busy in the 'real' world searching/buying a house. We found a nice place and are probably moving by the end of summer.&lt;br&gt;

There's a new 'story' on my technical blog, on PL/SQL AFTER triggers, you can read it &lt;a href="http://blogs.ittoolbox.com/oracle/jochenvdv/archives/after-triggers-the-truth-is-out-there-17415"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-5751112554712683841?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/5751112554712683841/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=5751112554712683841' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/5751112554712683841'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/5751112554712683841'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/07/going-flat-on-your-face.html' title='Going flat on your face'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-2795708729473887657</id><published>2007-05-15T22:28:00.000-07:00</published><updated>2007-05-16T03:18:03.518-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='books'/><title type='text'>Oracle ADF for Forms &amp; PL/SQL Developers</title><content type='html'>As you can see, I added a page element to the right with the book(s) I'm currently reading.  I bought &lt;a href="http://www.amazon.co.uk/Oracle-JDeveloper-Forms-SQL-Developers/dp/0072259604/ref=sr_1_1/202-7706602-3424609?ie=UTF8&amp;s=books&amp;qid=1179223393&amp;sr=8-1"&gt;Oracle JDeveloper 10g for Forms &amp; PL/SQL Developers&lt;/a&gt; yesterday. Even though I'm still working on Forms projects, I think it's important to stay on top of the new technologies and get at least the basics of them down. Also on my wish list is the &lt;a href="http://www.apress.com/book/bookDisplay.html?bID=10286"&gt;APEX book&lt;/a&gt; by Jon Scott and Scott Spendolini, it should be out next month, I can't wait. 
&lt;br&gt;&lt;br&gt;
I nearly finished my apex home accounting application, it just needs a report or two with some balance overviews. My next project will be a new website for our band. If I find the time, I'll also make the same projects with JDeveloper+ADF, could be interesting...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-2795708729473887657?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/2795708729473887657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=2795708729473887657' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2795708729473887657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/2795708729473887657'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/05/oracle-adf-for-forms-plsql-developers.html' title='Oracle ADF for Forms &amp; PL/SQL Developers'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-4471764957753364932</id><published>2007-05-07T12:30:00.000-07:00</published><updated>2007-05-07T03:40:55.307-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='APEX'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>APEX and a list of Months</title><content type='html'>My colleague &lt;a href="http://dgielis.blogspot.com/"&gt;Dimitri&lt;/a&gt; will be glad to hear I started experimenting with APEX again. I have been doing my home accounting in Excel for years, and it seemed like a nice project to try and build in APEX. As I wanted the data structure to be a little different, I didn't just import the excel sheets, but designed a new data model and started from there. I might still import the excels to have the old data available in Oracle as well, even write a small ETL routine to convert to the new model. For now I'm just having fun learning a new way to make client interfaces. &lt;br&gt;&lt;br&gt;

One of the (mainly SQL) 'issues' I had was creating a select list with all the months of a year, in a meaningful and efficient way. I used a combination of date formatting and a row generator, you can read more about that &lt;a href="http://blogs.ittoolbox.com/oracle/jochenvdv/archives/a-list-of-months-16122"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-4471764957753364932?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/4471764957753364932/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=4471764957753364932' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/4471764957753364932'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/4471764957753364932'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/04/apex-and-list-of-months.html' title='APEX and a list of Months'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-227784107990541697</id><published>2007-05-03T22:15:00.000-07:00</published><updated>2007-05-03T22:40:55.146-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><title type='text'>Are you the smartest?</title><content type='html'>I finished the last test of Oracle's "Are you the smartest?" contest yesterday, it was about SOA (Service Oriented Architecture), and it was hard... &lt;br&gt;
For those of you who don't know what I'm talking about: AYTS is an annual contest organised by Oracle. It consists of attending four sessions of Sales Consultants presenting business solutions. This year's sessions were about BI Suite, JDeveloper &amp; ADF, SOA Suite and Identity Management. I liked the BI and JDev sessions, the others were a case of "slow death by powerpoint" for me. &lt;br&gt;&lt;br&gt;
I liked the ease, transparancy and intuitive interface of the BI Suite. JDeveloper and ADF I had already worked with, and I'll admit it's an amazing and wide-ranging tool (for free!), but when it comes to building User Interfaces, my bets are on APEX.
As for winning prizes (first price is a trip to Oracle Headquarters in SF, USA), I don't think I'll be among the lucky ones...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-227784107990541697?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/227784107990541697/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=227784107990541697' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/227784107990541697'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/227784107990541697'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/05/are-you-smartest.html' title='Are you the smartest?'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-3645904837213340570</id><published>2007-04-30T14:53:00.000-07:00</published><updated>2007-05-03T22:42:14.412-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Extract</title><content type='html'>I made a new entry in my technical blog on my 'discovery' of this SQL function. Check it out &lt;a href="http://blogs.ittoolbox.com/oracle/jochenvdv"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-3645904837213340570?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/3645904837213340570/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=3645904837213340570' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3645904837213340570'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3645904837213340570'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/04/extract.html' title='Extract'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-4973091654790552016</id><published>2007-04-26T08:03:00.000-07:00</published><updated>2007-04-26T08:47:25.300-07:00</updated><title type='text'>Mind Mapping as an analyzing tool</title><content type='html'>A few weeks ago I read an &lt;a href="http://headrush.typepad.com/creating_passionate_users/2005/04/why_i_want_a_ta.html"&gt;article&lt;/a&gt; by Kathy Sierra on Tablet PC's and Mind Mapping. I had only seen the technique used once before, by one of my colleagues, to organize the topics for a meeting. I thought it looked neat, but as attending or organizing meetings isn't one of my day-to-day tasks, it didn't stick to my mind. &lt;br&gt;
Kathy Sierra however, is quite good at rousing enthousiasm, so I downloaded an open source mindmapper, &lt;a href="http://freemind.sourceforge.net/wiki/index.php/Main_Page"&gt;FreeMind&lt;/a&gt;. I played around with it for a while, and then I got the idea to use it as an aid in extracting some structure out of a myriad of bussines rules summed up in &lt;a href="http://en.wikipedia.org/wiki/Use_Cases"&gt;Use Case&lt;/a&gt; documents. So far they've been a great help, seeing as on the project I'm working on now, there's a vast no man's land between the Use Cases and actual coding. Oh, and they look hip too. Too bad I can't post any screenshots, as the content is confidential, but there are plenty on FreeMind's Sourceforge page.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-4973091654790552016?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/4973091654790552016/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=4973091654790552016' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/4973091654790552016'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/4973091654790552016'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/04/mind-mapping-as-analyzing-tool.html' title='Mind Mapping as an analyzing tool'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-3395970228716714103</id><published>2007-04-24T03:26:00.000-07:00</published><updated>2007-05-03T22:41:52.018-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Miscellaneous'/><title type='text'>A Modest Destiny (Sean Howard)</title><content type='html'>I'm a big fan of Sean Howard's pixel art comics. If you're into strong characters, witty humor and well-constructed plot twists, check out &lt;a href="http://www.squidi.net/comic/amd/index.php"&gt;A Modest Destiny&lt;/a&gt;, a series already spanning four episodes. The pixel art is great too, I can't imagine the time and dedication it takes to make something like that. A lot of people compare it to the old Zelda and Mario Bros graphics, but it doesn't do him justice.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-3395970228716714103?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/3395970228716714103/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=3395970228716714103' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3395970228716714103'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/3395970228716714103'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/04/modest-destiny-sean-howard.html' title='A Modest Destiny (Sean Howard)'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8267817195182556826.post-8119402599347598076</id><published>2007-04-24T02:45:00.001-07:00</published><updated>2007-05-03T22:41:14.382-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><title type='text'>Oracle nr 30 in Brandz Top 100</title><content type='html'>Millward Brown released its annual &lt;a href="http://www.millwardbrown.com/Sites/Optimor/Content/KnowledgeCenter/BrandzRanking2007.aspx"&gt;report&lt;/a&gt; ranking the top 100 of strongest brands measured by dollar value. Google shines at number 1, dethroning Microsoft. Oracle is on 30, SAP on 27. However, Oracle has a 28% growth in business value. It would be nice to have a more detailed analysis of this figure. I'm guessing the Fusion/Middleware catch-up is a significant factor.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8267817195182556826-8119402599347598076?l=jochenvdv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jochenvdv.blogspot.com/feeds/8119402599347598076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8267817195182556826&amp;postID=8119402599347598076' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/8119402599347598076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8267817195182556826/posts/default/8119402599347598076'/><link rel='alternate' type='text/html' href='http://jochenvdv.blogspot.com/2007/04/oracle-on-nr-30-in-brandz-top-100.html' title='Oracle nr 30 in Brandz Top 100'/><author><name>JochenVdV</name><uri>http://www.blogger.com/profile/04267067690253267303</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='20' height='32' src='http://farm3.static.flickr.com/2106/1834310189_adfecac3cf.jpg?v=0'/></author><thr:total>0</thr:total></entry></feed>
