본문 바로가기

소프트웨어/오라클

Oracle Database 에 한글처리 하는 방법

Oracle Database 의 입력필드에 한글을 넣었는데 깨질경우 처리방법입니다.

1. C:\>sqlplus /nolog
    SQL*Plus: Release 10.2.0.1.0 - Production on 목 8월 25 13:09:15 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

2. SQL> conn /as sysdba
  Connected.

3. SQL> update props$ set VALUE$='KO16MSWIN949' where name='NLS_CHARACTERSET';
   1 row updated.

4. SQL> commit;

5. shutdown immediate;

6. startup;