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

Ttruncation happen in db2 table while storing character


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

New User


Joined: 29 Sep 2007
Posts: 93
Location: chenna/i-

PostPosted: Fri Sep 27, 2013 8:53 pm
Reply with quote

Hi,

i have created the field

05 LIT-EMAIL1 PIC X(58) VALUE
"Automated Bill Will be received and acknowledge request ".
05 LIT-EMAIL2 PIC X(33) VALUE
"has been assigned to".

while storing this value into the table it is storing as below and it is truncation first 2 characters

'tomated Bill Will be received and acknowledge request'

please let me know.

Thanks
siva
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri Sep 27, 2013 9:01 pm
Reply with quote

How is the column defined?
Back to top
View user's profile Send private message
sivasaras

New User


Joined: 29 Sep 2007
Posts: 93
Location: chenna/i-

PostPosted: Fri Sep 27, 2013 9:04 pm
Reply with quote

the db2 column is defined as VARCHAR(200) NOT NULL,
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Fri Sep 27, 2013 9:12 pm
Reply with quote

sivasaras wrote:
the db2 column is defined as VARCHAR(200) NOT NULL,

Well, there's your problem; a VARCHAR is proceeded by a two-byte length field. When performing your assignment, DB2 assumes that the source is also proceeded by a length field.

Try something like this:
Code:
01  WS-VAR-SIM.
    05  WS-LENGTH-SIM PIC 9(4)   COMP-5 VALUE 58.
    05  WS-LIT-EMAIL1   PIC X(58)             VALUE
         "Automated Bill Will be received and acknowledge request ".

and insert WS-VAR-SIM.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Fri Sep 27, 2013 9:12 pm
Reply with quote

Hello,

Suspect your host variable is not defined correctly. . .
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