티베로는 다른 데이터베이스이긴 하지만 거의 모든 RDBMS들이 취하는 질의어형식은 비슷하니 아래 오라클에서 통상적으로 쓰는 쿼리를 응용해보심이 좋을것 같습니다.
select tablename, columnname from( select tablename, columnname, tonumber( extractvalue( xmltype( dbmsxmlgen.getxml( 'select count() c from ' || tablename || ' where tochar(' || columnname || ') = ''JONES''' ) ), 'ROWSET/ROW/C' ) ) cnt from (select utc., rownum from usertabcolumns utc where datatype in ('CHAR', 'VARCHAR2') ) ) where cnt >= 0