Is there a way to export a row from one table (production) and import it to another table (development). The need is for regression testing. I don't think the copy function is supported as it is in Oracle SQL*PLUS Release 8.0.6. This is what we need to do:
1 copy from wcc/prodpsw@prod -
2 to wcc/devpsw@dev -
3 insert claims -
4 using -
5 select * -
6 from claims -
7 where AGENCY_CLAIM_NUMBER IN -
8* (100366145)
1 copy from wcc/prodpsw@prod -
2 to wcc/devpsw@dev -
3 insert claims -
4 using -
5 select * -
6 from claims -
7 where AGENCY_CLAIM_NUMBER IN -
8* (100366145)