Hi Tim,Here is an example on how to do this using the 'ArcSDESqlExecute' function, as lpugh01 mentioned:import arcpy
sdeConn = arcpy.ArcSDESQLExecute("GIS01", "sde:oracle11g:orcl", "", "vector", "vector")
tableList = ["School_District, "Building_Sites", "Parcels"]
for table in tableList:
print table + " contains the following cities:"
try:
print sdeConn.execute('select distinct City from ' + table)
except AttributeError:
print "None, field does not exist"
The above code will run through each table and search for a field named 'City' and return the distinct values.