3. 查看打好的补丁
1)使用Sql查询打好的补丁:
view plaincopy to clipboardprint?
SELECT * FROM ad_applied_patches app WHERE app.patch_name = '6677049';
select * from ad_bugs where bug_nuber='6677049';
--patch_name为安装的补丁名称,ad_applied_patches只保存安装应用后打上去的补丁,安装前的补丁保存在ad_bugs中
SELECT * FROM ad_bugs ab WHERE ab.bug_number = '8819747';
--bug_number为patch号,ad_bugs保存安装前的补丁保存在ad_bugs中,ad_bugs表中保存了patch修复的bug的记录
2)查看补丁是否已经装好
Form界面使用命令:
view plaincopy to clipboardprint?
strings -a $AU_TOP/forms/US/GLXFCRVL.fmb|grep '$Header'
或者登陆到Form界面查看Form的版本是否已经改变
OAF界面使用命令:
view plaincopy to clipboardprint?
1.进入class目录
$JAVA_TOP/oracle/oracle/apps/ce/forecast/cf/server
2.查看版本
strings -a ForecastAMImpl.class|grep '$Header'
登录到OAF界面,点击 About this Page ->Page 下查看JAVA程序包的版本号,同时可以查看在About this Page ->Patches下查看安装的补丁