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 I generate them all.
All the packages doc is generated but the index file misses the first lines, so I assume that there is a limit about the number of packages it can contain.
Am I doing something wrong?
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 I generate them all.
All the packages doc is generated but the index file misses the first lines, so I assume that there is a limit about the number of packages it can contain.
Am I doing something wrong?