2014-09-17 13:23:48 +02:00

14 lines
432 B
SQL

column xco_kqfcoidx heading IX format 99
column xco_name heading TABLE_NAME format a25 wrap
column xco_kqfconam heading COLUMN_NAME format a25 wrap
break on xco_name
select
t.name xco_name, c.kqfconam xco_kqfconam, c.kqfcodty, c.kqfcosiz, c.kqfcooff,
to_number(decode(c.kqfcoidx,0,null,c.kqfcoidx)) xco_kqfcoidx
from v$fixed_table t, x$kqfco c
where t.object_id = c.kqfcotob
and upper(c.kqfconam) like upper('%&1%')
/