로컬 환경에 오라클(oracle database) 설치 후 초기화 작업 하기

By | 6월 2, 2016

※ 오라클 DB 설치 직후 초기화

  • oracle 관리자 로그인
    • sqlplus sys as sysdba => 이후 [설치시 비번] 입력
  •  oracle tablespace 생성
    • create tablespace [테이블스페이스명] datafile 'C:\oracle\bruce.dbf' SIZE 300M;
  • oracle user 생성
    • create user [아이디] identified by [비번] default tablespace [테이블스페이스명] temporary tablespace temp;
  • oracle user에 권한 주기
    • grant connect, resource, dba TO [아이디];
  • 생성한 user로 oracle에 접속하기
    • sqlplus [아이디] / [비번]

 

※ 오라클 캐릭터셋 변경 (UTF-8 => EUC-KR)

  • sys로 들어가서
    • update sys.props$ set value$='KO16KSC5601' where name = 'NLS_CHARACTERSET';
    • updte sys.props$ set value$='KO16KSC5601' where name='NLS_NCHAR_CHARACTERSET';
    • update sys.props$ set value$='KOREAN_KOREA.KO16KSC5601' where name = 'NLS_LANGUAGE'

 

 

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments