When we create views using the Create Database View (Data Management) tool, we can't use the forward slash operator '/' in the SQL definition.
- For enterprise and mobile geodatabases, we can work around the issue by creating the view through an SQL client instead of using ArcGIS.
- But for file geodatabases, the database is inaccessible outside of ArcObjects. So, the only way to do things like create a database view is through ArcGIS using the Create Database View (Data Management) tool.
We need to be able to use forward slashes in FGDB views to do basic math like divide numbers and fields.
It looks like Esri has known about the issue since 2015 (although FGDB views are a recent development). See: BUG-000085841. So that makes me think Esri isn't able to fix this bug.
If that's the case, then could Esri provide a workaround for division in FGDB views, such as adding a DIVIDE() function to the FGDB database engine?
divide(10, 2), --would resolve to 5.
divide(field_A, field_B)
That would give us a way to divide numbers and fields in FGDB database views.