cancel
Showing results for 
Search instead for 
Did you mean: 

Bods job failed - process is not dumped

siba_pkd21
Participant
0 Kudos

 

Hi All

A Data Services Job failed with below error. Please anyone assist me with this error.

 

siba_pkd21_0-1707145096751.png

 

Regards

Siba

 

RichS
Participant
0 Kudos
Compare the actual column data types in MS SQL for your source table(s) with those in the corresponding schema(s) imported into Data Services. I think you will find that one or more columns had an unsupported datatype and was created in BODS with a shorter length (or as a LONG).

Accepted Solutions (0)

Answers (1)

Answers (1)

akhileshkiran
Contributor
0 Kudos

Hi @siba_pkd21 

The data which you are sending from the source side is having more length than the expected value that is restricted in the filed target side.

Please validate the data max source data length and target filed column filed data type.

Example: 

Source Mapping: varchar(15),
Data: '000000000012345' 

Target Mapping: varchar(14),
Data: '000000000001234'

due to the truncation of the data the job is getting failed.