본문 바로가기

wif LiNoUz/Oracle,Sql

오라클 캐릭터셋 짜증

http://cafe.naver.com/sqlmvp/303


캐릭터셋때문에 짜증나 죽겄네 !




select distinct(nls_charset_name(charsetid)) CHARACTERSET,
decode(type#, 1, decode(charsetform, 1, 'VARCHAR2', 2, 'NVARCHAR2','UNKOWN'),
9, decode(charsetform, 1, 'VARCHAR', 2, 'NCHAR VARYING', 'UNKOWN'),
96, decode(charsetform, 1, 'CHAR', 2, 'NCHAR', 'UNKOWN'),
112, decode(charsetform, 1, 'CLOB', 2, 'NCLOB', 'UNKOWN')) TYPES_USED_IN
from sys.col$ where charsetform in (1,2) and type# in (1, 9, 96, 112)

order by types_used_in;

'wif LiNoUz > Oracle,Sql' 카테고리의 다른 글

sql ftp handling and perfmon command  (0) 2014.04.29
오라클에서 is_number, is_date 함수 사용하기  (0) 2014.04.21
aaaaaaaa  (0) 2013.03.20
시간계산 쿼리  (0) 2013.03.18
install oracle 11g on suse11 sp1  (0) 2013.03.07