Date column doesn’t have null
Like this
CHANGED_DATE
2014-11-04 03:01:19.000
2014-06-04 18:15:41.000
2014-05-04 18:45:17.000
2014-06-04 18:14:53.000
2014-05-04 19:02:58.000
2014-06-04 18:14:35.000
2014-06-04 18:13:57.000
2014-04-22 12:00:55.000
2014-06-04 18:16:06.000
2014-05-04 18:45:41.000
2014-04-05 01:29:21.000
2014-06-04 18:23:51.000
2014-06-04 18:24:39.000
2014-05-04 19:06:20.000
2014-11-04 03:01:19.000
im doing insert and update checking.
By using lookup and conditional split, in conditional split update checking expression Im giving
Like
([Changed Date] != L_Last_Updated_Date)
(ISNULL([Changed Date]) ? NULL(DT_DBTIMESTAMP) : [Changed Date]) != (ISNULL([L_Last_Updated_Date]) ? NULL(DT_DBTIMESTAMP) : [L_Last_Updated_Date]) &
(ISNULL([Changed Date])==TRUE ? @[DateVariable]: [Changed Date])!=(ISNULL(L_Last_Updated_Date)==TRUE ? @[DateVariable]: (L_Last_Updated_Date))
These expressions I tried all cases but data will automatically throungh the update side
conditional split--- to--- oledbcommand .
Please give me the solution when data updated on that case only data through the update side.