Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Synonyms and table partitions
No, but what you can do is create a view which names one partition, and create a synonym for the view.
create or replace view big_table_199912 as select * from big_table partition(p199912);
create public synonym big_table_199912 for big_table_199912;
--
Jonathan Lewis
Yet another Oracle-related web site: http://www.jlcomp.demon.co.uk
Kurt Johnson wrote in message ...
>Greetings:
>
>Is it possible to have a synonym on a table partition?
>
>Oracle 8.0.5.0.0
>
>T I A,
>
>Kurt
>
>
Received on Thu Jan 20 2000 - 17:55:08 CST
![]() |
![]() |