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

Update table when inner select returns 1 row


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

New User


Joined: 27 Dec 2005
Posts: 58

PostPosted: Thu Nov 22, 2007 6:06 am
Reply with quote

We have a requirement to Update a table only when an inner Select statement returns 1 row as result.If the select returns anything other than 1 row then the outer update must not run.

Kindly let me know how to code the query.The query has to be outside the programming environment as it will be run from jcl.
Back to top
View user's profile Send private message
stodolas

Active Member


Joined: 13 Jun 2007
Posts: 632
Location: Wisconsin

PostPosted: Thu Nov 22, 2007 6:36 pm
Reply with quote

Based on my experience, this is not possible. You need to check how many rows are returned from the SELECT before running the update. It needs to be done in 2 steps with a check between the 2 of them or the inner SELECT needs to have a scalar function or a FETCH FIRST 1 ROWS ONLY in it to force the get of only one row.
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 Load new table with Old unload - DB2 DB2 6
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Multiple table unload using INZUTILB DB2 2
No new posts Check data with Exception Table DB2 0
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top