Check out these presentations from Oracle OpenWorld Asia Pacific that was held in Shanghai this year. By the way, I got my Oracle OpenWorld badge a few days ago. That will save me some time during registration. Apart from the sessions, here are some of the things that I’ll be doing during the conference (so far):
It’s going to be loaded with learning, networking and face-to-face socializing. Fun, fun, fun.
Comments Off | Filed in Oracle | Tags: OpenWorldMore from my bookmarks on del.icio.us
Comments Off | Filed in LinksThanks to Jake, I now have a bunch of my “Web 2.0 accounts” aggregated into one place at FriendFeed: del.icio.us, Flickr, Google Reader, Google Shared Stuff, LinkedIn, YouTube and Twitter.
You can subscribe to my feed here. FriendFeed is great. I like it. It is currently in private beta testing. However, if you’re interested, just leave a comment below and I’ll send you an invite.
Speaking of twitter, I’m starting to like it more. You really have to pick the right friends you follow, otherwise you’ll be overwhelmed by useless chatter. Too bad my employer has blocked twitter, but that’s not a problem. I use:
I use twitterfeed in many different ways, like for example posting photo tweets from my iPhone to Flickr->twitter. I also publish my blog feed to my twitter account. Moreover, OraNA, Oracle and OOW twitter accounts use twitterfeed as well.
There are many other twitter applications, but the ones above are my favorites.
8 Comments | Filed in Technology | Tags: friendfeed, twitter, web2.0Just out, Oracle Database 11g Release 1 for Microsoft Windows (32-bit). Get it while it’s hot.

Yes, ladies and gentlemen, Oracle now has an official wiki site, hosted by wetpaint. From the wiki’s FAQ:
Oracle is providing this wiki so that customers and partners (and anyone else interested in Oracle) can collaboratively create and share content that is helpful to the community at large–whether installation guides and tips, project documentation, technical notes, or anything else (appropriate) that captures your imagination.
Maybe this is the “exciting community-related project” that Justin recently hinted that it was “in the works”.
The following are the unofficial Oracle wikis that I know about:
It is indeed exciting to have an official Oracle wiki and it will be interesting to see how this official wiki will evolve and how the Oracle community will use it.
Update: The name of the wiki has changed from Oracle Whiteboard to Oracle Wiki.
4 Comments | Filed in Oracle | Tags: wikiJeff Atwood, the author of the Coding Horror blog, has a nice visual explanation of SQL joins. For the non-visual explanation, I refer you to the following articles:
However, ANSI SQL join syntax does not always work in Oracle, at least up to version 10gR2.
Comments Off | Filed in Joins, Oracle | Tags: concepts, joinHere are some interesting statistics about the Oracle Technology Network community as of June 2007:
On a related topic, Justin recently twittered about “an exciting community-related project in the works with an OpenWorld deadline of course”. Could it be that they are going to open up Connect, Oracle’s internal social network, to the outside, allowing Oracle customers and OTN members to join in?
7 Comments | Filed in Oracle | Tags: otnIn SQL and PL/SQL there are two comment styles you can use, single-line and multi-line:
Multi-line comments begin with a slash and an asterisk (/*) and end with an asterisk and a slash (*/). the comment can span multiple lines.
single-line comments begin with -- (two hyphens) and end with a line break. The comment text cannot extend to a new line. So, a double hyphen anywhere on a line turns the rest of the line into a comment.
The turns the rest of the line into a comment can sometimes cause unexpected behavior. My coworker was working on a Oracle form. He created an LOV based on a query similar to this (not the actual query, modified for simplicity):
select employee_id, first_name
from employees
where manager_id = 100 -- The king
and job_id = 'ST_MAN'
The above query returned 5 rows when executed in SQL*Plus. However, when bringing up the LOV in the form, there were 14 records. Where did the extra 9 rows come from? After turning trace on and analyzing the trace file, he noticed that somehow the above query was passed to Oracle like this:
select employee_id, first_name
from employees where manager_id = 100 -- The king and job_id = 'ST_MAN'
Which means that whatever is after the -- was treated as a comment and, as a result, was not executed. The where clause was effectively truncated which explains why he was getting 14 rows instead of 5. The fix was simple:
select employee_id, first_name
from employees
where manager_id = 100 /* The king */
and job_id = 'ST_MAN'
So, what have we learned? We learned to avoid commenting using two hyphens and instead use the slash and asterisk /* */ commenting style inside SQL statements.
14 Comments | Filed in Oracle, Tips | Tags: gotcha, sqlA blog world exclusive, that’s how Mark Rittman broke the news about Tom Kyte’s new beard. Now, the list of top ten beards needs to be updated.

By the way, on a completely different topic, I spent a good portion of the weekend upgrading my blog to WordPress 2.3. It has tags now. It also has a new look.
4 Comments | Filed in Oracle | Tags: beard, WordPressMore from my bookmarks on del.icio.us
2 Comments | Filed in Links