I have got two db schemas with the same structure:
db1@machine1
db2@machine2
I want to copy certain records of a given criteria (e.g.
) of one table from db1@machine1 to db2@machine2.
How could I do that? I know you could use
to connect to another schema in SQL Plus, but not sure how that could be used to copy data from one schema to another. Do I need table aliases or something??
db1@machine1
db2@machine2
I want to copy certain records of a given criteria (e.g.
Code:
WHERE user_id=drkestrel and where record_id>99
How could I do that? I know you could use
Code:
connect