Oracle: -- Convert the current date and time to string (year-month-day) SELECT TO_CHAR(SYSDATE, 'YYYY-MM-DD') FROM dual; # 2013-02-27MySQL: -- Convert the current date and time to string (year-month-day) SELECT DATE_FORMAT(SYSDATE(), '%Y-%m-%d'); # 2013-02-27 TO_CHAR and DATE_FORMAT Format SpecifiersWhen you convert Oracle TO_CHAR function to DATE_FORMAT function in MySQL, you have to map the fo..
Finland - Taimou
Q. 리눅스에 TTF(True Type Font) 를 설치하고 싶다. 1. /usr/share/fonts/ 하위에 폰트명 또는 폰트를 구분할 수 있는 이름으로 디렉토리 생성2. 만들어진 디렉토리에 ftp를 이용하여 업로드를 하거나 wget을 이용하여 TTF 다운로드3. font.scale 생성(mkfontscale)4. font.dir 생성(mkfontdir)5. 폰트 캐시 갱신(fc-cache -fv) ex) 리눅스장비에 나눔고딕 폰트 설치 1234567[root@kimboya /]# cd /usr/share/fonts [root@kimboya fonts]# mkdir nanum [root@kimboya fonts]# cd nanum/[root@kimboya nanum]# wget -O nanumGot..