Column[] cols;
Collection unmappedCols = new ArrayList(5);
for (int i = 0; i < schemas.length; i++) {
tables = schemas[i].getTables();
for (int j = 0; j < tables.length; j++) {
unmappedCols.clear();
cols = tables[j].getColumns();
for (int k = 0; k < cols.length; k++)
if (cols[k].getRefCount() == 0)
unmappedCols.add(cols[k]);