What is the best way to copy schema from one user/instance/server:
jdbc:oracle:thin:@deeb02:1535:DH, user pov
to another user/instance/serv
Use oracle exp utility to take a dump of the schema from the first database
exp
exp user1/pass1@db1 owner=user1 file=user1.dmp log=user1.log
Then use imp utility to populate the other schema in the other datbase
imp
imp user2/pass2@db2 fromuser=user1 touser=user2 file=user1.dmp log=user2.log