Hey @nalindhar
I assume you want the target table to have the same name once you declare your ETL operations in the DLT pipeline, if that's the case, begin with renaming your delta table to specify that they contain historical data, you can do this via ALTER TABLE syntax. Later, you'd want to use the same name of the table in CREATE LIVE TABLE syntax and all the data ingestion logic to this table definition.
Additionally, as cgrant mentioned, use the append_flow definition to insert the historical data into your materialized view.
Riz