I have a solution that contains a Dataverse custom table called AllRecords.
The AllRecords table has an Active Directory / Entra ID LookUp column called Assignee.
For several reasons, I have had to delete the Assignee column in my development environment and replace it with a new column called AssigneeV2.
After I deploy the new version of my managed solution into my production environment, the historical data contained in the Assignee column will be deleted, but all data in the other columns will remain for approximately 130,000 rows. I want to update all historical rows in the AllRecords table with the Entra ID GUIDs, into the AssigneeV2 column, so that users can see who the assignee was for historical records.
I have not yet deployed to production, so I can export all data in the production environment before I deploy.
What is the best way to bulk update these rows? My preference is to use a 'low code' method such as a Power Automate flow or XLSX import that I can import directly into the production environment (i.e. outside of the managed solution as this is a once-off update).
Thanks!