A table in Oracle Database 11g contains the sequences and triggers if we are to use auto-increment fields.
I'm using the Oracle SQL Developer and couldn't find a solid way to create a consolidated table creation script.
Is it possible to create a consolidated DDL script with the below artefacts for a given table :
- Table creation
- Sequences
- Triggers
- Foreign keys
- Primary keys
CREATE SEQUENCE ...,CREATE TABLE ...,ALTER TABLE ... ADD CONSTRAINT ...thenCREATE TRIGGER ...?).