sofiagomes
IS-IT--Management
I'm trying to define in a stored procedure a cursor to bring data at a specified partition (given by a parameter).
The problem is that I get ORA-02149: Specified partition does not exist, and that's the same partition name I use in the next statement:
>SELECT *
>FROM postps_successful_calls
>partition(D0703)
>WHERE
>tariff=3;
Anyone know how to do it?
Do I have to do it with dynamic sql?
Thanks
The problem is that I get ORA-02149: Specified partition does not exist, and that's the same partition name I use in the next statement:
>SELECT *
>FROM postps_successful_calls
>partition(D0703)
>WHERE
>tariff=3;
Anyone know how to do it?
Do I have to do it with dynamic sql?
Thanks