Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create Field in Script and populate

I'm trying to create a new field in my script and populate every row of data with the word 'Flag'.

What is the best way to accomplish this?

Thanks in advance!

1 Solution

Accepted Solutions
Not applicable
Author

Add it to the Load portion of your script.

LOAD ...
'Flag' As NewField
...
FROM Table


View solution in original post

2 Replies
Not applicable
Author

Add it to the Load portion of your script.

LOAD ...
'Flag' As NewField
...
FROM Table


Not applicable
Author

Worked perfectly. Thank you.