Does TopLink support table qualifiers and creators?
In some databases or database configurations table names must be qualified with either a table owner/creator name or a table space name. TopLink allows you to specify these either on a per session basis or individually in each descriptor. By sending the following method to the DatabaseLogin object before you login to the session, the table names of all of the registered descriptors will be qualified with the creator or qualifier name. login.setTableQualifier(“PERSONNEL”); It is also possible to define individual qualifiers by qualifying the table name in the descriptor using the dot notation. This must be done through an amendment method and is not supported from the TopLink Mapping Workbench.