This chapter describes platform-related considerations you should anticipate when using ObjectStore Release 5.1.
pkunzip -d debug.zip
Solaris 2
The following paragraphs describe platform-specific considerations for ObjectStore Release 5.1 on Solaris 2. HP
HP aC++ source file naming clarification
A clarification has been added to the Chapter 4, Compiling, Linking, and Debugging Programs of ObjectStore Building C++ Interface Applications. See HP aC++ Source Files for details. 16K Page Size and Heterogeneous Database Access
In releases prior to ObjectStore Release 5.1, there is a bug in our support of heterogeneous access to databases created on machines with a 16K page size, such as SGI platforms: databases created on 16K page big-endian platforms cannot be accessed from small-endian platforms. Although this has been fixed in Release 5.1, older databases created on 16K page size platforms must be upgraded to be accessible to small-endian platforms. Note
There is no need to use this tool if the database has been created on a platform that has a 4K or 8K page size. New Option to osverfiydb
To check or upgrade a database for hetergeneous accessibility with the osverifydb command line utility, you can specify a newly added command line option, -info_sector_tag_verify_opt option. This verifies info segment sector tags in accordance with the option value you specify.
New Argument to osdbutil::osverifydb()
You can also use the upgrade tool by means of the os_verifydb_options argument to the API os_dbutil::osverifydb() with os_verifydb_options::info_sector_tag_verify_opt set to the desired value:
class os_verifydb_options { public: ... enum info_sector_tag_verify_opt_enum { verify_skip = 0, /* do not verify info sector tag */ verify_report_only = 1, /* report only */ verify_upgrade = 2, /* upgrade info sector tag */ verify_skip_others = 4, /* skip other verifications */ } info_sector_tag_verify_opt ; ... }Valid os_verifydb_options::info_sector_tag_verify_opt values are:
verify_skip verify_report_only verify_upgrade verify_report_only | verify_skip_others verify_upgrade | verify_skip_others
Updated: 04/02/98 12:47:39