Buscar colunas no DB2 Buscar nomes das colunas no DB2 1 2 3 4 5 6 7 8 9 10 11--for DB2/z select * from sysibm.systables where owner = 'SCHEMA' and name like '%CUR%' and type = 'T'; --for DB2/LUW select * from sysibm.systables where CREATOR = 'SCHEMA' and name like '%CUR%' and type = 'T';