CORE/database/views/lov_app_schemas.sql
2022-07-02 09:04:58 +02:00

9 lines
165 B
SQL

CREATE OR REPLACE FORCE VIEW lov_app_schemas AS
SELECT
a.owner,
a.owner AS owner_
FROM apex_applications a
WHERE a.owner NOT LIKE 'APEX%'
GROUP BY a.owner;