我有一个Postgres 9.1表 plines ,其中bytea字段形状。
记录数约为500000.
将来自Postgres的bytea数据 plines.shape 复制到Oracle 10g表 olines 的字段 shape 的最佳方法是什么?
提前谢谢你,ysa
答案 0 :(得分:1)
我用Java创建一个程序,它将同时连接到PostgreSQL(使用JDBC PostgreSQL driver)和Oracle(使用Oracle Instant Client),然后从Postgres读取一行,将此行放到Oracle表中,重复。
这会更容易the other way around ...; - )