plsql - Exporting rows in Oracle -
i need export number of rows (from different tables- ie, related information entity - eg: customer) db in oracle. how this? using windows os. please help. thank all, pradeep
while connected database 1 create database link database 2 (if have rights - there no assumptions on this) , insert tables selecting link e.g. this
create database link foo connect <user> identified <password> using '<connect string>'; select * table1@foo;
further information:
a database link connection between 2 physical database servers allows client access them 1 logical database.
see dabtabase links @ oracle database administrator's guide.
Comments
Post a Comment