A DT_DBTIMESTAMP2
convert requires a datetime string in format yyyy-mm-dd hh:mm:ss[.fffffff]
as described in the documentation reference. Try using SUBSTRING
and concatenate the date parts from the source field into the needed format, like:
((DT_DBTIMESTAMP2,7)(SUBSTRING(DtStart,5,4)+"-"+SUBSTRING(DtStart,3,2)+"-"+SUBSTRING(DtStart,1,2)+" 00:00:00.0000000"))