반응형




SELECT * FROM sys.props$ where name='NLS_CHARACTERSET';


SELECT * FROM sys.props$ where name='NLS_NCHAR_CHARACTERSET';


SELECT * FROM sys.props$ where name='NLS_LANGUAGE';


SELECT * FROM sys.props$ where name like '%CHARACTERSET%';







update sys.props$ set value$='UTF8' where name='NLS_CHARACTERSET';


update sys.props$ set value$='UTF8' where name='NLS_NCHAR_CHARACTERSET';


update sys.props$ set value$='KOREAN_KOREA.UTF8' where name='NLS_LANGUAGE';




데이타베이스의  CHARACTER SET은 데이타 딕셔너리 테이블인 sys.props$에

 들어 있다



SQL>desc sys.props$



SQL>column c1 format a30 

SQL>select name c1, value$ c1 from sys.props$;







출처  : https://keichee.tistory.com/65


출처 : http://jehna.tistory.com/36



반응형

'Oracle' 카테고리의 다른 글

오라클 월 처음&마지막 날짜 구하기  (0) 2019.04.25
해당 날짜의 일요일 구하기  (0) 2019.04.02
Oracle 테이블 컬럼 추가  (0) 2018.12.27
날짜 기간 조회  (0) 2018.12.27
오라클 랜덤으로 select 하기  (0) 2018.12.18

+ Recent posts