IB - Developer Center    Forums  Hop To Forum Categories  iWay Products    Data Migrator VSAM to SQL issues/Overflow error
Go
New
Search
Notify
Tools
Reply
  
-star Rating Rate It!  Login/Join 
Member
Posted
running 7.6.4
VSAM field:
04 BPW-EMP-PCT PIC 9(03)V999 COMP-3.
value is 37.685
in DM VSAM Master file def:
FIELDNAME=BPW_EMP_PCT, ALIAS=E49, USAGE=P7.3, ACTUAL=P4, $
I used a define field due to overflow error:
DEFINE BPW_EMP_PCT_X/A9 = EDIT(BPW_EMP_PCT, '$9999999');$
in EDA Master file:
FIELDNAME=BPW_EMP_PCT, ALIAS=BPW_EMP_PCT, USAGE=P7.3, ACTUAL=P4, $
FIELDNAME=BPW_EMP_PCT_X, ALIAS=BPW_EMP_PCT_X, USAGE=A9, ACTUAL=A9, $

Target SQL Server is set up as a float field, displays D20.2 in Datamigrator
FIELDNAME=EMPLOYERPERCENTAGE, ALIAS=EmployerPercentage, USAGE=D20.2, ACTUAL=D8,
MISSING=ON, $


when I run the Dataflow, end result is 37.00, when it should be 37.685

Any help would be much appreciated. IBI has been looking at it since Monday and no resolution as of yet.

Thanks.
 
Posts: 7 | Registered: April 01, 2008Reply With QuoteEdit or Delete MessageReport This Post
Master
Posted Hide Post
The problem is that you used EDIT to convert your field. Change your define to:
 
DEFINE BPW_EMP_PCT_D/D7.3=BPW_EMP_PCT;
DEFINE BPW_EMP_PCT_X/A9=FTOA(BPW_EMP_PCT_D,'D7.3','A9');
 


for a complete list of functions try searching for:
Alphabetical List of Functions and Subroutines


Pat
WF 5.3.2 AIX, NT, AS/400, Focus AS/400, AIX, Oracle, JDE, DB2, Lotus Notes
 
Posts: 524 | Location: TX | Registered: September 25, 2007Reply With QuoteEdit or Delete MessageReport This Post
Member
Posted Hide Post
Thanks Pat, I was able to use the _D field and it worked.
 
Posts: 7 | Registered: April 01, 2008Reply With QuoteEdit or Delete MessageReport This Post
 Previous Topic | Next Topic powered by eve community  
 

IB - Developer Center    Forums  Hop To Forum Categories  iWay Products    Data Migrator VSAM to SQL issues/Overflow error

Copyright © 1996-2008 Information Builders, leaders in enterprise business intelligence.