The problem I’m having
I’m looking for a way to find and replace column names across all models in a project. For example, I want ‘foo_bar’ to be renamed to ‘foobar’ everywhere that ‘foo_bar’ was used
The context of why I’m trying to do this
My org has decided to change some of our column naming conventions. Our models have been built so that column renames happen pretty far upstream in intermediate models (so that the renaming doesn’t have to be written multiple times for each of our output models)
What I’ve already tried
Haven’t really been able to find a good starting point yet online or on the forums