Question
Oracles table Partitions
I have to create an app that front ends a database of network
events. Users access this by time parameters. I take those
parameters and determine the correct oracle partition to go to (for
query speed purposes)., There are about 20 million rows in this
database. I cant do anything without being able to specify
partition. CF does not seem to work with the following:
select *
from reporting_db partition (p200901)
It does not seem to recognize "partition" as a keyword. And I need it to recognize the entire "partition (p200901)" as valid oracle sql. What am I missing?
select *
from reporting_db partition (p200901)
It does not seem to recognize "partition" as a keyword. And I need it to recognize the entire "partition (p200901)" as valid oracle sql. What am I missing?