Hi,
If you want to just list up the tables which belong to a specific owner, please consider using this.
select 'DBA.'||table_name from systab where suser_name(creator) = 'DBA' order by 1 ;
You can substitute the DBA with the one you want.
Best regards,
Jerry