목록oracle (14)
Gentle Breeze
- Primary Key (PK) 한 table data (row)를 유일하게 식별해주는 column 혹은 column 의 조합 - PK 조건 ① unique ② not null ③ 1개 / table - Foreign Key (FK) 다른 혹은 같은 table 의 PK column 값을 참조하는 column - FK 조건 ① Duplicable ② Nullable ③ Many / table
- Null 의 가능성 ㅡ ① unknown null |_ ② nothing - Null 의 연산 법칙 ① 산술연산 - 결과를 null 化 ② 논리연산 - TNF 관계도 참고 ③ 비교연산 - 결과를 null 化 null 은 일반적으로 false 처리
conn system/manager; create user scott identified by tiger default tablespace users temporary tablespace temp; grant connect, resource to scott; grant create view to scott; conn scott/tiger; ALTER SESSION SET NLS_LANGUAGE=American; SET TERMOUT ON PROMPT Building demonstration tables. Please wait. SET TERMOUT OFF DROP TABLE EMP; DROP TABLE DEPT; DROP TABLE BONUS; DROP TABLE SALGRADE; DROP TABLE D..
=== Oracle 사용자 생성 ==== create user ID identified by PWD default tablespace users temporary tablespace temp; === 비번 변경=== alter user ID identified by PWD; ===권한 부여=== grant connect,resource to ID; grant create view to ID; ===권한 뺏기=== revoke connect from ID; ===사용자 삭제=== drop user ID cascade; === 계정 export, import 할때 === User export = > Uesr create, grant => User import dba 접속 /as sysdba dba권한 주기 ..