I'm looking to automate certain fields within a feature class using attribute calculation rules. My first rule is as follows:
var fields = FeatureSetByName($datastore, "ref_Cadastral_Denbury_Field", ["FIELD_NAME"], True)
var intersect = Intersects(fields, Geometry($feature))
var field = First(intersect)
return IIf(IsEmpty(field), null, field.FIELD_NAME);
The error message is "ERROR 003050: DBMS does NOT support this function"
Assuming this is referring to FeatureSetByName, as I have set other rules based without this before and had not issue.
Is this a database version issue? I'm currently on 18.1
I can achieve what I want with Python, but I'd really like this to be an automatic process rather than a scheduled one. Thank you in advance for any replies.