RE: Restore deleted recurring system job (Bulk delete completed system jobs)
Although this is not supported way to change directly in the table but you can do this without any issue I guess.
Sorry I have not tried just assuming following steps you can try, I am not concern about migrate primary GUID of the table -
- Restore the old database in another database in same DB server .
- Find out which data has been deleted and need to migrate. Based on that you need to put where condition let's say created by or date something like this.
- Prepare query like below
INSERT INTO dbo.AsyncOperationBase (
column1
,column2
,column3
,column4
)
SELECT column1
,column2
,column3
,column4
FROM [reatoredbname].dbo.AsyncOperationBase
Try to do it for one record first by providung where condition and check you can see the data in UI
If everything is fine you may delete all the data from your live DB apart from which has recently created compare to old DB backup and then migrate all the data from back DB.
Hope this helps.