A REPLACENULL expression that works like the T-SQL ISNLL would be usefulCurrently, if you are using ISNULL to determine whether to use the current value or replace it with another value (about 80% of cases for me) it results in an excessively long expression. For example:(DT_DBTIMESTAMP) (ISNULL(MyColumn) ? “1900-01-01” : MyColumn) –Now imagine this repeated about five times in a more complex expression. New REPLACNULL:(DT_DBTIMESTAMP) (REPLACENULL(MyColumn, “1900-01-01”)
Category
Proposed Solution
Benefits
Other Benefits