Am Samstag, 29. Dezember 2018 00:36:16 UTC+1 schrieb Ian:
> >
> > What do we have to do to avoid this? How can we determine which packages need to be rebound?
>
> This is not a normal part of restore and rollfoward operation.
That's what I thought as well. Never had this before.
>
> What packages are you having to rebind? Are they your own application's packages, or are they system packages (i.e. in NULLID schema)?
It's a package in our application's schema, so our own.
>
> If it's your own application's packages, I can only imagine this being a necessity if the packages were already invalid when you took the backup that you're restoring, or if they were invalidated (by DDL changes that occurred between the backup and the point-in-time that you recovered to, but before rebinds occurred). The solution to this problem is to ensure that finding and fixing invalidated packages is part of any deployment.
I guess the procedure you mention below is key to that...
>
> > The risky thing about this is that in case of emergency, when we need to restore the DB in production, there is no time for games like stumbling from one rebind to the next... I am sure writing bash scripts to accompany our restore/roolforward scripts to rebind all the packages that needed rebinding in our testing is not working on the illness, just on the symptoms, right?
>
> You can see invalid objects by querying SYSCAT.INVALIDOBJECTS. (Assuming you're using Db2 on Linux, UNIX or Windows).
select * from syscat.invalidobjects yields 41 results, all of them using the schema SYSIBMADM.
>
> Also (again, if you're on Linux, UNIX or Windows) you may want to look at the ADMIN_REVALIDATE_DB_OBJECTS procedure.
Thanks for that pointer. I called it using zero parameters and the table invalidobjects is now empty. I will see if the next backups will work better when they are restored...
Again: thanks fpr your help.
Joachim