Sponsored Content
Operating Systems AIX AIX SP update and Oracle interaction Post 302914021 by ibmtech on Thursday 21st of August 2014 11:30:26 AM
Old 08-21-2014
Those are all good, but make sure you use alternate disk install
To summarize
1. You need to have a free disk (equal to greater in size of rootvg)
2.
Code:
smitty -->   Software Installation and Maintenance -->  Alternate Disk Installation  -->
  Clone the rootvg to an Alternate Disk

Code:
[TOP]                                                   [Entry Fields]
* Target Disk(s) to install                          [hdisk1]                             +
  Phase to execute                                    all                                 +
  image.data file                                    []                                    /
  Exclude list                                       []                                    /

  Bundle to install                                  [update_all]                         +
    -OR-
  Fileset(s) to install                              []

  Fix bundle to install                              []
    -OR-
  Fixes to install                                   []

  Directory or Device with images                    [/export/aix71/tl01sp09]
  (required if filesets, bundles or fixes used)

  installp Flags
  COMMIT software updates?                            yes                                 +
  SAVE replaced files?                                no                                  +
  AUTOMATICALLY install requisite software?           yes                                 +
  EXTEND file systems if space needed?                yes                                 +
  OVERWRITE same or newer versions?                   no                                  +
  VERIFY install and check file sizes?                no                                  +
  ACCEPT new license agreements?                      yes                                 +

  Customization script                               []                                    /
[MORE...5]

This will 1st copy the existing mksysb to new disk, then it will update the OS, all your setting will remain the same.

If your Tl01SP09 binaries are on NIM server, you can export that directory to the client and use that location.

Make sure you accept the license agreement.
 

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

update a oracle table using shell script

Hi, I would like to know how to update a table in Oracle database, if a command in one shell script either successfully completes or it fails.(like Y if its success or N if its a failure) While the command is running,I am able to view the log file created in the Unix machine.After the command... (2 Replies)
Discussion started by: ann_124
2 Replies

2. UNIX for Advanced & Expert Users

unix script for update or insert records from a file to a oracle table

Hi, I have delimited file(|). Sample data: 1|name|50009|DS24|0|12 2|name|30009|DS24|0|13 3|name|20409|DS24|0|14 4|name|20009|DS24|0|15 5|name|10009|DS24|0|16 I want to load this data into a oracle table (update and insert) Please help me the commands and also... (1 Reply)
Discussion started by: unihp1
1 Replies

3. UNIX for Advanced & Expert Users

oracle update not working

Hi, I have a oracle source with a field my_date =06/02/2009 I am trying to update the table to SYSDATE with a myscript.sql where I have UPDATE table set my_date=to_DATE(SYSDATE,'MM/DD/YYYY'); Now I try to run it with myupdate.SH script where I have sqlplus nolog @myscript.sql ... (4 Replies)
Discussion started by: RubinPat
4 Replies

4. Shell Programming and Scripting

How to update a Oracle table through shell scripting?

My Code is get_week_date() { `sqlplus -s ${DQM_SQL_LOGON}@${DQM_SID} << EOF SET ECHO OFF SET FEEDBACK OFF SET PAGES 0 SET SERVEROUTPUT ON SET VERIFY OFF SET TRIMSPOOL ON (update file_level_qc fq set FQ.DATA_FILE_NAME='Hyvee_Pharmacy_Solutions_201304_v1.txt'... (2 Replies)
Discussion started by: karthick.cho
2 Replies
Session::Store::Oracle(3)				User Contributed Perl Documentation				 Session::Store::Oracle(3)

NAME
Apache::Session::Store::Oracle - Store persistent data in a Oracle database SYNOPSIS
use Apache::Session::Store::Oracle; my $store = new Apache::Session::Store::Oracle; $store->insert($ref); $store->update($ref); $store->materialize($ref); $store->remove($ref); DESCRIPTION
Apache::Session::Store::Oracle fulfills the storage interface of Apache::Session. Session data is stored in a Oracle database. SCHEMA
To use this module, you will need at least these columns in a table called 'sessions': id varchar2(32) # or however long your session IDs are. a_session long To create this schema, you can execute this command using the sqlplus program: CREATE TABLE sessions ( id varchar2(32) not null primary key, a_session long ); If you use some other command, ensure that there is a unique index on the table's id column. CONFIGURATION
The module must know what datasource, username, and password to use when connecting to the database. These values can be set using the options hash (see Apache::Session documentation). The options are DataSource, UserName, and Password. Example: tie %hash, 'Apache::Session::Oracle', $id, { DataSource => 'dbi:Oracle:database', UserName => 'database_user', Password => 'K00l' }; Instead, you may pass in an already-opened DBI handle to your database. tie %hash, 'Apache::Session::Oracle', $id, { Handle => $dbh }; The last option is LongReadLen, which specifies the maximum size of the session object. If not supplied, the default maximum size is 8 KB. AUTHOR
This modules was written by Jeffrey William Baker <jwbaker@acm.org> A fix for the commit policy was contributed by Michael Schout <mschout@gkg.net> SEE ALSO
Apache::Session, Apache::Session::Store::DBI perl v5.12.1 2007-09-28 Session::Store::Oracle(3)
All times are GMT -4. The time now is 06:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy