일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- mssql database 삭제
- oracle sqlnet.ora
- SSMS
- supplemental log 활성화
- ora-28002: the password will expire within 7 days
- window에서 linux로 scp 하는 방법
- ora-39083 ora-00439
- oracle pdb
- ORA-00020
- oracle awr
- SQL Server
- oracle tde
- sqlnet.allowed_logon_version_server=8
- window scp
- oracle dba_profile password_life_time
- oracle SCN
- Oracle RAC
- MSSQL
- window pscp
- Oracle Database
- oracle 테스트 데이터
- oracle install
- oracle system lock
- oracle hugepage
- 오라클
- ora-28040: no matching authentication protocol
- sqlnet.allowed_logon_version_client=8
- oracle account_status expired
- oracle
- oracleasm
Archives
- Today
- Total
신문지한장
[Tech][Multitenant] 유저 생성시 C## 안붙이고 생성하는 방법 & 히든파라미터 조회 sql(파라미터 변경) 본문
Oracle/Tech
[Tech][Multitenant] 유저 생성시 C## 안붙이고 생성하는 방법 & 히든파라미터 조회 sql(파라미터 변경)
신문지한장 2024. 9. 3. 09:251. _oracle_script 히든 파라미터 조회
col name for a40
col current_value for a15
col default_value for a15
col default_t_f for a15
select
ksppinm "name",
ksppstvl "current_value",
b.ksppstdfl "default_value",
b.ksppstdf "default_t_f"
from x$ksppi a, x$ksppsv b
where 1=1
and a.indx=b.indx
and a.ksppinm like '_oracle_script';
-- default 값까지 확인
set lines 200 pages 1000
col desc for a70
col name for a40
col current_value for a15
col default_value for a15
col default_t_f for a15
select
ksppinm "name",
ksppdesc "desc",
ksppstvl "current_value",
b.ksppstdfl "default_value",
b.ksppstdf "default_t_f"
from x$ksppi a, x$ksppcv b
where 1=1
and a.indx=b.indx
AND SUBSTR(a.KSPPINM, 1, 1) = '_'
and a.ksppinm like '%_oracle_script%'
order by 1;
2. 파라미터 변경
alter session set "_oracle_script" =true;
'Oracle > Tech' 카테고리의 다른 글
[Tech] 성능관련 유용한 파라미터 (1) | 2024.09.13 |
---|---|
[Tech] Oracle 데이터베이스 구조 확인 딕셔너리뷰 (0) | 2024.09.13 |
[Tech][Multitenant] Oracle CDB&PDB add 및 open (0) | 2024.09.03 |
[Tech] oracle profile (0) | 2024.08.05 |
[Tech] oracle awr snapshot 주기확인 및 변경 (0) | 2024.08.05 |