Ingres II 2.5 provides the ability to distribute a read-only database on a CD-ROM or other read-only media.
For example, to create a read-only database called mydatabase on UNIX:
cd /stagingarea
mkdir ingres
mkdir ingres/data
mkdir ingres/data/default
chmod 755 ingres
chmod 700 ingres/data
chmod 777 ingres/data/default
cd /install/inst1/ingres/data/default
cp -r mydatabase /stagingarea/ingres/data/default/
cp -r ingres/data/default/mydatabase /cdrom
Create a new database location using the create location statement or using the accessdb utility:
create location cdromloc with area=/cdrom, usage=(database);
createdb -r cdromloc mydatabase