Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Hot to copy tables from one oracle user to another
In message <_n5Ca.183$%Y2.152_at_newssvr17.news.prodigy.com>, "Yuri
Weinstein (HotMail)" <yuriw_at_hotmail.com> writes
>and users are on different orcale servers?
>
connect user2/user2
create table mytable as select * from user1.table;
or if table is on a different database:
connect user2/user2_at_target
create [public] database link source.world connect to user1 identified
by user1 using source.world
create table mytable as select * from mytable_at_source.world
I'd check the syntax of the create database link command. I don't have the docs handy, and it's not something I do every day, so it might be out.
Adrian
-- Adrian Carlson-HedgesReceived on Thu Jul 17 2003 - 13:28:10 CDT
![]() |
![]() |