250x250
반응형
Notice
Recent Posts
Recent Comments
전산쟁이의 기억노트
Oracle 몇가지 사용쿼리들 본문
728x90
반응형
SMALL
- 오라클 테이블 스페이스를 emp2로 설정해서 생성
SQL> create tablespace testdb datafile '/home/oracle/oradata/TSH1/testdb.dbf' size 500m;
- test_user으로 계정 생성하고 테이블 스페이스는 testdb1으로 설정
SQL> CREATE USER test_user IDENTIFIED BY userdata1 DEFAULT TABLESPACE testdb TEMPORARY TABLESPACE TEMP;
- 권한주기
SQL> GRANT connect, resource, create session,create table TO test_user;
- testdb에 테이블 생성
SQL> create table emp2( empno number, ename varchar2(20), deptno number);
- 사용자가 가지고 있는 테이블 확인
SQL> select table_name from user_tables; TABLE_NAME ------------------------------ EMP2
- 테이블 구조 확인
SQL> desc emp2 Name Null? Type ----------------------------------------- -------- ---------------------------- EMPNO NUMBER ENAME VARCHAR2(20) DEPTNO NUMBER
- 테이터 insert 해보기
SQL> insert into emp2 values(123,'test_user',456); SQL> select * from emp2; EMPNO ENAME DEPTNO ---------- -------------------- ---------- 123 test_user 456
- 데이터 업데이트 하기
SQL> update emp2 set ename='wow' where ename='ggg'; 1 row updated. SQL> select * from emp2; EMPNO ENAME DEPTNO ---------- -------------------- ---------- 123 test_user 456 123 wow 102
- 테이블 스페이스 확인
SQL> select tablespace_name,file_name from dba_data_files;
- 계정 패스워드 변경
SQL> show user; USER is "test_user" SQL> alter user iheart identified by pass2;
- 15분전 쿼리 했던 데이터 복구방법
INSERT INTO A SELECT * FROM A AS OF TIMESTAMP(SYSTIMESTAMP - INTERVAL '15' MINUTE);
- 데이터베이스명 확인
SQL> select name, db_unique_name from v$database; NAME DB_UNIQUE_NAME --------- ------------------------------ ORCL orcl
- SID 확인방법
SQL> select instance from v$thread; INSTANCE -------------------------------------------------------------------------------- orcl
출처 - http://igoni.kr/books/dbms/page/oracle
728x90
반응형
LIST
'oracledb' 카테고리의 다른 글
Oracle에서 사용자Lock풀기 (0) | 2022.08.02 |
---|---|
Oracle10g업데이트 후 에러 (0) | 2022.08.01 |
oracle 10g dbstart에러 조치방법 (0) | 2022.08.01 |
oracle 10g 아카이브 모드 설정 (0) | 2022.08.01 |
oracle 10g 실행시 failed to auto-start… vikrkuma_new/oracle 메시지 출력할때 (0) | 2022.08.01 |
Comments