× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Do you truly want a list of expired spool files? Or simply want to delete
them?

DLTEXPSPLF command.

On Mon, Sep 17, 2018 at 1:25 PM, Sue Romano <slromano@xxxxxxxxxx> wrote:

We have an IBM i service to help you with this (2, actually).

This first one will examine ALL output queues on your system. It can take
a while to run.

select * from qsys2.output_queue_entries
where expiration_date < current date + 10 days;

The second option is to invoke the underlying table function directly,
passing the outq name. Since the expiration date is part of the detailed
information, you must pass YES for that input parameter.

select * from table (qsys2.output_queue_entries(outq_lib => 'MYOUTQLIB',
outq_name => 'MYOUTQ', detailed_info =>'YES')) x
where expiration_date < current date + 10 days;


Is there a way to get a list of the spool files that are currently
expired? Or the ones that will expire shortly?

We are on 7.2 and will soon implement some form of old SPLF removal.

Thanks.

~TA~


Sue Romano
Db2 for IBM i Development

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: http://amzn.to/2dEadiD





As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.