For the benefit of others, I'll add the answer.
The underscore (_) is Oracles default wildcard character for replacing a single character in a string.
For example, [tt]WHERE column LIKE 'P_'[/tt] would return all strings two characters in length beginning with P. However, [tt]WHERE column LIKE 'P%'[/tt] would retrun all strings beginning with P, regardless of its length.