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


  • Subject: Re: File lock problem
  • From: Scott Klement <klemscot@xxxxxxxxxxxx>
  • Date: Wed, 3 Jan 2001 00:52:37 -0600 (CST)



On Tue, 2 Jan 2001, Jim Langston wrote:

> Okay, this is my scenario:
> 
> I have a file being sent to me automatically every day through RJE.
> This file is being sent from one of our customers, and I don't want
> to have to get my customer involved in this.  
> 
> What I am wanting to do is as soon as I receive this file I want to
> send it to another one of our AS/400s.  This file will be processed
> on both AS/400s, different information.
> 
> I know I can create a never ending job that will check the last member
> of the file and compare it against a data queue, and if the file member
> is different than the last one received (which would probably be *blanks)
> I would then try to allocate the file until I could, once I could allocate
> it I would send it to my other AS/400 then do some cleanup (copy it to 
> another file name maybe, or just update the data area with the last member
> received).
> 
> I really don't want to do this, however, as this never ending job is going
> to be eating up CPU cycles checking for the presence of a new member.  And
> yes, I understand it won't be that much CPU, but I would rather it was nothing
> until such time as the file was actually received.  Which is where my idea
> of a *insert trigger came from, but then how do I know when the file is 
>finished
> being written and is safe to send?
> 

So why not combine your two ideas:

1) Have an insert trigger that does nothing more than throw an entry onto
          data queue.
2) Have a never ending program that waits for entries on the data queue,
          not consuming any CPU until it gets an entry.
3) When the NEP gets a new data queue entry, it does an ALCOBJ, waiting
          for the member to become available, then copies it.

You'd need some extra code to look for duplicate records on the data queue
(for example, when a new member is added with more than one record, the
insert trigger will fire for every record) but this shouldn't be too hard
to surmount...  especially if the never ending program can have a database
that keeps track of what it has and hasn't already sent...  you could even
use an API to get the date/time that the member was added to the PF if the
member name isn't unique...

You get the idea....


+---
| This is the Midrange System Mailing List!
| To submit a new message, send your mail to MIDRANGE-L@midrange.com.
| To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
| To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---

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.