Notice
Recent Posts
Recent Comments
Link
목록SQL (2)
공학박사 권경안
SQL MERGE 명령어
MERGE 를 사용해 보았는가? 준비물 : Table !!! @ Table A create table table_a ( id number ); insert into table_a select rownum from all_tables where rownum
Programming
2010. 5. 27. 16:30
ORACLE DUMP()
Oracle Dump() 함수를 통해 해당데이터의 타입 및 CharacterSet을 확인할 수 있다. (정확하게 Metadata 를 제공한다.) SELECT DUMP('ABC', 1016) FROM DUAL; Typ=96 Len=3 CharacterSet=AL32UTF8: 41,42,43 Typ=96 Len=3 CharacterSet=KO16KSC5601: 41,42,43Typ=96 Len=3 CharacterSet=KO16KSC5601: 65,66,67 (1010 으로 했을때 10진수로 표현) 다국어 지원에 프로젝트에서 정확하게 CharacterSet 이 확인시유용함! The argument return_fmt specifies the format of the return value and can ha..
Programming/DB
2008. 10. 24. 13:41