본문 바로가기

IT-Consultant

[FLEX] BlazeDS이용해서 RemoteObject를 사용해봅시다 http://mudchobo.tomeii.com/tt/214#comment2509 이글 참조... 더보기
month 달 전 일자 구하기 Calendar cal = Calendar.getInstance ( ); cal.add ( cal.MONTH, - month ); SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss"); return sdf.format( cal.getTime() ); 간단한건데 꽤나 헤멨다. 더보기
파워콤 케이블 모뎀 접속 정보 net&sys의 mng-2300 케이블모뎀 192.168.100.1 id : admin password : cableroot netgear cm232 케이블모뎀 192.168.100.1 id : MSO password : changeme mplus cbc300 케이블모뎀 192.168.100.1 id : 없음 password : cable or id : admin password : plustec 더보기
MySQL이 GROUP BY가 느린 이유 MySQL은 기본적으로 GROUP BY를 하면 해당 필드에 대해서 SORT를 한다. SELECT SORT1, COUNT(*) FROM TABLE1 GROUP BY SORT1 이런 쿼리를 한다면 쓸데 없이 정렬 작업 때문에 속도 저하가 발생한다. 따라서 이런 쿼리를 날린다면 끝에 ORDER BY NULL 을 붙이도록 한다. ORDER BY NULL을 하면 정렬작업을 하지 않고 COUNT만 하기 때문에 속도가 빠르다. 방금 40만건을 GROUP BY 해보니 10배 이상의 속도 차이를 보입니다. 참고 사이트 http://www.mysqlkorea.co.kr/sub.html?mcode=manual&scode=01&m_no=21460&cat1=7&cat2=217&cat3=238&lang=k 더보기
Everest 하드웨어 정보 보는 것 더보기
Simple XML Parsing with SAX and DOM XML has arrived. Configuration files, application file formats, even database access layers make use of XML-based documents. Fortunately, several high-quality implementations of the standard APIs for handling XML are available. Unfortunately, these APIs are large and therefore provide a formidable hurdle for the beginner. In this article, I would like to offer an accessible introduction to the t.. 더보기
돌고 도는 이클립스 프로젝트 여러개가 서로 연결된 상태에서 개발할때 에러가 발생할 경우 Circular dependencies를 Error에서 Warning으로 바꾸면 된다. 더보기
SAS Text miner 더보기
2010년 1월 4일 첫 출근 올해에는 xSpider 제품 완성하고, 형태소 분석기도 완성하고, 기술심사도 통과하자. 3개 목표. 더보기
Javascript Engine (Rhino) 관련 이야기 1. Java Scripting Programmer's Guide 현재 나한테 딱 필요한 기능이다. 단 JDK6 이상에서만 된다. 앞으로 JDK6이 일반화 되리라 본다. 아래 상세한 설명이 나온다. 당연이 JDK니깐 javax.script라고 구글에 치면 주르륵 관련 설명이 나온다. http://java.sun.com/javase/6/docs/technotes/guides/scripting/programmer_guide/index.html#package 2. Rhino를 사용하는 방법에 대해서 나와 있다. 검토해본 결과 현재 내가 필요한 내용은 아닌것 같다. 그러나 혹시 모르니 모아둔다. http://www.ibm.com/developerworks/kr/library/opendw/20081021/ 결론적.. 더보기