How to list APEX Dictionary views using SQL

Hi,

I hope this isn't old news but it seems that whenever someone talks about the APEX dictionary they talk about going into the development application and viewing them there. You can also access the dictionary using SQL. Here's how:

select *
from apex_dictionary
where column_id = 0
or

select distinct apex_view_name
from apex_dictionary
Of course you can remove the "where column_id=0" portion and get a list of the all the columns for the views etc.