Hi Tony, We do not generate this SQL. Schema retrieval is abstracted by the JDBC API, so specifics are hidden within a given driver. All we do is this:
DatabaseMetaData md = connection.getMetadata(); md.getTables(..); md.getColumns(..); md.getImportedKeys(..); Andrus > On Nov 22, 2021, at 1:11 AM, Tony Giaccone <t...@giaccone.org> wrote: > > > Two questions about reverse engineering. > > Is there a setting that will cause the modeler to emit the SQL that is used > to read tables and schema information? > > Second is where is it in the modeler that generates this sql? > > > > Tony