Já vieram me questionar como localizamos de uma forma fácil se existe um patch aplicado no E-Business Suite, bem segue abaixo as duas tabelas que precisamos analisar e verificar através do numero do patch para verificar se o mesmo está aplicado no ambiente ou não.
Lembrando que devemos analisar as duas tabelas abaixo para verificação da aplicação de um patch.
— AD_BUGS
select * from ad_bugs
where bug_number in (‘NUMERO DO PATCH’)
— AD_APPLIED_PATCHES
select * from AD_APPLIED_PATCHES
where applied_patch_id in (‘NUMERO DO PATCH’)
Caso você queira colocar mais de uma patch para analise é somente necessário colocar “,” após cada patch.
Ex: where applied_patch_id in (‘xxxx,yyyy,zzzz ‘)
Conclusões
Bem espero ter auxiliado com esta dica a todos vocês.
Valeu até mais !!!
André
I have already been asked how easy it is to find out if there is a patch applied in the E-Business Suite, well below the two tables that we need to analyze and check through the patch number to check if it is applied in the environment or not.
Remember that we must analyze the two tables below to verify the application of a patch.
— AD_BUGS
select * from ad_bugs
where bug_number in (‘NUMBER OF PATCH’)
— AD_APPLIED_PATCHES
select * from AD_APPLIED_PATCHES
where applied_patch_id in (‘NUMBER OF PATCH’)
If you want to put more than one patch for analysis it is only necessary to put “,” after each patch.
Ex: where applied_patch_id in (‘xxxx,yyyy,zzzz ‘)
Conclusions
Well I hope to have helped with this tip to all of you.
Thanks so much !!
André