asked on
ASKER
SQL (Structured Query Language) is designed to be used in conjunction with relational database products as of a means of working with sets of data. SQL consists of data definition, data manipulation, and procedural elements. Its scope includes data insert, query, update and delete, schema creation and modification, and data access control.
TRUSTED BY
ASKER
Your statement returns an error - like all the ones I have tried! I am able to return the number of items in a library if I use the following:
SELECT COUNT(OBJNAME) NUMBER_OF_OBJECTS FROM TABLE(QSYS2.OBJECT_STATIST
But I want to ultimately have a statement I can run that will give me the library name and how many objects are in it.
Seems like this is an easy thing that shouldn't be this hard...