
|
If you were logged in you would be able to see more operations.
|
|
|
|
If I want to run a query from a SP with limiting the result-set or with joining other tables, I have to run the query by client or in another SP. But I can' create a view using the SP:
Like:
create view MY_VIEW ( "FIELD_1" )
as
select MY_PROCEDURE."FIELD_1"
from MY_PROCEDURE('...')
|
|
Description
|
If I want to run a query from a SP with limiting the result-set or with joining other tables, I have to run the query by client or in another SP. But I can' create a view using the SP:
Like:
create view MY_VIEW ( "FIELD_1" )
as
select MY_PROCEDURE."FIELD_1"
from MY_PROCEDURE('...')
|
Show » |
|
I will use it for translating updates in deletes or inserts in some cases.