[resolved] Outside valid range for the datatype TINYINT in tMySqlInput Component.
Hi All,
I'm extracting data from Mysql database and loading into csv file. One field turnaround datatype is TINYINT.
I used tMySqlInput and tfileoutputdelimetedfile components.When i run the job i'm getting below.
"Exception in component tMysqlInput_2
com.mysql.jdbc.exceptions.jdbc4.MySQLDataException: '178' in column '13' is outside valid range for the datatype TINYINT."
Thanks,
kumar
Hi, A TINYINT will always have a size of one (1) byte. And accept values between -128 and 127 (if signed). Have you signed it? Is it working if you set it as "UNSIGNED"(0-255)? Best regards Sabrina