Hi,
dbexport is not the right tool, dbschema is the right one:
dbschema -d databasename outfile.sql:
you'll get the schema of all the tables of the named database ( including indexes and constraints ), written the file named outfile.sql
dbschema -d databasename -t tabename outfile.sql:
you'll get the named table schema ( including indexes and constraints ), written the file named outfile.sql
No need to be a guru for this :-)
Eric