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



On Mon, 6 Feb 2012 09:10:28 -0500
Jeff Young <jyoung0950@xxxxxxxxx> wrote:
All,
Is there any way to automaticaly start a job based on when a file is placed
in a directory on the IFS?
I have a client that will be uploading a file from an external system (MS
SQL Server) and they would like to have a batch job startup on the i when
the file is uploaded.
I know that I can have a program monitor the directory by reading the
directory and when the file is present, fire off the batch job, but is
there an easier method? If not, how can I determine that the file upload
has completed before I start the batch job?

All suggestions will be appreciated.

Thanks,


--
Jeff Young
Sr. Programmer Analyst
--
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.


Consider such QSHELL script
(for example, with path /home/Jeff/filemonitor.sh)

# BEGIN SCRIPT
#This job sleeps 10 seconds.
#After sleeping it checks existence of IFS file
# "file-with-my-name"
# Job starts when this file exists.
# Before job start, we rename this file
# to "file-with-new-name"
# to prevent our job to start twice with a single file.
# The job must react to file with new name, and remove it
# when possible.

while [[ 0 -lt 1 ]] #Loop forever
do
if [ -e "file-with-my-name" ]
then
mv "file-with-my-name" "file-with-new-name"
#start job with your favorite program in your specefic environment
system "SBMJOB CMD(...) JOB(...)"
echo 'Job Started'
else
echo 'Job Not Started'
fi
sleep 10
done

#END SCRIPT

To start this monitor with name MYMONITOR

SBMJOB CMD(QSH CMD('sh /home/Jeff/filemonitor.sh')) JOB(MYMONTOR)

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.