Sql Oracle

Oracle Sql 다운받고 초기 설정하기 나만 알아보는 메모!

지댕댕 2023. 4. 8. 23:16
728x90

오라클 - 오라클데이터베이스19 다운 ****Oracle Database Express Edition Window x64****

SQL Developers 다운

****Developer Tools****

Windows 64-bit with JDK 11 included

OracleXE setup - DataBase PW설정

Mac = Oracle docer(가상머신먼저) 다운

명령 프롬프트 >> sqlplus / as sysdba

C/d에 Apps폴더 만들고

접속부분에 + 클릭 name = system

user name SYSTEM

PW oracle

test success →저장

인코딩 UTF-8로 변경

데이터베이스 NLS 날짜형식 YYYY/MM/DD HH24:MI:SS 변경

번호(검색) 행번호표시 체크

다운로드 파일에서 dbhomeXE > rdbms >admin > scott.sql

(경로복사) @띄우고 붙여넣기

@ C:\app\ITWILL\product\21c\dbhomeXE\rdbms\admin\scott.sql

ALTER SESSION SET "_ORACLE_SCRIPT" = true;

create user scott identified by tiger;

grant dba to scott;

select 문장을 쿼리라고함

728x90