*접속하기
sqlplus / nolog // sqlplus 로그인 없이 접속
conn sys as sysdba // 시스템 관리자로 접속
*User 생성
create user chaeng identified by 1234;
grant connect, resource, dba to chaeng;
conn chaeng / 1234
*sql 파일 불러오기
@C:\USER\89112\java\DB\oracleExam2.sql //앞에 @를 넣어주고 경로를 설정
*계정 unlock
conn /as sysdba
alter user hr identified by hr account unlock;
conn hr/hr
select * from tab;
*scott 계정 불러오기
conn system/1234
@C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql
alter user scott identified by tiger;
conn scott/tiger
select * from tab;
*테이블 목록 불러오기
select * from tab;
*각 테이블 구조 불러오기
DESC 테이블명;
'Database' 카테고리의 다른 글
[Oracle] SELECT문 , WHERE절, AND/OR/IN 연산자 (0) | 2020.08.08 |
---|---|
[Oracle] SELECT 질의문, ORDER BY절 (0) | 2020.08.07 |
[Oracle] Database란? (0) | 2020.08.06 |
[MySQL] JOIN문 정리 (0) | 2020.05.13 |
[MySQL] SELECT : 집계함수, GROUP BY절과 HAVING 절 (0) | 2020.05.12 |