Export database to text file containing DDL + DML?
433880Oct 4 2006 — edited Oct 6 2006In MySQL I can use mysqldump utility to dump a database to a text file. The file contains this sort of thing:
DROP TABLE aTable;
CREATE TABLE aTable(...);
INSERT INTO aTable(...) VALUES(...);
I've had a look around but it appears there is no equivalent in Oracle. The exp utility doesn't do it. Neither does SQLLoader. Is there really no Oracle equivalent of this basic, and useful, tool?