admin 发表于 2018-2-12 10:17:43

Teamcenter11.2 升级到 Teamcenter 11.4 图文教程

Teamcenter11.2 升级到 Teamcenter 11.4 图文教程
视频教程请参考plmhome.ke.qq.com

===Clearlocks======
clearlocks -assert_all_dead -u=infodba -p=infodba -g=dba
clearlocks -verbose


11.4 的升级比较特殊,特殊的两部如下:

REM === Migrate trace links =====

req_migrate_bomview_tracelinks -u=infodba -p=infodba -g=dba


====DB =======
=====backup====


REM ==Estimate tablespace requirements for update====
Oracle databases:
1. Back up existing Teamcenter data.
2. Determine the tables affected by the update to Teamcenter 11.4.
a. Enter the following SQL command:

SELECT ptname FROM PPOM_CLASS WHERE BITAND(pproperties, 8192) <> 0
UNION
SELECT ptname FROM PPOM_CLASS WHERE BITAND(pproperties, 32768) <> 0;

b. To the resulting list of tables, add the PIMANEXPORTRECORD and PPOM_STUB
tables, which are also affected by the update process.

Determine the amount of space consumed by each affected table.
For each table identified in step 2 (including PIMANEXPORTRECORD and PPOM_STUB),

enter the following SQL command:
WITH cte1
AS (SELECT table_name
FROM user_tables
WHERE table_name = 'TABLE-NAME'),
cte2
AS (SELECT SUM(blocks) * 8 / 1024 MB
FROM dba_extents,
cte1
WHERE owner = (SELECT SYS_CONTEXT('userenv', 'current_schema')
FROM dual)
AND segment_name = cte1.table_name)
SELECT ROUND(SUM(mb), 0) || ' MB' AS ESTIMATED_SPACE
FROM cte2;

Replace TABLE-NAME with the name of the given table.



REM ==unzip install.zip ======

TC_ROOT\install\install\unzip -o install.zip



REM ===Install patches on a Teamcenter server====

TEM--> updates manager

REM === Update kit location : product-level_number_platform.zip// Tc11.4_wntx64.zip

After the server is successfully patched, you must manually update your TC_DATA directories.
a. Create backups of your current TC_DATA directories.
b. Expand the platform\tc\data.zip file from the temporary location you created in step 1.
c. Copy the expanded contents of the data.zip file to your TC_DATA directories, overwriting
existing files.
d. Copy the tc_profilevars.bat file from the backup to the TC_DATA directory.






========Patch the rich client using TEM
========Patch the rich client using the Over-the-Web Installer


a. Click Reinstall Solutions.
b. In the Reinstall Solution dialog box, click
OK.1
c. In the Confirm dialog box, click Yes.
d. In the Modify Required Context
Parameters dialog box, click OK to begin
patching.
e. After the patch is installed, click OK to
close the Progress dialog box.
9. In the Modify Web Application dialog box, click OK.
10. Exit the Web Application Manager.
11. Copy the otwweb directory from your WEB_ROOT\staging-location\webapp_root directory
to your web server.
12. Restart the distribution server.


=====Patch Lifecycle Visualization====



===Patch the web tier======





页: [1]
查看完整版本: Teamcenter11.2 升级到 Teamcenter 11.4 图文教程