728x90
Oracle 19c
https://www.oracle.com/database/technologies/oracle-database-software-downloads.html
sql developer
https://www.oracle.com/kr/tools/downloads/sqldev-v192-downloads.html
위 방식으로 데이터베이스 새로 만들기 system(관리자계정) / oracle19c 설치 시 생성한 비밀번호로 로그인
[계정 생성]
create user 계정이름 identified by 비밀번호;
create user admin identified by 1234;
[계정 권한 부여]
grant 부여할 권한명1, 부여할 권한명2, ... to 계정이름;
grant connect,resource to admin;
[새 데이터베이스 생성 및 새 계정으로 접속]
728x90
'SQL > Oracle' 카테고리의 다른 글
[Oracle] oracle함수 (0) | 2022.06.13 |
---|---|
[Oracle] group by(그룹), 집계 함수 count() (0) | 2022.06.13 |
[Oracle] 컬럼 별명 & 중복 값 제거 (0) | 2022.06.13 |
[Oracle] Oracle student 테이블 생성 (0) | 2022.06.12 |
[Oracle] Oracle의 데이터 타입, 제약 조건 (0) | 2022.06.12 |