안녕하세요 혹시 informix에서 함수가 존재하는지 안하는지 알고 싶은데 어떤 방법을 통해 알 수 있는지 알려주시면 감사합니다.
ex) test_1이라는 함수가 있으면 select count(1) from 딕셔너리 where .. ......
각 데이터베이스의 sysprocedures에서 확인하실 수 있습니다.
사용자 함수의 경우 아래 문장입니다. (isproc이 f이면 함수, p이면 프로시저)
select * from sysprocedures where mode = upper(mode) and isproc = 'f' and procname ='이름';
각 컬럼에 대한 설명은 아래 페이지를 참고하세요
http://www.ibm.com/support/knowledgecenter/SSGU8G_11.50.0/com.ibm.sqlr.doc/ids_sqr_053.htm?lang=en
정말 감사합니다.