in reply to Looking for a tool to print ORACLE schema as set of text or HTML pages.

Can't you just give the DB an SQL query and let it tell you? E.g.,

DESCRIBE tablename

...or, depending on the flavor of SQL used by the DB...

DESCRIBE SELECT * FROM tablename

and then print/format/munge/whatever the result?