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

Which of the following is more TIME EFFICIENT??


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

New User


Joined: 16 Jun 2005
Posts: 13
Location: Amsterdam

PostPosted: Tue Nov 29, 2005 3:21 pm
Reply with quote

Situation A : One program needs different data from 100 different tables. For modularity sake programmer has made one dataservice for each table, and hence it makes 100 calls to these 100 dataservices to fetch the required data.

Situation B : There is only one dataservice which will go to all these 100 tables and fetch the required data, so now main program has only single call.

Now please consider following arguments :
1. Depending upon the input given, main program will at maximum need to fetch data from 10 tables with a given set of input data.

2. Load module size of single dataservice of Case B will be much larger
than dataservice of case A. So more MAIN MEMORY will be required and loading will also take more time.

3. But as all the calls are dynamic in nature, call reslution takes place during run time, so calling time of case B will be lesser as there is only single call.

Please assume things from your experience if some data is missing.
Thanks
Back to top
View user's profile Send private message
mdtendulkar

Active User


Joined: 29 Jul 2003
Posts: 237
Location: USA

PostPosted: Fri Dec 16, 2005 7:22 am
Reply with quote

baldi,

There is no straight forward answer to your query...! Both the cases have its merits and demerits...

The performance would also depend on the following:

1) Types of queries (simple or join or union)
2) Number of rows fetched by queries (singleton select or in a cursor)
3) Indexes defined on the tables

Hopes this helps

Regards
Mayuresh
Back to top
View user's profile Send private message
khamarutheen

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Fri Dec 16, 2005 11:52 am
Reply with quote

Hi frnd,
V can't say the exact solution.. each of ur situation differs.. and it takes time accrodingly.. so as per mayuresh said.. all has it's own time execution and nothing depends on one another..
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 the current time DFSORT/ICETOOL 13
No new posts RC query -Time column CA Products 3
No new posts C Compile time time stamps Java & MQSeries 10
No new posts Parallelization in CICS to reduce res... CICS 4
No new posts Insert system time/date (timestamp) u... DFSORT/ICETOOL 5
Search our Forums:

Back to Top