본문 바로가기

develop72

postgresql 컬럼, 코멘트 조회 테이블 컬럼 정보 select c.relname, a.attrelid as "tableoid", a.attname as "colname", a.attnum as "columnoid", (SELECT col_description(a.attrelid, a.attnum)) AS COMMENT from pg_catalog.pg_class c inner join pg_catalog.pg_attribute a on a.attrelid = c.oid where c.relname = '테이블명' and a.attnum > 0 and a.attisdropped is false and pg_catalog.pg_table_is_visible(c.oid) order by a.attrelid, a.attnum 테이블 코멘트 정.. 2020. 6. 17.
프로젝트 정의 https://multicore-it.com/84?category=686770 프로젝트로 알아보는 보다 나은 시스템 만들기(개요) [프로젝트로 알아보는 보다 나은 시스템 만들기] 과정을 시작하며 필자는 이 과정에서 정보시스템 개발과 운영에 관련된 다양한 업무와 기술을 프로젝트라는 틀을 빌려 설명하고자 한다. 처리�� multicore-it.com 이론 정의 2020. 6. 8.
리눅스 포트 확인 포트 열기 1. 현재 리눅스에서 열려있는 포트 확인 1.netstat -tnlp TCP 중에서(t), Listening상태[열린포트]인 애들만(l), 상세정보까지(p), 10진수 숫자로(n) 표기한다. [dklee@localhost ~]$ netstat -tnlp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN - tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN - tcp6 0 0 :::21 :::* LISTEN - tcp6 0 0 :::22 :::* LISTEN - tcp6.. 2020. 6. 2.
ES6 https://jsdev.kr/t/es6/2944 2020. 5. 25.
jquery 배열 object 삭제 ntfc.param.downList = []; ntfc.param.downList = $.grep(ntfc.param.downList, function (item) { return item.atchmnflSn.toString() !== atchDtaSn.toString(); }); ntfc.param.downList에 return 이 true인것만 남고 false인것은 제외된다. 2020. 5. 21.
이클립스 svn 커밋 시 target 안나오게 하기 이클립스 메뉴 -> window -> preferences -> team -> ignored resources add pattern 버튼 누르고 패턴 추가해주면 됨. .project .classpath .settings */target ==> 메이븐 사용시 나타나는 폴더. 프로젝트 셋팅에 따라서 target 폴더가 없을 수 있다. 2019. 7. 4.