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

Programs affected by a change in Table


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

New User


Joined: 23 Mar 2006
Posts: 13

PostPosted: Thu Apr 06, 2006 5:45 pm
Reply with quote

If I make a change to a table, how to know the effect that it will have on other programs using that table.
Back to top
View user's profile Send private message
guptae

Moderator


Joined: 14 Oct 2005
Posts: 1208
Location: Bangalore,India

PostPosted: Fri Apr 07, 2006 1:29 pm
Reply with quote

Hi arunswap,

First make a fairscan on that table to identify which programs are using that particular table.

2) What changes u r making in table
a) If u adding new coloumn than u have to change all those program
that have the query like that
Select *
From tablea
Where .....
b) if u renaming some coloumn ( changing fielda to fieldb)than u have
to change name of that Particular colum in each program that have
the sql like

Select fielda
from tablea
Where .....
c) if u changing defination of some coloumn than u have to make
change length of corrosponding host variable in all those pgm which
have query that contain that particular coloumn

Hope it will helpful
Back to top
View user's profile Send private message
twissi

Active User


Joined: 01 Aug 2005
Posts: 105
Location: Somerset, NJ

PostPosted: Thu Apr 20, 2006 3:39 pm
Reply with quote

Hi Arun,

The first thing you've to do when there was a table change is modifing the DCLGEN & copybook to reflect the change and recompile the associated programs.

Before recompiling the programs you'll have to make sure that you've changed the embedded SQLs accordingly.

As an example, let's assume that there were 10 fields in the table and after the change being applied to the table, there're 11 fields now including the new one added at the end, which is defined as NOT NULL. If your program is doing an insert operation and you haven't modified the SQL, the insert operation will fail giving a code of -407.

The explanation is you were trying to insert a null value into a non nullable column.


In brief, you'll have to change the copybooks/SQL statements depending up on the situation.

Cheers, Twissi.
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 Binary File format getting change whi... All Other Mainframe Topics 7
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
Search our Forums:

Back to Top