|
最初由 mirrorqq 发布
[B]楼主,如果源环境主机hostprod和目标环境主机hostest的域名必须一样,这并不是完整的clone,实际上大多场合是需要从不同的主机名,不同的域名clone过来的,这样就要求你在clone前运行源机器上的一个脚本文件,当你将应用copy到目的机器后,再运行这个脚本,输入要更改的主机名和域名等信息,系统自动更改内部的这些信息,这样就可以在目的机器应用了 [/B]
变更URL 如下:
select application_id, profile_option_id, level_id, level_value, level_value_application_id, profile_option_value
from FND_PROFILE_OPTION_VALUES
where profile_option_id in
(
select a.profile_option_id
from FND_PROFILE_OPTION_VALUES a,
FND_PROFILE_OPTIONS b,
FND_PROFILE_OPTIONS_TL c
where a.profile_option_id = b.profile_option_id
and b.profile_option_name = c.profile_option_name
and c.language = 'US'
and (c.user_profile_option_name like '%Applic%'
or c.profile_option_name like '%AGENT%'
or c.profile_option_name like '%ICX%'
or c.profile_option_name like '%TWO_TASK%'
or c.profile_option_name like '%SITE%'
or a.profile_option_value like '%http%'
or a.profile_option_value like '%launch%'
or a.profile_option_value like '%taerpap%' )
)
for update
另外还要修改
$OA_HTML/bin/appsweb.cfg 中 serverName 变更
PROD->TEST |
|