Hi team, I am still fairly new to working with delta tables. I have created a df by reading in data from existing silver tables in my lakehouse. I read in the silver tables usiung sql into a workbook, do some manipulation, unnest some fiels and then attempt to load as gold dlt tables. One of my gold tables works and the other two fail with the error 'cannot create ... because managed table already exists'. Any tips, tricks, advice on how to handle this. My dlt load looks like this:
<@dlt.table(comment='gold_users processed from silver platform users table to create gold tables ready for aggregation.'
)
def gold_users():
return users_df/>