Also, if you want to go after specific ones in a specific namespace you can add a namespace parameter to the extract:
select extractvalue(column_value,
'*') myText
from junk_xml2 j, table(xmlsequence(extract(
my_xml, '/ns0:Component/ns0:Status
/StatusTyp
eCommId','
xmlns:ns0=
"
http://www.mysite.com/WIM/CBO/1.0/Component"')))
/