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

Want to Insert the rows that are retreived from CURSOR


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vjya

New User


Joined: 08 Dec 2006
Posts: 1
Location: Hyderabad

PostPosted: Sun Mar 29, 2009 6:21 pm
Reply with quote

Hi All, Here is my requirement:

1. Read the rows from DB(cursor).
2.Copy the same rows and change the value of ISTC ID and insert them on to the same table.

Please tell me ...if there is any easiest and efficient way to do this.

(Backgroud: I have declared a cusror, fetched one by one, modified the field ISTC ID and inserted one by one...which is a big process to do icon_sad.gif )

Thankyou,
Vjya.
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Sun Mar 29, 2009 7:18 pm
Reply with quote

you could
  1. dump the table
  2. modify the qsam file
  3. load the table from the modified qsam file.


obvious problems: duplicate keys.
Back to top
View user's profile Send private message
Succor

New User


Joined: 20 Feb 2009
Posts: 96
Location: Bangalore :)

PostPosted: Mon Mar 30, 2009 12:47 pm
Reply with quote

vjya,

It would have been helpful for us to suggest, if you could have shared the unique index fields ,cursor and insert clause definition.

Doubt: Do you actually want to insert another set of rows with exactly the same values except "ISTC ID" or You wish to update the "ISTC ID" field.

You may think of the following options in case of an update .

1. If you can uniquely identify "ISTC ID" by some filter criteria (using unique index) then u might try directly updating the same.

2. If the above scenario is not possible then u might go for a multi row fetch feature of DB2. This improves the fetch processing by as much as 50%. So, instead of fetching a row at a time you can use multifetch and update the same.

In case of an insert, you might try multi row fetch and multi row insert feature ...not sure how will you handle the duplicates.

WTF
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts To get the count of rows for every 1 ... DB2 3
No new posts Exclude rows with > than x occurre... DFSORT/ICETOOL 6
No new posts Insert header record with record coun... DFSORT/ICETOOL 14
No new posts Insert system time/date (timestamp) u... DFSORT/ICETOOL 5
No new posts Identify Program Insert DB2 7
Search our Forums:

Back to Top