When issuing several DESC TABLE_NAME in succession, one cannot tell which DESC output pertains to which table.
Add a both table & column comments. Verify they're present in the SQL DDL.
COMMENT ON COLUMN "NEO"."AQM_TYP"."FK_STR" IS 'The data type';
COMMENT ON TABLE "NEO"."AQM_TYP" IS 'Use case input Data Types for Bag.Pair';
Execute the command: desc AQM_TYP;
Name Null? Type
------ -------- ---------
PK_TYP NOT NULL NUMBER(9)
FK_STR NUMBER(9)
Neither table name, pr column comments printed.
Please consider adding the COMMENT attributes in the output.