Would anyone know if it is possible to get the generated DDL to contain the table structure in build sequence. At the minute the DDL being generated is like:
Table A (some columns)
Table B (some columns, FK to Table C)
Table C (some columns)
Obviously, when the DDL script is run, it will error as there is a dependency on Table C for Table B to be created. Ideally I would like the DDL to generated the tables in build sequence i.e.
Table A (some columns)
Table C (some columns)
Table B (some columns, FK to Table C)
Is there an option during the transformation stage or DDL generation that I am missing, or does this have to be a manual process after the DDL has been generated.
Thanks.