Hello everyone,
How can I list only Feature Datasets, Feature Classes and Tables owned by a specific owner?
I am working on SDE and would like only to select layers owned by a specific account.
I am using Python arcpy.ListDatasets
Thanks
Since those ArcPy functions and others like ArcPy Walk don't include owner as a parameter, how this gets addressed depends on the back-end DBMS. What DBMS are you working with?
Hello everyone,
This is how I did it
myDatasetString = dataset
if ( myDatasetString.find(prefixOutputOwner) != -1):