Try dumping the objects to a file the review with a query.
DSPOBJD OBJ(*ALL/*ALL) OBJTYPE(*LIB) OUTPUT(*OUTFILE) OUTFILE(QTEMP/LIBS)
The created by user field is ODCRTU
Last Wiki Answer Submitted: April 23, 2012 3:28 pm by ToddN20004,115 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
This command will create a much smaller list. Just use query or SQL to select the libs for a specific owner after the command complete.
DSPOBJD OBJ(QSYS/*ALL) OBJTYPE(*LIB) OUTFILE(QTEMP/LIBLIST)This command will create a much smaller list.
The two lists better be the same size. However, limiting the search space to QSYS could give a faster result.
Tom
Thank you ToddN2000
Thank You All