How best can I recreate an Oracle database?

前端 未结 3 1637
执念已碎
执念已碎 2021-01-21 02:09

Oracle 11gR2 (x86 Windows):

I have a db with 250 tables with indexes and constraints. I need to re-create these tables, indexes and constraints in a new db and load the

3条回答
  •  粉色の甜心
    2021-01-21 02:23

    SQL Developer can help with #1 by creating INSERT statements with a formatted query result:

    Select /*insert*/ * 
    from My_Table;
    

提交回复
热议问题