How can I select all annotation classes with sql in an Oracle SDE? I can get all feature classes (including annotation) with this:
select i.name, i.physicalname, i.path, t.name
from sde.gdb_items_vw i
join sde.gdb_itemtypes t
on i.type = t.uuid
where t.name = 'Feature Class'