IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Copying data from One Cloumn to another Column in a DB2 Tabl


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Manju-Pacha

New User


Joined: 21 Mar 2007
Posts: 7
Location: Bangalore

PostPosted: Wed Oct 24, 2007 11:16 am
Reply with quote

Hi,

I need to copy data from an existing column A in a Db2 table to a newly added column B for all the existing records. Once done, I need to space out the Column A values. There are other columns as well in the table.

Column A CHAR(18) NOT NULL
Column B CHAR(20) NOT NULL

As per DBA suggestion, we shouldn't use SPUFI because we will be changing too many pages without the commit. DB2 may abend the SPUFI if the updated # of pages reach the system allowable limit. Hence we need to write a one-time DB2 batch job to do this and make sure to put the COMMIT logic for say every 1000 updates.

Could anyone provide any hint on how to accomplish this?
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Oct 24, 2007 7:21 pm
Reply with quote

Hello,

One easy to do what you need is to write a bit of cobol code that declares a cursor, reads and updates the rows (moving the colA value to colB and spaces to colA in the same update) , and issues a checkpoint periodically.

You will want (or ask your dba) to create a backup of the table before you update it.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts How to save SYSLOG as text data via P... All Other Mainframe Topics 4
No new posts Replacing 'YYMMDD' with date, varying... SYNCSORT 3
No new posts Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts How to load to DB2 with column level ... DB2 6
Search our Forums:

Back to Top