RDBMS/Oracle

문자셋(character set) 확인

KSerin 2020. 12. 18. 09:50
728x90

SELECT NAME, value$
FROM sys.props$

WHERE NAME LIKE '%CHARACTERSET%' ;

--type   1의 charsetform -  1: varchar2, 2: nvarchar2
--type   2의 charsetform -  1: varchar   2: nchar varying
--type  96의 charsetform -  1: char      2: nchar
--type 112의 charsetform -  1: clob      2: nclob
select distinct(nls_charset_name(charsetid)) CHARACTERSET, type#, charsetform
from sys.col$

where charsetform in (1,2) and type# in (1,9,96,112)
order by type#, charsetform; 

728x90

'RDBMS > Oracle' 카테고리의 다른 글

Oracle DBA SQL  (0) 2021.01.28
아카이브 로그(Archive log) 관련 SQL  (0) 2021.01.14
Gather statistics about objects(통계정보 생성)  (0) 2020.12.18
OBJECT 조회  (0) 2020.12.17
sqlldr - Making datafile&load with ctl file  (0) 2020.12.17