윈도우 기준> 맥은 따로
오라클 데이터베이스 > 19c Oracle Database Express Edition
Developer Resource Center > Developer Tools > SQL Developer
Windows 64-bit with JDK 11 included<< 다운로드
사용할 드라이브에서 devolper 옮겨줄 폴더 만들기
압축 풀고 developer app 폴더에 옮기기
접속 테스트, 비밀번호 저장하고 저장.
환경설정 > 환경 > 인코딩 검색 후 UTF-8으로 변경
환경설정 > 데이터베이스 NLS 날짜 형식 YYYY/MM/DD HH24:MI:SS
환경설정 > 번호 검색> 행여백 > 행 번호 표시
새 접속 생성
C:\app\itwill\product\21c\dbhomeXE\rdbms\admin 에서 scott.sql 찾아서 위치 주소 복사
sql 워크스페이스에서 복사한 주소 넣고
@ C:\app\itwill\product\21c\dbhomeXE\rdbms\admin\scott.sql
ALTER SESSION SET "_ORACLE_SCRIPT"=true; //ctrl + enter
create user scott IDENTIFIED by tiger; //ctrl + enter
grant dba to scott; //ctrl + enter