PrimaveraTard
MIS
Oracle beginner...
I have a script written that will transfer data from our production db to our test db to keep a mirror image of the production to test on. Looks like this.
INSERT INTO ORATESTDB.THIS_TABLE
SELECT *
FROM ORAAPP.THIS_TABLE;
This worked just fine until they decided to move the db to a new server. Now I need to know if I can do something similar to what I have above to move the data from the old production db to the new production db on a different server. If it's possible, I am then going to attempt to write a perl script to do the same thing so we can accomplish some of the dba stuff from the web. If you need more info. let me know, thanks.
I have a script written that will transfer data from our production db to our test db to keep a mirror image of the production to test on. Looks like this.
INSERT INTO ORATESTDB.THIS_TABLE
SELECT *
FROM ORAAPP.THIS_TABLE;
This worked just fine until they decided to move the db to a new server. Now I need to know if I can do something similar to what I have above to move the data from the old production db to the new production db on a different server. If it's possible, I am then going to attempt to write a perl script to do the same thing so we can accomplish some of the dba stuff from the web. If you need more info. let me know, thanks.