OS환경 : Oracle Linux 7.6 (64bit)
DB 환경 : Oracle Database 19.3.0.0
방법 : 오라클 19c 버전 및 에디션 확인 방법
오라클에서 버전 및 에디션 확인하는 방법을 설명함
버전 및 에디션 확인(엔터프라이즈 에디션 결과)
v$version 뷰 확인
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$ sqlplus / as sysdba
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
BANNER_FULL
----------------------------------------------------------------------------------------------------------------------------------------------------------------
BANNER_LEGACY CON_ID
-------------------------------------------------------------------------------- ----------
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production 0
|
Enterprise Edition 이고 버전은 19.3.0.0.0(19.3)임
또는 product_component_version 뷰 확인
1
2
3
4
5
6
7
8
9
10
11
|
SQL>
set lines 200
col product for a50
col version for a15
col version_full for a15
col status for a15
select * from product_component_version;
PRODUCT VERSION VERSION_FULL STATUS
-------------------------------------------------- --------------- --------------- ---------------
Oracle Database 19c Enterprise Edition 19.0.0.0.0 19.3.0.0.0 Production
|
PRODUCT에 Editin이 나와있고(Enterprise Edition), VERSION_FULL 컬럼값이 db 버전(19.3.0.0.0)임
또는 sqlplus 를 sysdba 권한으로 접속만 해도 에디션은 확인할 수 있음
1
2
3
4
5
6
7
8
9
10
11
|
$ sqlplus / as sysdba
SQL*Plus: Release 19.0.0.0.0 - Production on Wed Mar 27 09:31:02 2024
Version 19.3.0.0.0
Copyright (c) 1982, 2019, Oracle. All rights reserved.
Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production <<<
Version 19.3.0.0.0
|
버전 및 에디션 확인이 가능함(하지만 여기서 보이는 버전은 sqlplus 프로그램의 버전임)
sqlplus 로그인 없이 실행만 하면 버전만 확인됨
1
2
3
4
5
6
7
8
|
$ sqlplus
SQL*Plus: Release 19.0.0.0.0 - Production on Wed Mar 27 09:40:12 2024
Version 19.3.0.0.0
Copyright (c) 1982, 2021, Oracle. All rights reserved.
Enter user-name:
|
(여기서 보이는 버전은 sqlplus 프로그램의 버전임)
버전 및 에디션 확인(스탠다드 에디션 결과)
v$version 뷰 확인
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$ sqlplus / as sysdba
SQL> select * from v$version;
BANNER
--------------------------------------------------------------------------------
BANNER_FULL
----------------------------------------------------------------------------------------------------------------------------------------------------------------
BANNER_LEGACY CON_ID
-------------------------------------------------------------------------------- ----------
Oracle Database 19c Standard Edition 2 Release 19.0.0.0.0 - Production
Oracle Database 19c Standard Edition 2 Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
Oracle Database 19c Standard Edition 2 Release 19.0.0.0.0 - Production 0
|
Standard Edition 2 이고 버전은 19.3.0.0.0(19.3)임
또는 product_component_version 뷰 확인
1
2
3
4
5
6
7
8
9
10
11
|
SQL>
set lines 200
col product for a50
col version for a15
col version_full for a15
col status for a15
select * from product_component_version;
PRODUCT VERSION VERSION_FULL STATUS
-------------------------------------------------- --------------- --------------- ---------------
Oracle Database 19c Standard Edition 2 19.0.0.0.0 19.3.0.0.0 Production
|
PRODUCT에 Editin이 나와있고(Standard Edition 2), VERSION_FULL 컬럼값이 db 버전(19.3.0.0.0)임
또는 sqlplus 를 sysdba 권한으로 접속만 해도 에디션은 확인할 수 있음
1
2
3
4
5
6
7
8
9
10
11
|
$ sqlplus / as sysdba
SQL*Plus: Release 19.0.0.0.0 - Production on Wed Mar 27 18:48:54 2024
Version 19.3.0.0.0
Copyright (c) 1982, 2022, Oracle. All rights reserved.
Connected to:
Oracle Database 19c Standard Edition 2 Release 19.0.0.0.0 - Production <<<
Version 19.3.0.0.0
|
버전 및 에디션 확인이 가능함(하지만 여기서 보이는 버전은 sqlplus 프로그램의 버전임)
sqlplus 로그인 없이 실행만 하면 버전만 확인됨
1
2
3
4
5
6
7
8
|
$ sqlplus
SQL*Plus: Release 19.0.0.0.0 - Production on Wed Mar 27 18:49:17 2024
Version 19.3.0.0.0
Copyright (c) 1982, 2022, Oracle. All rights reserved.
Enter user-name:
|
(여기서 보이는 버전은 sqlplus 프로그램의 버전임)
참조 :
오라클 19c 스탠다드 에디션, 엔터프라이즈 에디션 기능 차이 테스트 ( https://positivemh.tistory.com/1050 )
'ORACLE > Sql' 카테고리의 다른 글
DBMS_SPACE.UNUSED_SPACE 한번에 여러 세그먼트 조회 (0) | 2024.04.10 |
---|---|
오라클 19c 파티션 테이블의 파티션별 row count 확인 (0) | 2024.04.01 |
오라클 19c redo log 크기 자동 변경 스크립트 (0) | 2024.03.26 |
오라클 19c 힌트 목록 확인 쿼리 (0) | 2024.02.05 |
오라클 19c 테스트 시 사용하는 imsi 유저 생성 쿼리 (0) | 2024.02.05 |