Forum Discussion
igormicev
5 years agoContributor
Hi @apoorva_mithal,
If you need to save the records (or the IDs of them) that you’re deleting, then you’d need to first save those. It could be into file(s) or stage table in a database and then you delete them.
In case the number of rows is high, then I’d split them into chunks and delete chunk by chunk. Before deleting I would save the IDs of those records (and maybe some more columns) and then perform the deletion.
/Igor