(2008/10/18 12:49 작성) 출처 : http://www.file.net/process/domino.exe.html What is Domino.exe?The .exe extension on a filename indicates an executable file. Executable files may, in some cases, harm your computer. Therefore, please read below to decide for yourself whether the Domino.exe on your computer is a Trojan that you should remove, or whether it is a file belonging to the Windows operating s..
출처: http://blog.naver.com/dongojjang/90158385429 *about % (by date –help)%y : 연도의 끝자리 (00 ~99) %m : month (01 ~ 12) %d : day of month (날짜) %T : %H:%M:%S ( %H : Hour, %M : Minute, %S : Second) *Makefie sample##Makefile Sample#…PWD = $(shell pwd)DATE = $(shell date ’+%y%m%d_%T’)VER = 1.02 # Targets to buildSTATIC=libiw.aDYNAMIC=libiw.so.29PROGS= nxwifi all:: $(STATIC) $(DYNAMIC) $(PROGS)cp -f $(PW..
출처: http://dev.mysql.com/doc/refman/5.0/en/insert-on-duplicate.html13.2.5.3 INSERT ... ON DUPLICATE KEY UPDATE Syntax만일 ON DUPLICATE KEY UPDATE를 설정하고 INSERT를 수행하면 UNIQUE index나 PRIMARY KEY로 지정된 컬럼의 중복이 있을 시 UPDATE를 수행한다. 예를들어, UNIQUE로 선언된 a 컬럼이 1의 값을 가지고 있다면 다음의 두 문장은 동일한 명령을 수행한다:INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1; UPDATE table SET c=c+1 WHERE a=1; ON DUPLICA..
출처: http://blog.naver.com/websearch/70137947078 MySQL innoDB 에서 INSERT 하는 속도를 MyISAM 과 유사하게 변경하는 방법은 다음과 같다. * innodb_flush_log_at_trx_commit 설정값을 확인한다. mysql> show variables like 'innodb_flush_log_at_trx_commit';+--------------------------------+-------+| Variable_name | Value |+--------------------------------+-------+| innodb_flush_log_at_trx_commit | 1 | +--------------------------------+---..