String name = new String(request.getParameter("name").getBytes("iso-8859-1"),       CHARSET_FOR_URL_ENCODING);


String name = new String(request.getParameter("name").getBytes("8859_1"),        "EUC-KR");


http://zerof-six.tistory.com/48


ipconfig /release

ipconfig /renew

ipconfig /flushdns

ipconfig /displaydns

(http://compnetworking.about.com/od/workingwithipaddresses/a/ipconfig.htm)



https://docs.oracle.com/cd/B10501_01/server.920/a90842/ch13.htm


http://www.cs.rpi.edu/~musser/dsc/idl/idl-overview_13.html


request.getParameterMap().put(parameterName, new String[] {parameterValue});


(http://stackoverflow.com/questions/892537/how-to-set-a-parameter-in-a-httpservletrequest

)


http://egloos.zum.com/romanticDM/v/2508766


corba idl2java

카테고리 없음 2015. 9. 30. 13:34

http://docs.oracle.com/cd/E13203_01/tuxedo/tux81/pdf/idl2java.pdf



http://www.thegeekstuff.com/2009/09/multitail-to-view-tail-f-output-of-multiple-log-files-in-one-terminal/

$ vi multi-tail.sh
#!/bin/sh

# When this exits, exit all back ground process also.
trap 'kill $(jobs -p)' EXIT

# iterate through the each given file names,
for file in "$@"
do
	# show tails of each in background.
	tail -f $file &
done

# wait .. until CTRL+C
wait



http://razorsql.com/articles/oracle_compile_errors.html


select * from SYS.USER_ERRORS where NAME = 'RAISE_SALARY' and type = 'PROCEDURE'


SQL > @1.sql