2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

16
tpt/xco.sql Normal file
View File

@@ -0,0 +1,16 @@
-- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
column xco_kqfcoidx heading IX format 99
column xco_name heading TABLE_NAME format a30 wrap
column xco_kqfconam heading COLUMN_NAME format a30 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%')
/