zOs/TX/PER14SEL

select *
    from sysibm.sysTables t
      join sysibm.sysTableSpace s
        on t.dbName = s.dbName and t.tsName = s.name
    where partitions > 0  and t.type = 'T'
      and not exists (select 1
                        from A540769.tPer14 q
                        where q.cr = t.creator and q.nm = t.name
                            and q.type in ('t', 'u')
                     )
;;;
select *
    from A540769.tPer14
    where type = 'u'
    order by cr, nm