すべてのサービスとパッチがOracleにインストールされていることを確認するにはどうすればよいですか?
を持っています Oracle 10.2.0.2.0
dbバージョンで、パッチをインストールします。また、すべてのサービスとパッチのリストを取得したいです。
ここに新しいパッチをチェックまたはインストールする方法に関する記事があります:
OPatchツールを検索するには、データベース環境変数を設定してから、このコマンドを発行します:
cd $Oracle_HOME/OPatch
> pwd
/Oracle/app/product/10.2.0/db_1/OPatch
データベースに適用されるすべてのパッチをリストするには、lsinventory
オプションを使用します:
[Oracle@DCG023 8828328]$ opatch lsinventory
Oracle Interim Patch Installer version 11.2.0.3.4
Copyright (c) 2012, Oracle Corporation. All rights reserved.
Oracle Home : /u00/product/11.2.0/dbhome_1
Central Inventory : /u00/oraInventory
from : /u00/product/11.2.0/dbhome_1/oraInst.loc
OPatch version : 11.2.0.3.4
OUI version : 11.2.0.1.0
Log file location : /u00/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch2013-11-13_13-55-22PM_1.log
Lsinventory Output file location : /u00/product/11.2.0/dbhome_1/cfgtoollogs/opatch/lsinv/lsinventory2013-11-13_13-55-22PM.txt
Installed Top-level Products (1):
Oracle Database 11g 11.2.0.1.0
There are 1 products installed in this Oracle Home.
Interim patches (1) :
Patch 8405205 : applied on Mon Aug 19 15:18:04 BRT 2013
Unique Patch ID: 11805160
Created on 23 Sep 2009, 02:41:32 hrs PST8PDT
Bugs fixed:
8405205
OPatch succeeded.
sqlを使用してパッチを一覧表示するには:
select * from registry$history;
元の投稿はOracle 10向けであると理解していますが、これはGoogleで見つけた他の人が参照するためのものです。
Oracle 12cでは、registry $ historyが空であることがわかりました。これは代わりに動作します:
select * from registry$sqlpatch;
「sys」が必要な場合があります。前:
select * from sys.registry$history;