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

Cursor and a file


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
saagu

New User


Joined: 15 May 2008
Posts: 41
Location: Chennai

PostPosted: Tue Nov 11, 2008 4:09 pm
Reply with quote

Hi Can some one clarify my doubt.

Metod 1:

Reading a key fields from a file and deleting rows for all the 5 tables using cursors for each table(key fields are common) and again reading another row key field and deleting from all the 5 tables.

Method 2:
Reading a file one by one row and deleteing all the rows related for one table first using cursor(complete for one table) and then again reading file and deleteing for another table one by one.


Which one would be better in performance.
Please suggest me as earlier.

Thanks in Advance,
Saagu
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Tue Nov 11, 2008 4:31 pm
Reply with quote

if i have interpreted correctly:

method 1:
open file
read file, delete rows on db2 tables via 5 cursors.
close file

method 2:
open file
read file, delete rows on db2 table via cursor
close file, open file
read file, delete rows on db2 table via cursor
close file, open file
read file, delete rows on db2 table via cursor
close file, open file
read file, delete rows on db2 table via cursor
close file, open file
read file, delete rows on db2 table via cursor
close file

of the two that you have suggested, neither gives me a warm fuzzy feeling

Why the cursors?

METHOD 3:
open file
read file, delete via DELETE WHERE, on each of the 5 tables, without cursors.
close file
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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 4
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top