Code compilation/CRC value

casorohi

Member
Hi friends
I need your advices on following:
Actually I have database and want to do dump and load to create a new database.
My doubt is if I dump the df and load the same df file into new DB. The table numbers (_file-number) are changing in new DB w.r.t old DB.

For example in old DB I have table:
Address
value
Customer ID
Book_id
CC_ID
After loading the df file in new DB it appears as alphbaticaly : means the _file-number got changed.
Address
Book_id
CC_ID
Customer ID

Now my question is, after uploading the df and data. Shall I have to compile the all code base again or the old .r files will work. Is there any change in CRC number of tables.
OE version is 102B07 64Bit Linux

Thanks
 

Rob Fitzpatrick

ProgressTalk.com Sponsor
As long as you select this check box when dumping your schema:
Code:
[X]Include POSITION for .r / Binary Load Compatibility
you'll be fine. Having different table numbers won't affect the r-code.
 
Top