select 'select max(' || column_name || ') from ' || owner || '.' || name || ';'
  from DBA_PART_KEY_COLUMNS
 where name in (select distinct table_name
                  from dba_tab_partitions
                 where tablespace_name not in ('SYSAUX', 'SYSTEM'))
 order by name

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-11-13
  • 2022-12-23
  • 2021-05-24
  • 2022-12-23
  • 2022-01-18
猜你喜欢
  • 2022-12-23
  • 2022-02-20
  • 2021-12-15
  • 2021-05-20
  • 2022-12-23
  • 2021-05-29
  • 2021-06-25
相关资源
相似解决方案