Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle Reports and NESTED TABLES

Status
Not open for further replies.

fragolita

Programmer
Aug 22, 2006
11
IT
Hi all!

Do you know why this query works perfectly in sqlplus and I get an error in Oracle Reports?

select t.doc_id
into num_memo
from jk_address_a ver,
table (select text
from jk_address_a v
where v.person_id = num_person
) t
where ver.person = num_p;

Thanks!
F.
 
This is PL/SQL, not SQL code, and you can not run it in the report query. If you run it in the program module (formula, procedure, etc.), please give the full text of the program block and the error message the compiler give.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top