A naming algorithm is used to assign underlying file names for tables. There are two columns in the iirelation table used to produce names:
The algorithm for creating the name is as follows:
0,1, 2, ..., F is assigned to a, b, c, ..., p
For example, a reltid of 129 converted to an 8-digit hex number is "00000081". Substituting letters gives a file name of aaaaaaib.tnn, where nn=00, 01, ..., for first (or only) location, second location, and so on.
As the DBA, you can select the names of the disk files associated with tables by using the iifile_info view, as shown in this example:
select table_name, owner_name, file_name, file_ext
from iifile_info;