Most SQL developers know and use Narayana Vyas Kondreddi's sp_generate_inserts from http://vyaskn.tripod.com/code/generate_inserts.txt
Is there something similar for Oracle?
|
Most SQL developers know and use Narayana Vyas Kondreddi's Is there something similar for Oracle? |
|||
|
|
|
With Oracle comes the tool called SQL Developer, and this has the facility to generate insert scripts from table data. |
|||
|
|
|
if you wanted an package to do it all for you (while SQL Developer, TOAD, etc can all do it ad-hoc); but the closest thing to the sp_generate_inserts that I have seen is: "PL/SQL Interface Generator" http://sourceforge.net/projects/plsqlintgen/ after running the two scripts in the download all you have to do it:
and this will emit the Create SPEC/BODY for the CRUD for the inputted table (this does not create the package, it just stores the package script in the s variable as such: e.g.
Even if this doesn't completely fit your need, you ought to be able to extract the logic to your own means. (just a note, I am not affiliated with this project at all) |
|||
|
|