Data in legacy dataset is source from Adobe Analytics (lots of columns)
I need to modify one column in the dataset and write out the record to a new dataset
I do not want to list 1,000+ columns in my select or insert queries
I known I can use "with (schema=<schema>)" when creating the output dataset
What I want is the select query to also reference the schema
create table with (schema=<schema1>) as
select <something here to get all columns from the dataset>, <somefunction>(offending column) as original column
From <dataset>