Upgrade from 10.2.0.1 to 10.2.0.4
1. Patching Oracle Database 10.2.0.1 to 10.2.0.4 1.1 Pre-installation Tasks - Identify Oracle home directories, view the /etc/oratab file - Download the p6810189_10204_Linux-x86.zip patch set installation archive to a directory that is not the Oracle home directory or under the Oracle home directory (patch set id: 6810189 ) - Check the current version of the Oracle time zone definitions with the following command: SELECT version FROM v$timezone_file; If this query reports version 4, no action is required; If this reports a version lower or higher then 4: Check if you are storing TZ (TSTZ and TSLTZ) data use this sql query: 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 '%TIME ZONE' and c.owner=o.owner and c.table_name = o.object_name and o.object_type = 'TABLE' ...