Re: [U2] Universe Phantom

2007-06-27 Thread john reid
processes when it is their time. Thanks, David A. Green DAG Consulting -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Ward Sent: Tuesday, June 26, 2007 12:20 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom These are all good

Re: [U2] Universe Phantom

2007-06-27 Thread MAJ Programming
You may want to look at D3's Background(s) processor. Sorta does the same thing. Mark Johnson - Original Message - From: john reid [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Wednesday, June 27, 2007 8:31 AM Subject: Re: [U2] Universe Phantom Great minds Although I

RE: [U2] Universe Phantom

2007-06-26 Thread Kryka, Richard
Is it possible to issue a phantom from OS? I have several jobs that are run through the Windows scheduler. Simply set up a batch file, and schedule the job to execute the batch file. Sample batch file: echo start UniVerse End Of Day job cd IBM\uv bin\uvsh.exe RUN UVSOURCE END.OF.DAY

RE: [U2] Universe Phantom

2007-06-26 Thread Jerry Banker
of business. What's that worth to you? -Original Message- From: Kryka, Richard [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 1:57 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom Is it possible to issue a phantom from OS? I have several jobs that are run

RE: [U2] Universe Phantom

2007-06-26 Thread David Ward
remember it). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kryka, Richard Sent: Tuesday, June 26, 2007 1:57 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom Is it possible to issue a phantom from OS? I have several jobs

RE: [U2] Universe Phantom

2007-06-26 Thread Kryka, Richard
These are all good suggestions, but the issue is I cannot tell if the job failed due to an out of licenses condition. I concur with prior respondents - if it is mission-critical, buy more licenses. The issue for me (and anyone who knows more can correct me) is that you are allowed 10 sessions

RE: [U2] Universe Phantom

2007-06-26 Thread Tony Gravagno
David Ward wrote: Hello, Is it possible to issue a phantom from OS? I have an automatic process that runs at various intervals, but we are low on licenses so sometimes the process fails. I'm on Windows Universe 10.2 This is a slightly different approach to your inquiry: I wrote MVExec to

RE: [U2] Universe Phantom

2007-06-26 Thread David Ward
Thanks Tony, but I think if I resolve the device license issue, that will resolve the issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tony Gravagno Sent: Tuesday, June 26, 2007 3:03 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe

RE: [U2] Universe Phantom

2007-06-26 Thread David A. Green
: Tuesday, June 26, 2007 12:20 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom These are all good suggestions, but the issue is I cannot tell if the job failed due to an out of licenses condition. In the old days it was easy, if the process was not attached to a terminal device

RE: [U2] Universe Phantom

2007-06-26 Thread Mark Eastwood
Assuming your licensing is correct...What are you using to connect? You must use one of IBM's telnet clients; Dynamic Connect, Wintegrate, SB client. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Ward Thanks Dave, but I still

RE: [U2] Universe Phantom

2007-06-26 Thread David Ward
Ah, that must be it then. I was just using windows telnet. Thanks Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Eastwood Sent: Tuesday, June 26, 2007 5:31 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom Assuming your

RE: [U2] Universe Phantom

2007-06-26 Thread Lloyd Cottrell
Ive been thru all this before, there are three type of licenses you get from ibm, server , small business( not sure if that is the right name, but only allows up 33 users) and enterprise. If you have the server version, you only get a one to one license, every connection uses a license. The other

RE: [U2] Universe Phantom

2007-06-26 Thread David Ward
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David A. Green Sent: Tuesday, June 26, 2007 4:42 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom David, What I did was to write a Master Scheduler Program that runs as a phantom and phantoms off

RE: [U2] Universe Phantom

2007-06-26 Thread David Ward
It would seems that my version supports it as the input allows it to be set to 10. Actually, when the license was originally setup, there was a notification that the device license was lower than allowed (e.g 0). The tech support rep said that device licensing was supported on my version, but if

RE: [U2] Universe Phantom

2007-06-26 Thread Bill Haskett
: RE: [U2] Universe Phantom Thanks Dave, but I still think getting device licensing working is the way to go (maybe). I've reinstalled my license on the test system, but I can still only telnet up to the user count, rather than the device count. Has anyone else experienced this issue on UV10.2.0

RE: [U2] Universe Phantom

2007-06-26 Thread David Ward
be. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett Sent: Tuesday, June 26, 2007 8:25 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Universe Phantom David: Device licensing is an extra cost on U2 Server edition. It's free on Workgroup (less than

RE: [U2] Universe Phantom Problem

2004-07-23 Thread Ross Ferris
-Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of djordan Sent: Friday, 23 July 2004 8:19 AM To: [EMAIL PROTECTED] Subject: RE: [U2] Universe Phantom Problem I would say that the file B is still being read by the C program or has not been released

RE: [U2] Universe Phantom Problem

2004-07-23 Thread Ray Wurlod
Look up error codes in the SYS.MESSAGE file. This has six digit keys. LIST SYS.MESSAGE '040019' or SELECT * FROM SYS.MESSAGE WHERE @ID = '040119'; If it's not there, the next best choice is, for connectivity questions, the InterCall manual. --- u2-users mailing list [EMAIL PROTECTED] To

RE: [U2] Universe Phantom Problem

2004-07-23 Thread Brian Leach
As David said, you get this if the C program has the file open. Another work around is to use the ON ERROR clause for the write: WrittenOk = @True Loop Write TheItem On FL, TheId ON ERROR WrittenOk = @False Until WrittenOk Do Nap 10 Repeat Brian -Original Message- From: [EMAIL

RE: [U2] Universe Phantom Problem

2004-07-22 Thread djordan
I would say that the file B is still being read by the C program or has not been released. Check if the file is locked before you try to write using a READL or READU. If you don't use the locked clause it will wait until the C program releases File B. Also consider looking at new features of