Hi,
Assume I have two business objects, A and B, in a one-to-many relationship (ie: one instance of A can relate to multiple instances of B). The relationship was set up by creating an attribute on B of type A. All basic stuff.
If A has 1 million rows, and B has 5 million rows, I want the attribute on B that points to A to be indexed, so that I can quickly retrieve all B rows that relate to a selected A instance. Again, normal administrative system behaviour.
The problem is that I can't see where in the configuration tool to set the attribute on B that points to A (a foreign key basically) to be indexed. For other types of attributes, there is a check box called 'Indexed', but I can't find it for this one.
Do I have to go into the database and manually create an index via SQL?
Any advice would be appreciated.