avatar
i*t
1
If I open two oracle accounts and want to copy the tables from one account to
the other account, what should I do? Thanks!
avatar
b*a
2
My two cents:
You can create synonyms or grant read pemissions if you just need the same set
of data.
If you just want to copy the data one time and change them separately down the
road.
Inside one database, try following
For account B, run
create table T1 as select * from A.T1;
create table T2 as select * from A.T2;
... ...
Across different databases, use sqlplus COPY command
COPY FROM SCOTT/[email protected]
INSERT T1 -
USING SELECT * FROM T1
... ...

to

【在 i*****t 的大作中提到】
: If I open two oracle accounts and want to copy the tables from one account to
: the other account, what should I do? Thanks!

avatar
s*d
3
Use the imp/exp
If u dont mind also copy other objects :
exp .. owner=user1 ...
imp .. fromuser=user1 touser=user2 ..
If u want tables only:
exp .. tables=t1,t2,.. ..
imp .. tables=t1,t2,... ..
good luck

to

【在 i*****t 的大作中提到】
: If I open two oracle accounts and want to copy the tables from one account to
: the other account, what should I do? Thanks!

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。