plsqldoc index file not complete

rspratley

Member
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?
 
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][TD]Author : Rui Marante Created : 2010-AGO-05 Purpose : pharmacy[/TD][/TR]
[TR][TD]

and this is line number 973 that I sent to generate, so the first 972 packages are not in the index.

I can send by mail the detail.
 
Can you send the file to support@allroundautomations.com with a little description of what is wrong?
 
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.
 
Back
Top