Hi,
I had calculated attributes in my attribute view. I didn't want to do that in the cal.view for various reasons (e.g. to ensure every view that uses the attributes also uses the same calculation).
For performance reasons it was suggested to alter the table and add a dynamic column.
ALTER TABLE "<your_schema>"."<your_dimension_table>" add ( <calculated_attribute_name> varchar GENERATED ALWAYS AS (<formula>));
I haven't found a lot of documentation on that feature so maybe you can help clarifying for me:
thanks much
Elmar