CONCAT is not a built-in Teradata function.
Instead of oREPLACE better use oTRANSLATE, both are built-in since TD14, before they have to be installed as C-UDFs by a DBA.
Or concat the columns on your own (you might add a FORMAT for each column): trim(id) || trim(rec_num) || ...
CONCAT is not a built-in Teradata function.
Instead of oREPLACE better use oTRANSLATE, both are built-in since TD14, before they have to be installed as C-UDFs by a DBA.
Or concat the columns on your own (you might add a FORMAT for each column): trim(id) || trim(rec_num) || ...
Dieter