DB2 also supports the CONCAT scalar function; "||" is actually a shortcut to that function.
You have to make sure, though, that both arguments of concat (or of "||") are of datatype "text"; if "part" is numeric, use
Code:
update inventory set part = concat( 'a', digits(part));