i have a table that has been partition by month and year.
the table has CDC tracking enabled on it, and a program called HVR is being used to read the transaction logs for tables using CDC for changes. it sends the changes to parquet files, where we can consume that data elsewhere.
if we use a partition switch to swap an empty table, and thus remove a months worth of data, would that show up in the transaction log as deletes for all those month/year records?
The idea here is we don't want to send DELETES to HVR via the transaction log downstream, so we just maintain the last x months in the database.