Hi Aldrin,
Below are some queries that might help.  You can easily get the total count of spooled files using SQL.  If the number is quite high and you need to investigate further, I provided additional queries for retrieving a count per user, per job, etc.
--total count of spooled files in the system
select count(1) from table (qsys2.spooled_file_info(user_name => '*ALL'));
--count per job name
select distinct job_name, count(1) from table (qsys2.spooled_file_info(user_name => '*ALL')) group by job_name order by 2 desc;
--count per user profile
select distinct job_user, count(1) from table (qsys2.spooled_file_info(user_name => '*ALL')) group by job_user order by 2 desc;
--count per output queue
select distinct output_queue_library, output_queue, count(1) from table (qsys2.spooled_file_info(user_name => '*ALL')) group by output_queue_library, output_queue order by 3 desc;
--count per date
select distinct creation_timestamp, count(1) from table (qsys2.spooled_file_info(user_name => '*ALL')) group by creation_timestamp order by creation_timestamp desc;