Adding new column in target in GCP Data Fusion

1.4k views Asked by At

How to add a new column in target with static values in GCP Data Fusion (with/without wrangler)?

1

There are 1 answers

1
Arjan Singh Bal On BEST ANSWER

If what you want to do is add a new column named static with the same constant value for each record, say x, you can do so using the set-column directive in wrangler. The expression would look as follows:

set-column :static 'x'

This directive should be entered in the terminal you see at the bottom when wrangler is open.