본문 바로가기

RESTful 웹 서비스 관련 자료 http://calmglow.egloos.com/4116238 http://www.iamcorean.net/22 http://blog.naver.com/PostView.nhn?blogId=kilver0&logNo=100053180753&redirect=Dlog&widgetTypeCall=true http://www.ibm.com/developerworks/kr/library/tutorial/j-rest/index.html#N1011E 더보기
char와 varchar 차이 char와 varchar 타입의 차이점.char와 varchar의 차이는 저장 방식의 차이에서 옵니다. 예를 들어 char(10)에 'ABC'를 기록한다고 한다면, 실제 데이터는 알파벳 3문자 이므로 3바이트의 크기이지만 char(10), 즉 고정길이 문자열 10자리로 선언했기 때문에 10 바이트의 크기를 가지고 기록되게 됩니다. 좀더 크게 볼까요? 'ABC' 3바이트 길이의 문자를 char(100)에 기록하게 되면 빈 97바이트를 포함하여 100바이트를 차지하게 됩니다. 괜히 저장 공간의 낭비를 가져오죠?하지만 varchar(100)에 'ABC' 3바이트의 문자를 기록한다면 3바이트의 길이만 사용하게 되고 97 바이트는 사용되지 않습니다. 더 예를 든다면 varchar(100)에 'A' 를 기록하면 1.. 더보기
Disable Error Dialog in Windows Server 2008 / Vista This is something i found on the internet.. used to happen to me.. but i finally fixed it.. just wanted it to share it with you When the game crashes, the Program.exe process is still running in background because of the error popup that says “Program.exe has stopped working. Windows can check online for a solution to the problem.” If you disable Error Reporting, you will still get a similar err.. 더보기