Files
oracle/vdh/esfc_keep_tables.sql

7 lines
255 B
MySQL
Raw Normal View History

2026-03-12 21:23:47 +01:00
select owner, table_name, status, last_analyzed, num_rows, blocks, degree, cell_flash_cache
from dba_tables
where owner like nvl('&owner',owner)
and table_name like nvl('&table_name',table_name)
and cell_flash_cache like nvl('&cell_flash_cache','KEEP')
/