But do you think that might be a limit to the number of packages in the index?
As far as I have been able to check it generates the PLSQL DOC from the packages but the index is not complete and it seems that from a point it starts "deleting" the first entries of the index.
Don't know if it helps.
I don't know how to attach a file but if I open the index file at the beginning of the generation it is correct but at the end it only has the last hundred packages that were generated, not the first thousand.
It starts on:
DEV261 ALERT_PHARMACY_TR.pk_pha_filter
[/TD]Author : Rui Marante...
I am trying to generate 1700 packages from 8 different schemas with the following code:
SELECT 'plugin plsqldoc generate ' || do.owner || '.' || do.object_name
FROM dba_objects do
WHERE do.object_type = 'PACKAGE'
AND do.owner LIKE '%';
Afterwards I use the result and in a command window...