You can try this:
Open the SQL window, switch to Python via the New dropdownand paste this Python code:
nTables = 0
nTables = int(eval('NumTables()'))
print('Tables in total: {0}'.format(nTables))
nImageTables = 0
nTab = 0
while nTab < nTables:
if (int(eval('TableInfo({0}, 3)'.format(nTab))) == 4):
print('Table {0} is image/raster'.format(eval('TableInfo({0}, 1)'.format(nTab))))
nImageTables = nImageTables + 1
nTab = nTab + 1
do('Note "{0} tables are raster/image"'.format(nImageTables))
With your tables open, run the code.
If the results looks fine, you can give it a name via the Scripts dropdown and make it a favorite.
Now you can run the code via the SQL dropdown.
------------------------------
Peter Horsbøll Møller
Principal Presales Consultant | Distinguished Engineer
Precisely | Trust in Data
------------------------------