× 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.



Hey Rob,

I'm wondering why you want to combine the two.

I run an SQL to delete spooled files but not while I display the list.

I saw an article that had the following code to delete spooled files over
90 days:

BEGIN

DECLARE @CMD VARCHAR(2048) NOT NULL DEFAULT '';

FOR V1 AS C1 CURSOR FOR

SELECT JOB_NAME, SPOOLED_FILE_NAME, FILE_NUMBER

FROM QSYS2.OUTPUT_QUEUE_ENTRIES

WHERE CURRENT_TIMESTAMP - *90* DAYS > CREATE_TIMESTAMP

DO

SET @CMD='DLTSPLF FILE('||SPOOLED_FILE_NAME||

') JOB('||JOB_NAME||

') SPLNBR('||FILE_NUMBER||')';

CALL QSYS2.QCMDEXC (@CMD);

END FOR;

END





Yours truly,

Glenn Gundermann
Email: glenn.gundermann@xxxxxxxxx
Work: (905) 486-1162 x 239
Cell: (416) 317-3144


On 29 March 2017 at 10:46, Rob Berendt <rob@xxxxxxxxx> wrote:

We have a no holds barred policy when it comes to spool files. We delete
everything over 90 days old. No exceptions.

Want to get really funky? Create your own QCMDEXC function. Sure, IBM
already supplies a QCMDEXC stored procedure but here's why you may want a
function.

Keeping this in mind
DLTSPLF FILE(FILE) JOB(JOBNBR/JOBUSER/JOBNAME) SPLNBR(SPLNBR)
And keeping this in mind
SELECT CREATE_TIMESTAMP, SPOOLED_FILE_NAME, JOB_NAME, FILE_NUMBER, SIZE,
TOTAL_PAGES
FROM QSYS2.OUTPUT_QUEUE_ENTRIES
WHERE DAYS(CURRENT_TIMESTAMP) - DAYS(CREATE_TIMESTAMP)>90
ORDER BY CREATE_TIMESTAMP;

Now you can combine the two. First, in test mode:
This only shows you the command you would run.

SELECT CREATE_TIMESTAMP, SPOOLED_FILE_NAME, JOB_NAME, FILE_NUMBER, SIZE,
TOTAL_PAGES,
'DLTSPLF FILE(' concat SPOOLED_FILE_NAME concat ') JOB(' concat JOB_NAME
concat
') SPLNBR(' concat FILE_NUMBER concat ')'
FROM QSYS2.OUTPUT_QUEUE_ENTRIES
WHERE DAYS(CURRENT_TIMESTAMP) - DAYS(CREATE_TIMESTAMP)>90
ORDER BY CREATE_TIMESTAMP;

Then in live mode. This still shows the command but since we've added the
qcmdexc around it the command will actually execute.

SELECT CREATE_TIMESTAMP, SPOOLED_FILE_NAME, JOB_NAME, FILE_NUMBER, SIZE,
TOTAL_PAGES,
routines.qcmdexc('DLTSPLF FILE(' concat SPOOLED_FILE_NAME concat ') JOB('
concat
JOB_NAME concat ') SPLNBR(' concat FILE_NUMBER concat ')')
FROM QSYS2.OUTPUT_QUEUE_ENTRIES
WHERE DAYS(CURRENT_TIMESTAMP) - DAYS(CREATE_TIMESTAMP)>90
ORDER BY CREATE_TIMESTAMP;

Anomaly: Always include an ORDER BY to ensure that the command executes
throughout the data selection. Otherwise you'll get someone who doesn't
roll down through the screen.

And now you will no longer get results in:
SELECT CREATE_TIMESTAMP, SPOOLED_FILE_NAME, JOB_NAME, FILE_NUMBER, SIZE,
TOTAL_PAGES
FROM QSYS2.OUTPUT_QUEUE_ENTRIES
WHERE DAYS(CURRENT_TIMESTAMP) - DAYS(CREATE_TIMESTAMP)>90
ORDER BY CREATE_TIMESTAMP;
as they have all been deleted.



How to create one:
Paste this into Run SQL Scripts.
We have a library called ROUTINES.

SET PATH *LIBL ;

CREATE FUNCTION ROUTINES.QCMDEXC (
CMD VARCHAR(32702) )
RETURNS CHAR(256)
LANGUAGE SQL
SPECIFIC ROUTINES.QCMDEXC
NOT DETERMINISTIC
MODIFIES SQL DATA
CALLED ON NULL INPUT
NOT FENCED
SET OPTION ALWBLK = *ALLREAD ,
ALWCPYDTA = *YES ,
COMMIT = *NONE ,
DECRESULT = (31, 31, 00) ,
DFTRDBCOL = *NONE ,
DLYPRP = *NO ,
DYNDFTCOL = *NO ,
DYNUSRPRF = *USER ,
RDBCNNMTH = *RUW ,
SRTSEQ = *HEX
BEGIN DECLARE RETCMD CHAR ( 256 ) ; DECLARE SQLCODE INTEGER ;
DECLARE CONTINUE HANDLER FOR SQLEXCEPTION BEGIN SET RETCMD = 'ERROR
SQLCODE=' || TRIM ( CAST ( SQLCODE AS CHAR ( 10 ) ) ) || ' ' || CMD ; END
; BEGIN DECLARE CMDLEN DEC ( 15 , 5 ) ; SET RETCMD = CMD ; SET CMDLEN =
LENGTH ( TRIM ( CMD ) ) ; CALL QCMDEXC ( CMD , CMDLEN ) ; END ; RETURN (
RETCMD ) ; END ;

GRANT ALTER , EXECUTE
ON SPECIFIC FUNCTION ROUTINES.QCMDEXC
TO ROB ;





Rob Berendt
--
IBM Certified System Administrator - IBM i 6.1
Group Dekko
Dept 1600
Mail to: 2505 Dekko Drive
Garrett, IN 46738
Ship to: Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com

--
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: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://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 ...

Follow-Ups:
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.