收藏 分销(赏)

oracle-10g-单实例-升级方案文档.docx

上传人:二*** 文档编号:4745503 上传时间:2024-10-11 格式:DOCX 页数:16 大小:362KB 下载积分:5 金币
下载 相关 举报
oracle-10g-单实例-升级方案文档.docx_第1页
第1页 / 共16页
本文档共16页,全文阅读请下载到手机保存,查看更方便
资源描述
WINXP 32bit从10.2.0.1升级到10.2.0.4〔单实例〕 1、安装前的工作 1.1、下载升级包 并作一个HASH认证,确保其正确下载 大小: 1034621834 字节 修改时间: 2021年11月10日, 11:56:50 MD5: AF8818947E1903D008973B9F7CF3DF5B SHA1: 97EDE71B760438411022B57A60A897E5911EC8BA CRC32: BD7783A9 1.2 检查系统状态 检查dba_registry 查看oracle组件状态 Column comp_name format a40 Column version format a12 Column status format a6 Select comp_name, version, status from sys.dba_registry; COMP_NAME ---------------------------------------------------- VERSION STATUS ------------------------------ --------------------- Oracle Database Catalog Views 10.2.0.1.0 VALID Oracle Database Packages and Types 10.2.0.1.0 VALID Oracle Workspace Manager 10.2.0.1.0 VALID JServer JAVA Virtual Machine 10.2.0.1.0 VALID Oracle XDK 10.2.0.1.0 VALID Oracle Database Java Packages 10.2.0.1.0 VALID Oracle Expression Filter 10.2.0.1.0 VALID Oracle Data Mining 10.2.0.1.0 VALID Oracle Text 10.2.0.1.0 VALID Oracle XML Database 10.2.0.1.0 VALID Oracle Rules Manager 10.2.0.1.0 VALID Oracle interMedia 10.2.0.1.0 VALID OLAP Analytic Workspace 10.2.0.1.0 VALID Oracle OLAP API 10.2.0.1.0 VALID OLAP Catalog 10.2.0.1.0 VALID Spatial 10.2.0.1.0 VALID Oracle Enterprise Manager 10.2.0.1.0 VALID 已选择17行。 检查v$version 查看系统版本 SQL> select * from v$version; BANNER ---------------------------------------------------------------- Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod PL/SQL Release 10.2.0.1.0 - Production CORE 10.2.0.1.0 Production TNS for 32-bit Windows: Version 10.2.0.1.0 - Production NLSRTL Version 10.2.0.1.0 - Production 如果存在invalid的组件执行如下脚本: SQL> exec utl_recomp.recomp_serial (); 1.3停止oracle的所有效劳 (可以在控制面板->性能与维护->管理工具->效劳中停止所有和 oracle相关的效劳〕 如: 命令方式: C:\> emctl stop dbconsole Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved. ://localhost:1158/em/console/aboutApplication OracleDBConsoleorcl 效劳正在停止........ OracleDBConsoleorcl 效劳已成功停止 C:\> isqlplusctl stop Copyright (c) 2003, 2005, Oracle. All rights reserved. Stopping iSQL*Plus ... iSQL*Plus stopped. C:\> lsnrctl stop LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 11-11月-2021 11 6:46 Copyright (c) 1991, 2005, Oracle. All rights reserved. 正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=cxj)(PORT=1521))) 命令执行成功 C:\> sqlplus / as sysdba SQL> shutdown immediate Database closed Database dismounted. ORACLE instance shut down. 1.4冷备份数据库系统 利用系统操作系统命令对oracle database 10g和$ORACLE_HOME 整体备份 1.5升级Oracle Time Zone Definitions〔比拟繁琐,需要注意〕 1.5.1 查看Oracle 当前时区定义版本: SQL> conn / as sysdba Connected. SQL> SELECT version FROM v$timezone_file; VERSION ---------- 2 1) If this query reports version 4, no action is required; 2) If this reports a version lower, action is followed : 1.5.2 查看是否(user)TZ data可能被影响 1.5.2.1 TIMESTAMP WITH LOCAL TIME ZONE (TSLTZ) This needs to be checked manually. There is no automated way to discover affected data. select c.owner || '.' || c.table_name || '(' || c.column_name || ') -' || c.data_type || ' ' col from dba_tab_cols c, dba_objects o where c.data_type like '%LOCAL TIME ZONE' and o.object_type = 'TABLE' order by col / COL -------------------------------------------------------------- OE.ORDERS(ORDER_DATE) -TIMESTAMP(6) WITH LOCAL TIME ZONE 进行备份 1.5.2.2 TIMESTAMP WITH TIME ZONE (TSTZ) 1) 查看是否有用户自己定义的jobs and schedules,并进行备份 These are the standard Oracle provided jobs and schedules for a 10g database: SQL> SELECT object_name FROM dba_objects WHERE object_id IN (SELECT obj# FROM scheduler$_window); OBJECT_NAME -------------------------------------------------------------------------------- WEEKNIGHT_WINDOW WEEKEND_WINDOW SQL> SELECT object_name FROM dba_objects WHERE object_id IN (SELECT obj# FROM scheduler$_job); OBJECT_NAME -------------------------------------------------------------------------------- PURGE_LOG FGR$AUTOPURGE_JOB GATHER_STATS_JOB AUTO_SPACE_ADVISOR_JOB RLM$EVTCLEANUP RLM$SCHDNEGACTION 6 rows selected. If you have ORACLE_OCM installed in 10g you will also see MGMT_CONFIG_JOB and MGMT_STATS_CONFIG_JOB jobs, bringing the total to 8. (1) If only the Oracle provided jobs(as above SQL show) in DBMS_SCHEDULER jobs defined then there is no action (2) If you have your own DBMS_SCHEDULER jobs defined, then drop your jobs if they are time critical before upgrading to 10.2.0.4 and resubmit them after the update/upgrade is finished. The Oracle provided jobs can be left alone, no need to recreate them 2) 查看是否有除与jobs、schedules以外的会受影响的(TSTZ)数据 Download utltzpv4.sql from metalink.oracle and run it. DROP TABLE sys.sys_tzuv2_temptab CASCADE CONSTRAINTS ERROR at line 1: ORA-00942: table or view does not exist Table created. DROP TABLE sys.sys_tzuv2_affected_regions CASCADE CONSTRAINTS ERROR at line 1: ORA-00942: table or view does not exist Table created. Your current timezone version is 2! Do a select * from sys.sys_tzuv2_temptab; to see if any TIMEZONE data is affected by version 4 transition rules. Any table with YES in the nested_tab column (last column) needs a manual check as these are nested tables. PL/SQL procedure successfully completed. Commit complete. (1) gives no rows then there is no action (2) give(s) affected columns then you need to back up the reported columns expect SYS.scheduler$% columns 如下为jobs、schedules相关数据,不必进行考虑备份,之前备份相应jobs、schedules SQL> column table_owner format a4 SQL> column column_name format a18 SQL> select * from sys_tzuv2_temptab; TABL TABLE_NAME COLUMN_NAME ROWCOUNT NES ---- ---------------------------------------------------- --------------------------------- ---------------- ----- SYS SCHEDULER$_JOB LAST_ENABLED_TIME 3 SYS SCHEDULER$_JOB NEXT_RUN_DATE 1 SYS SCHEDULER$_JOB START_DATE 1 SYS SCHEDULER$_JOB_RUN_DETAILS REQ_START_DATE 1 SYS SCHEDULER$_JOB_RUN_DETAILS START_DATE 1 SYS SCHEDULER$_WINDOW LAST_START_DATE 1 if this colum contains a "YES" then it means that you have nested tables in your database who use a TIMESTAMP WITH TIME ZONE datatype. Utltzpv4.sql cannot scan these for affected timezones, it will report any nested table using the TSTZ datatype. You will need to check the nested table definition and see on what this is based. 参考文献: Doc ID: 553812.1 Actions for the DSTv4 update in the 10.2.0.4 patchset 2、安装中的工作 界面上安装数据库patch 下一步下一步就行 步骤一:点击下一步 步骤二:提供 $ORACLE_HOME(10.2.0.1) 信息 ,注意安装目录改为已安装〔旧版本〕的Oracle的目录 步骤三:确保条件通过,点击下一步 步骤四:不启用Oracle Configuration Manager, 单击“下一步〞。 步骤五:点击安装 步骤六:在安装结束画面, 单击“退出〞, 然后确认退出 Oracle Universal Installer,至此,ORACLE升级包软件安装结束 3、安装后的工作 3.1 运行数据库预升级检查 ( Pre-Upgrade Information Tool): 效劳里启动相对应的数据库和监听 C:>sqlplus / as sysdba SQL>shutdown immediate SQL>startup upgrade SQL>SPOOL update_info.log SQL>@?\rdbms\admin\utlu102 SQL>SPOOL OFF 在E:\Documents and Settings\Administrator\update_info.log 文件 Oracle Database 10.2 Upgrade Information Utility 11-12-2021 00:17:51 . ********************************************************************** Database: ********************************************************************** --> name: ORCL --> version: 10.2.0.1.0 --> compatible: 10.2.0.1.0 --> blocksize: 8192 . ********************************************************************** Tablespaces: [make adjustments in the current environment] ********************************************************************** --> SYSTEM tablespace is adequate for the upgrade. .... minimum required size: 493 MB .... AUTOEXTEND additional space required: 13 MB --> UNDOTBS1 tablespace is adequate for the upgrade. .... minimum required size: 403 MB .... AUTOEXTEND additional space required: 368 MB --> SYSAUX tablespace is adequate for the upgrade. .... minimum required size: 257 MB .... AUTOEXTEND additional space required: 7 MB --> TEMP tablespace is adequate for the upgrade. .... minimum required size: 58 MB .... AUTOEXTEND additional space required: 38 MB --> EXAMPLE tablespace is adequate for the upgrade. .... minimum required size: 78 MB . ********************************************************************** Update Parameters: [Update Oracle Database 10.2 init.ora or spfile] ********************************************************************** -- No update parameter changes are required. . ********************************************************************** Renamed Parameters: [Update Oracle Database 10.2 init.ora or spfile] ********************************************************************** -- No renamed parameters found. No changes are required. . ********************************************************************** Obsolete/Deprecated Parameters: [Update Oracle Database 10.2 init.ora or spfile] ********************************************************************** -- No obsolete parameters found. No changes are required . ********************************************************************** Components: [The following database components will be upgraded or installed] ********************************************************************** --> Oracle Catalog Views [upgrade] VALID --> Oracle Packages and Types [upgrade] VALID --> JServer JAVA Virtual Machine [upgrade] VALID --> Oracle XDK for Java [upgrade] VALID --> Oracle Java Packages [upgrade] VALID --> Oracle Text [upgrade] VALID --> Oracle XML Database [upgrade] VALID --> Oracle Workspace Manager [upgrade] VALID --> Oracle Data Mining [upgrade] VALID --> OLAP Analytic Workspace [upgrade] VALID --> OLAP Catalog [upgrade] VALID --> Oracle OLAP API [upgrade] VALID --> Oracle interMedia [upgrade] VALID --> Spatial [upgrade] VALID --> Expression Filter [upgrade] VALID --> EM Repository [upgrade] VALID --> Rule Manager [upgrade] VALID PL/SQL 过程已成功完成。 确保所有内容满足升级要求,并对不满足要求的按提示进行修改。 3.2 进行数据库字典信息升级〔时间挺长,近1个小时〕 〔Upgrading a Release 10.2 Database〕: C:> lsnrctl start C:> sqlplus / as sysdba SQL> startup upgrade SQL> @?\rdbms\admin\ SQL> SPOOL OFF 检查 patch.log 文件,如果有问题,修正后重新运行catupgrd.sql。 Oracle Database 10.2 Upgrade Status Utility 11-12-2021 01:23:38 . Component Status Version HH:MM:SS Oracle Database Server VALID 10.2.0.4.0 00:09:15 JServer JAVA Virtual Machine VALID 00:15:31 Oracle XDK VALID 10.2.0.4.0 00:00:35 Oracle Database Java Packages VALID 10.2.0.4.0 00:00:30 Oracle Text VALID 10.2.0.4.0 00:00:48 Oracle XML Database VALID 10.2.0.4.0 00:01:25 Oracle Workspace Manager VALID 10.2.0.4.3 00:00:41 Oracle Data Mining VALID 10.2.0.4.0 00:00:23 OLAP Analytic Workspace VALID 10.2.0.4.0 00:00:22 OLAP Catalog VALID 10.2.0.4.0 00:00:56 Oracle OLAP API VALID 10.2.0.4.0 00:00:42 Oracle interMedia VALID 10.2.0.4.0 00:03:37 Spatial VALID 10.2.0.4.0 00:01:43 Oracle Expression Filter VALID 10.2.0.4.0 00:00:09 Oracle Enterprise Manager VALID 10.2.0.4.0 00:01:52 Oracle Rule Manager VALID 10.2.0.4.0 00:00:06 . Total Upgrade Time: 00:38:44 Note: If you do not run the catupgrd.sql script as described in this section and you start up a database for normal operation, then ORA-01092: ORACLE instance terminated. Disconnection forced errors will occur and the error ORA-39700: database must be opened with UPGRADE option will be in the alert log. 3.3 重启动数据库: SQL>shutdown immediate SQL> startup 3. SQL> @?\rdbms\admin\ TIMESTAMP ------------------------------------------------------------------------------ COMP_TIMESTAMP UTLRP_BGN 2021-11-12 09:28:17 DOC> The following PL/SQL block invokes UTL_RECOMP to recompile invalid DOC> objects in the database. Recompilation time is proportional to the DOC> number of invalid objects in the database, so this command may take DOC> a long time to execute on a database with a large number of invalid DOC> objects. DOC> DOC> Use the following queries to track recompilation progres
展开阅读全文

开通  VIP会员、SVIP会员  优惠大
下载10份以上建议开通VIP会员
下载20份以上建议开通SVIP会员


开通VIP      成为共赢上传

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        抽奖活动

©2010-2026 宁波自信网络信息技术有限公司  版权所有

客服电话:0574-28810668  投诉电话:18658249818

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :微信公众号    抖音    微博    LOFTER 

客服