Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Help with query across schema in TOAD
Hi Wei,
You can prefix the table_name with the schema name as in schema.table.
You can also create a synonym that has the same name as the table name
in the other schema.
create or replace synonym <table> for <schema>.<table>
It's all in the manuals BTW.
Regards,
Eric.
zwasdl_at_gmail.com wrote:
> I'm new to TOAD for Oracle. How can I create a query which gets data
> from tables in different schema?
>
> Thanks,
>
> Wei
Received on Tue Oct 03 2006 - 03:32:17 CDT
![]() |
![]() |