synapsevampire
Programmer
I'm hoping to populate a blank set of tables with data from a VERY large database with a few rows in each table to speed development against the database.
Assuming that there are no rules/constraints on the tables to prevent inserts from occuring in any order, can anyone point me in the directio to do this?
To simplify, I could perform an insert manually for the first few rows of a parent table, then pass to a SP the name of the parent table and the key to have it idenitfy the child tables and automatically perform inserts for those tables based on the key.
Ultimately I would prefer to just point at a database and state some limit to the rows to be populated and have to go do it all.
Are there any utilities that do this? Given the exellent reverse engineering tools out there, such as Embarcadero's ER Studio, the means for doing so is already in place, and I've had this sort of requirement many times, so others must as well.
Any thoughts?
Thanks,
-k
Assuming that there are no rules/constraints on the tables to prevent inserts from occuring in any order, can anyone point me in the directio to do this?
To simplify, I could perform an insert manually for the first few rows of a parent table, then pass to a SP the name of the parent table and the key to have it idenitfy the child tables and automatically perform inserts for those tables based on the key.
Ultimately I would prefer to just point at a database and state some limit to the rows to be populated and have to go do it all.
Are there any utilities that do this? Given the exellent reverse engineering tools out there, such as Embarcadero's ER Studio, the means for doing so is already in place, and I've had this sort of requirement many times, so others must as well.
Any thoughts?
Thanks,
-k