0

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.

Community
  • 1
  • 1
Dyapa Srikanth
  • 1,231
  • 2
  • 22
  • 60

2 Answers2

0

TimesTen just told you that's not possible:

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

Sathyajith Bhat
  • 21,321
  • 22
  • 95
  • 134
0

You can call PLSQL only inside pl/sql blocks

BEGIN
  :res=GET_COSTPRICE()
END;
vromanov
  • 881
  • 6
  • 11