dbTalk Databases Forums  

clean install of oracle apps (ebs) 11i (11.5.10.2)

comp.databases.oracle.misc comp.databases.oracle.misc


Discuss clean install of oracle apps (ebs) 11i (11.5.10.2) in the comp.databases.oracle.misc forum.



Reply
 
Thread Tools Display Modes
  #21  
Old   
Shakespeare
 
Posts: n/a

Default Re: clean install of oracle apps (ebs) 11i (11.5.10.2) - 03-15-2008 , 01:11 PM







"Niall Litchfield" <niall.litchfield (AT) gmail (DOT) com> schreef in bericht
news:ecaaf381-8189-42e7-b13c-472bd18709f6 (AT) s8g2000prg (DOT) googlegroups.com...
On Mar 12, 3:31 am, batman <uspen... (AT) gmail (DOT) com> wrote:
Quote:
we are doing a clean install of 11.5.10.2 on a win 2003 server.
it is a a multi-tier installation with a single DB node and a single
apps/etc node.
all pre-reqs check out ok and the installlation goes smoothly and all
post install checks are ok too. postinstall, however, we have gotten
mixed opinions about installing patches. when we look into one patch
it asks for a prereq of a different one and the cycle seems to go on
forever. the only modules we need is HR and financials. the install
is
a fresh download that only about 3 weeks old. does anyboy have a list
of specific patches (including pre-reqs), if any, we need to download
to be up to date and stable. we are primarilly a microsoft shop and
definetly a bit spoiled with the single click updates to all our
microsoft software without any user interaction.
Welcome to the wonderful world of apps, and ERP in general.

We use the script below to check whether pre-reqs are applied, but yes
it isn't for nothing that there are courses on applying patches for
apps - and that other ERP makers release patches daily as well.

set verify off
ACCEPT bug_no PROMPT 'Enter Bug Number: '
select
'YES on '||to_char(CREATION_DATE,'dd-Mon-yyyy') applied
from
ad_bugs
where
bug_number = '&bug_no'
and exists (
select
null
from
ad_bugs
where
bug_number = '&bug_no')
union all
select
'NO' applied
from
dual
where
not exists (
select
null
from
ad_bugs
where
bug_number = '&bug_no');

regards

Niall


Quote:
Nial,

maybe I'm overlooking something, but what is the difference between

select
'YES on '||to_char(CREATION_DATE,'dd-Mon-yyyy') applied
from
ad_bugs
where
bug_number = '&bug_no'
and exists (
select
null
from
ad_bugs
where
bug_number = '&bug_no')

and

select
'YES on '||to_char(CREATION_DATE,'dd-Mon-yyyy') applied
from
ad_bugs
where
bug_number = '&bug_no'

?

Don't have ad_bugs here to test this....

Shakespeare




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.