I can not edit spec&body a package that includes report more than 6000 rows.
After some search, I found I can do:
"C:\Program Files (x86)\PLSQL Developer 13\plsqldev.exe" DebugSQL
then retry editing package, I have debut.txt in path given below:
C:\Users\AppData\Roaming\PLSQL Developer 13
finally I found in that file
select text from sys.all_source
where owner = 'MY_SCHEMA'
and name = 'PCK_REPORT'
and type = 'PACKAGE BODY'
and origin_con_id in (1, sys_context('userenv', 'con_id'))
order by line
when I run this query in sql window after I click "fetch last page", it freezes after 6000 rows.
Question is how can I set this limit, where is it in preferences?
After some search, I found I can do:
"C:\Program Files (x86)\PLSQL Developer 13\plsqldev.exe" DebugSQL
then retry editing package, I have debut.txt in path given below:
C:\Users\AppData\Roaming\PLSQL Developer 13
finally I found in that file
select text from sys.all_source
where owner = 'MY_SCHEMA'
and name = 'PCK_REPORT'
and type = 'PACKAGE BODY'
and origin_con_id in (1, sys_context('userenv', 'con_id'))
order by line
when I run this query in sql window after I click "fetch last page", it freezes after 6000 rows.
Question is how can I set this limit, where is it in preferences?