JR41993: Connector jobs on server canvas faces an issue in handling Microseconds resolution of Timestamp data. Displaying 6 fraction digits as microseconds for TIMESTAMP data irrespective of scale mentioned in properties. RESOLUTION: To handle microseconds correctly, we added an environment variable CC_SE_TIMESTAMP_FF which does: 1. When the environment variable is not added, the jobs would behave the same way as they are behaving today. This is to ensure that any of the customers who are using the Connectors on Server canvas and are comfortable with the hard coded microseconds that is coming in their data. 2. When the environment variable is added and its value is set to MICROSECONDS, it would be same behavior as (1). 3. When the environment variable is added with a value of SCALE, then it is expected that the scale is mentioned in the timestamp fields in the schema and whatever scale is mentioned the microsecond resolution would be set to that. 4. When the environment variable is added and its value is set to NONE, then the behavior would be same as DS_NO_FF ( or SCALE with the scale in the timestamp fields being set to 0).