일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sql user 생성
- oracle
- ora-00439: feature not enabled: partitioning
- oracle pdb
- MSSQL
- partition_options=merge
- SQL Server
- oracle 테스트 데이터
- mssql database 삭제
- SSMS
- 오라클
- ora-28002: the password will expire within 7 days
- oracle awr
- oracle install
- ora-39083 ora-00439
- oracle role 삭제
- oracle SCN
- ORA-00020
- oracle account_status expired
- oracle datapump
- oracle dba_profile password_life_time
- oracle tde
- oracle 파티션 datapump
- Oracle Database
- oracle supplemental
- Oracle RAC
- supplemental log 활성화
- oracle system lock
- oracleasm
- create role
Archives
- Today
- Total
신문지한장
[SQL] oracle user 생성 및 삭제
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..
Oracle/sql&script
2024. 12. 2. 16:45