Oracle. Вывести список схем
/* Запрос для получения списка схем по названию */
select username,
created
from dba_users
where account_status = 'OPEN'
--and default_tablespace = 'USERS' and
and created > to_date('01-01-2020', 'DD-MM-YYYY')
and (username like upper('%FIN%') or username like upper('%PL%') or username like upper('%GZ%'))
;
Комментарии
Отправить комментарий