Running a program at different Metta-Schemma Databases

rrojo7229

Member
Hi,

Someone has idea how can I run a program which connects several databases but they do have different Metta-Schemma.

I mean, the databases are in different versions, so it is asking for recompilation.

I tried to run in Source Code just without any compilation but still giving the same error.

** CRC for customer does not match CRC in bwgo11b.p. Try recompiling. (1896)


Thanks for any help.

Progress 91E & OpenEdge 102A


Kind regards,
Ricardo Olguin
 
1. Run your app using a Progress runtime license.
2. Rewrite your app to do everything with dynamic queries.

In either case you obviously have to make sure that the source is compatible with the schema, eg. it only references tables and fields that are in all possible databases that it might be connected to at runtime.

Good luck...
 
Is this a case of multiple databases which have the same logical schema, but which have been built in different ways so that the CRC differs? If so, and you are trying to run R-code against all of them, then the right answer is really to rebuild the databases based on the same schema.
 
Back
Top