일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- String[]
- Oracle
- mysql
- 한국소프트웨어산업협회
- 아이폰키보드
- group by max
- 폐업자에 대한 업종등의 정보내역
- KOSA
- ajax async
- http https
- 첫주 및 마지막주 날짜 전체 포함
- remote ip
- mysql trigger
- String 배열
- jquery selectbox change
- 주소 좌표변환
- extundelete
- eclipse hotdeploy
- map api v3
- ajax 동기방식처리
- 접속ip
- checkbox 값처리
- 서브쿼리
- 2개 테이블
- multipart
- 컴퓨터 드라이버
- partition by
- ant path pattern
- update
- TM128
- Today
- Total
목록가벼운 배움 (176)
하은양 믿음군 효실맘 호홍홍집s
참조 : http://m.blog.daum.net/creazier/15309737참조 : http://mojosoeun.tistory.com/69참조 : http://gnujava.com/board/article_view.jsp?article_no=5098&board_no=3&table_cd=EPAR01&table_no=01암튼, jxl.jar 및 poi.jar 가 있는데...jxl은 엑셀 읽기가 좋고, poi는 엑셀저장에 좋단다.
참고 : http://blog.munilive.com/javascript-comma-uncomma/ //콤마찍기 function comma(str) { str = String(str); return str.replace(/(\d)(?=(?:\d{3})+(?!\d))/g, '$1,'); } //콤마풀기 function uncomma(str) { str = String(str); return str.replace(/[^\d]+/g, ''); } function inputNumberFormat(obj) { obj.value = comma(uncomma(obj.value)); } //
참조 : http://javafactory.tistory.com/347 ${fn:replace(info.text, enter, ' ') // 엔터처리 ${fn:replace(fn:replace(fn:escapeXml(info.content_txt), enter, ' ') , ' ', ' ')} // 엔터와 공백 처리
// 시설이미지 파일추가 버튼 클릭 참고 : http://stackoverflow.com/questions/1566257/jquery-validation-form-plugin jquery form plugin : http://malsup.com/jquery/form/ submit시에 validate 적용하기 예제 ...^^ $(document).ready(function(){ var v_frmAfter = $('#frmAfter'); var v_af_prc = $('#af_prc'); var v_btnAfterWrite = $('#btnAfterWrite'); v_btnAfterWrite.click(function(event){ if(!v_af_prc.val()) v_af_prc.val('afterWri..
grep "12/Nov/2009" access_log | awk '{print $1}' | sort -u | wc -l --> access_log 파일에서 '12/Nov/2009' 문자열이 들어있는 라인이 몇개인지 파악하되 IP가 중복되지 않도록 함 참고 : http://jangcool.tistory.com/entry/아파치-로그-유니크-IP-단위-접속자수-파악
전체 작업과정을 하나로 보자 1. Export expdp parfile=rest_exp_20151022.par; rest_exp_20151022.par 내용 : USERID=REST/GJRESTPWD DUMPFILE=REST_20151022_%U.DMP LOGFILE=REST_20151022.LOG SCHEMAS=REST 여기에 저장됨 : /oracle/app/oracle/admin/ORCL/dpdump/REST_20151022_01.DMP 2. dump 파일 이동 scp /oracle/app/oracle/admin/ORCL/dpdump/*.* root@xxx.xxx.xxx.xxx:/oracle/app/oracle/admin/ORCL/dpdump/ 복사파일 : chown oracle:dba * 적용 3...
http://fordev.tistory.com/23 TEST : 스키마를 Backup 한다면 expdp TEST/TESTPWD dumpfile=test.dmp schemas=TEST; 위와 같이 안될때는 expdp sys/manage dumpfile=test.dmp schemas=TEST; impdp TEST/TESTPWD dumpfile=test.dmp schemas=TEST; 위와 같이 안될때는 impdp sys/mgr dumpfile=test.dmp schemas=TEST; * parfile 이용시 # expdp parfile=test_exp.par; test_exp.par 내용 : USERID=TEST/TESTPWD DIRECTORY=data_pump DUMPFILE=TEST_%U.DMP LOGF..
참조 : http://webdir.tistory.com/170특정IP에 대해 모든 것 허용처리iptables -A INPUT -p ALL -s 192.168.0.2 -j ACCEPT
참조 : http://luckyyowu.tistory.com/124 /usr/local/src/tomcat 에서 소스파일 설치# wget http://mirror.nexcess.net/apache/tomcat/tomcat-7/v7.0.52/bin/apache-tomcat-7.0.52.tar.gz# tar -zxvf apache-tomcat-7.0.64.tar.gz # mkdir /usr/local/server# mv apache-tomcat-7.0.64 /usr/local/server# cd /usr/local/server# ln -s apache-tomcat-7.0.64 tomcat **** vim 에디터를 열어 JDK를 설치하고 /etc/profile에 추가했던 내용을 수정합니다.# vi /etc/p..
// 년도선택시 대상기수목록 불러오기... var v_selYear = $("#yyyy"); v_selYear.change(function(){ $.ajax({ url : '/AjxAgent/ajxFunListYYYY.jsp', type : 'post', data : {yyyy:$(this).val()}, dataType : 'json', success : function(data){ // 통신 성공시 실행.... $('#fun_id option').remove(); $('#fun_id').append("대상선택"); $.each(data,function(){ var v_fun_id = this["fun_id"]; var v_title = this["title"]; $('#fun_id').append("..