import cx_Oracle, arcpy from arcpy import env connstr = 'sde/sde@orcl' conn = cx_Oracle.connect(connstr) curs = conn.cursor() list = [] #find feature classes that contain a domain and append to list curs.execute("select UUID from sde.gdb_items where type = '{8C368B12-A12E-4C7E-9638-C9C64E69E98F}'") for row in curs: curs2 = conn.cursor() curs2.execute("select ORIGINID from SDE.gdb_itemrelationships where DESTID = '" + row[0] + "'") for row2 in curs2: curs3 = conn.cursor() curs3.execute("select NAME from sde.gdb_items where UUID = '" + row2[0] + "'") for row3 in curs3: list.append(row3[0]) conn.close() #remove duplicates from list list = dict.fromkeys(list) list = list.keys() env.workspace = r"Database Connections\VECTOR@ORCL.sde" #loop through fields to find which has a domain for fc in list: for field in arcpy.ListFields(fc): if field.domain: print fc, field.name
Does anyone know how to use python to find every field (and fields on subtypes) that use a particular domain? Our SDE is 10.2 and on an Oracle database, and I have desktop 10.2.1. Basically if I need to change a domain (like change it's data type from string to integer) I need to delete it and recreate it. In order to delete it I need to find every place it's used and un-reference it. This is hard to do in a large SDE where domains are shared between many fields and feature classes.
The out of the box method seems to be looping through EVERY feature class(and subtype) on the database and running arcpy.describe on every field see if they use a particular domain. This seems extremely inefficient and will take forever on our large SDE. Surely there must be a better way.
I figured querying the SDE administration tables would be quicker but ran into some walls. By querying the GDB_Items and GDB_ItemRelationship tables I was able to see what feature classes reference a domain, but these don't seem to tell you which field(s) are using the domain, nor does it seems to show if a particular subtype uses a domain.
I was curious how SDE at 10.2 actually stores that a field is using domain x, and also how it tracks that subtype y uses domain x. This way I can query the administration tables directly to make this process much faster.
I plan to use the proper toolbox tools to make the domain assignment changes, I just want to query the administrative tables to find the references and quickly as possible.
Thank you for any help you can provide,
Andrew
Exploring this made me curious how ESRI actually stores what fields use domains. I guess its stored in some XML blob somewhere now at 10.1.
Is there a tool or script to list all active domains (and field names in each feature where are used) and all unused domains in a workspace?