일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- oracle awr
- oracle supplemental
- ORA-00020
- oracle install
- oracle
- oracle 테스트 데이터
- Oracle RAC
- oracle SCN
- SSMS
- oracleasm
- SQL Server
- ora-00439: feature not enabled: partitioning
- sql user 생성
- MSSQL
- oracle tde
- partition_options=merge
- supplemental log 활성화
- mssql database 삭제
- ora-39083 ora-00439
- ora-28002: the password will expire within 7 days
- 오라클
- oracle pdb
- oracle account_status expired
- oracle system lock
- create role
- oracle role 삭제
- oracle 파티션 datapump
- oracle dba_profile password_life_time
- oracle datapump
- Oracle Database
- Today
- Total
신문지한장
OS : CentOS 7.9 DB(AS-IS) : Oracle Database 19c(19.23.0) - EE DB(TO-BE) : Oracle Database 19c(19.23.0) - SE2 1. 파티션 현황 확인 ( AS-IS )SQL> col OWNER for a30select OWNER, OBJECT_TYPE, COUNT(*) from dba_objects where owner='TESTUSER'group by owner, object_typeorder by owner;OWNER OBJECT_TYPE COUNT(*)------------------------------ ----------------------- --------..
OS : CentOS 7.9 DB : Oracle Database 19c(19.23.0) 1. connect, resource 권한 부여SQL> grant connect, resource to testuser; * 12c 부터 적용되는 quotaSQL> alter user testuser quota unlimited on USERS;SQL> grant unlimited tablespace to testuser; 2. connect, resource 권한 회수SQL> revoke connect,resource from testuser; 3. 사용자 권한(role) 확인SQL> select * from dba_sys_privs where grantee='testuser'; 4. 어떤 사용자가 어떤 Role ..
OS : CentOS 7.9 DB : Oracle Database 19c(19.23.0) 1. user 계정 생성SQL> create user testuser identified by 1234default tablespace testtbs // default tablespace 지정하는 부분temporary tablespace temp // temporary tablespace 지정하는 부분quota unlimited on testtbs // 할당량 지정 : 무제한quota 0m on system; // system tablespace 사용 못하게 지정 2. user default tablespace, temporary_tablespace 정보 확인SQL> select username,account_st..
OS : CentOS 7.9 DB : Oracle Database 19c(19.23.0) 1. 파티션 테이블 생성SQL>create table ptable(col1 varchar2(8),col2 number)tablespace userspartition by range (col1)(partition p202101 values less than ('20210200'),partition p202102 values less than ('20210300'),partition p202103 values less than ('20210400'),partition p202104 values less than ('20210500'),partition p202105 values less than ('20210600'),..
OS : CentOS7.9 (Maipo) DB : Oracle Database 19c (19.23.0) RAC 1. 현재 SCN 확인SQL> SELECT Checkpoint_change# from v$database;CHECKPOINT_CHANGE#------------------ 6404393 2. SCN으로 아카이브 파일 정보 확인하기 (RAC로 thread 확인 후 first_change# 확인)set line 200set pages 1000select name,SEQUENCE#, TO_CHAR(COMPLETION_TIME,'YYYY/MM/DD HH24:MI:SS'), FIRST_CHANGE#, NEXT_CHANGE# from V$ARCHIVED_LOG+RECO/ORCLEJ/ARC..