Question

How to call PLSQL functions inside the query of TimesTen database. When I am calling, it is giving such error

2818: Unknown function GET_COSTPRICE. If this is a PLSQL function note that such functions are not yet supported in SQL statements.

The command failed.

Was it helpful?

Solution

TimesTen just told you that's not possible:

note that such functions are not yet supported in SQL statements.

OTHER TIPS

You can call PLSQL only inside pl/sql blocks

BEGIN
  :res=GET_COSTPRICE()
END;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top