For test/development I need to (repeatedly, e.g. daily) create a portable (partial) copy of an oracle database using SQLite.
By "copy" I mean: table structure and a subset of the data. No indexes, triggers or all the other goodness ..
In order to save on bandwidth and local storage, I'd like to be able to pass table names and data restricting conditions for each table.
Does such a tool exist or am I better off writing my own?
EDIT: I've written my own by now, it's a typical QDH (Quick, Dirty Hack) .. I shudder when I consider who will have to bugfix in the future ..