Is it possible to use the GENERATE_ID method to generate the same id into to two different tables? I'm trying to piece together the logic in my head as to how it could work. Here is my situation:
I create point features that have names and I have an alias table for those points, where the aliases are derivatives of those names. I use this point feature class for geocoding with the aliases as the alt_names table. Let's say I have a point and it's full name is:
JACKSON ELEMENTARY SCHOOL
That point would have at least two different aliases:
JACKSON ELEMENTARY
JACKSON
What I'm after is a Join-Item between the proper name on the point and the alias records.
As I'm typing this out, I can already see a flaw in using the GENERATE_ID method for the aliases, because of the way the GENERATE ID sequence counter is incremented. Perhaps the way to go would be to use the LAST_VALUE method referring back to the point attribute table, and the last generated id. Thoughts?