insurancereports
Programmer
Hello all,
I am trying to query against a tale that has many (hundreds) of partitions (Oracle 9i).
The usual way to query against a table with partitions is usually:
select * from table1 partition part_one;
But, I need to query the hundreds of partitions, around 50 at a time. Is there anyway that I could speed up the querying without having to write unions?
i.e.
select* from table1 partition part_one
union all
select * from table1 partition part_two;
thank you,
AM
I am trying to query against a tale that has many (hundreds) of partitions (Oracle 9i).
The usual way to query against a table with partitions is usually:
select * from table1 partition part_one;
But, I need to query the hundreds of partitions, around 50 at a time. Is there anyway that I could speed up the querying without having to write unions?
i.e.
select* from table1 partition part_one
union all
select * from table1 partition part_two;
thank you,
AM