Kbase 17933: Error 1439 Occurs if qt_no_lookahead Option is Set
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/15/2004 |
|
Status: Unverified
FACT(s) (Environment):
Oracle DataServer
SYMPTOM(s):
View of more than one table is not supported. (1439)
Error 1439 is encountered when an ORACLE Data Dictionay view is queried.
CAUSE:
The error occurs when the NO-LOOKAHEAD option is used. This option can be turned on by using the QUERY-TUNING option or the -Dsrv qt_no_lookahead switch.
FIX:
Add the option QUERY-TUNING(LOOKAHEAD) within 4GL statement
FOR EACH all_users QUERY-TUNING(LOOKAHEAD):
DISPLAY all_users.
END.