Re: [U2] [Fwd: Re: FW: Running total from UniData dict]

2009-07-24 Thread Kebbon Irwin
I found that you had to take two steps, first an SSELECT to establish your order, followed by a LIST (or a sort with the same criteria, but it's unnecessary in Unidata, even using break-ons and det.supp's). I was able to get my daily summary of order values with running totals. LIST ORDERS

Re: [U2] Running total from UniData

2009-07-24 Thread Bill Haskett
Thanks, Kebbon. Why didn't I think about that?! Welcome to UD, where stupid things trip me up every day. :-) Bill Kebbon Irwin said the following on 7/24/2009 4:53 AM: I found that you had to take two steps, first an

[U2] 386 Conversion

2009-07-24 Thread Results
All, This is likely to go nowhere, as the client is cash constrained, but I have to ask... I have a client still running a 386 Pick implementation. The system died. The closest thing I have is a 486, but I don't believe I can simply put the harddrive in a 486 and get Pick to boot. (If

Re: [U2] 386 Conversion

2009-07-24 Thread Henry Unger
I can't imagine why it wouldn't boot on a 486DX. Worth a try. Best regards, Henry Henry P. Unger Hitech Systems, Inc. http://www.hitech.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Results Sent: Friday,

Re: [U2] 386 Conversion

2009-07-24 Thread Glen Batchelor
Chuck, I agree with Henry. I don't see why the math-coprocessor would affect the instruction set since it's backwards compat to i386. I have an original set of AP/Pro 6.1.15 floppies but I'm missing system disk #1 so that may be worthless. I have PicLAN though! Disk #1 is probably around here

[U2] [UD] Logoff on Telnet Disconnect

2009-07-24 Thread Kevin King
Is there any UDT option that causes a Unidata (7.1.16) session to be dropped when the telnet session is inadvertently disconnected? Barring that, when a telnet session is inadvertently disconnected is there a reliable way (AIX 5) to determine that a session has or does not have a telnet client

Re: [U2] [UD] Logoff on Telnet Disconnect

2009-07-24 Thread Dave Laansma
I have a script that I run periodically does this. Here are the critical elements of said script: if ! /dev/${devn} 2/dev/null 1/dev/null then /usr/udthome/bin/stopudt ${proid} fi ${devn} is derived earlier in the script from the 'listuser' command. Basically, if there is a pts in the

Re: [U2] [UD] Logoff on Telnet Disconnect

2009-07-24 Thread Dave Laansma
Sorry, the ${prodid} is the process id, also obtained from the same 'listuser' command. David Laansma IT Manager Hubbard Supply Co. Direct: 810-342-7143 Office:810-234-8681 Fax: 810-234-6142 www.hubbardsupply.com Delivering Products, Services, and Innovative Solutions -Original

Re: [U2] 386 Conversion

2009-07-24 Thread Results
Glen Henry, I'll give the 486 a try. Thank you both. With any luck, I'll plug the drive into the 'new' 486 and they'll be back in business. I'll keep you posted. - Chuck ___ U2-Users mailing list U2-Users@listserver.u2ug.org

Re: [U2] [UD] Logoff on Telnet Disconnect

2009-07-24 Thread Bob Rasmussen
On Fri, 24 Jul 2009, Kevin King wrote: Is there any UDT option that causes a Unidata (7.1.16) session to be dropped when the telnet session is inadvertently disconnected? Barring that, when a telnet session is inadvertently disconnected is there a reliable way (AIX 5) to determine that a

Re: [U2] [UD] Logoff on Telnet Disconnect

2009-07-24 Thread Jeff Powell
I just tried this on a session that the computer was suspended on and it thought the session was alive. I also did this to a non-existent tty (/dev/pts/7a) it also thought it was alive. if ! /dev/pts/7a; then echo dead; else echo alive; fi alive Does the /dev/pts/?? set the $? return value?

Re: [U2] 386 Conversion

2009-07-24 Thread Dave Taylor
Chuck, You didn't mention backup: eg 3.5 floppy? That removes any issues with re-installing the hard drive in a different hardware environment. And, I didn't see any mention of Pick flavor - eg: R83, AP or AP/Pro. If its R83, it will probably restore onto mvBase very nicely, and then on to

Re: [U2] [UD] Logoff on Telnet Disconnect

2009-07-24 Thread Dave Laansma
Good question. I am not sure. I would assume it does. Try it on what you know to be a non-existent pts. David Laansma IT Manager Hubbard Supply Co. Direct: 810-342-7143 Office:810-234-8681 Fax: 810-234-6142 www.hubbardsupply.com Delivering Products, Services, and Innovative Solutions

[U2] Error 4 22 from PHP exec of uv on AIX

2009-07-24 Thread Ross Morrissey
This is a bit of a stumper (for me, anyway). I'm having issues trying to exec uv from PHP on AIX. Things work just fine in Windows (Apache or IIS) or Linux (Apache) so I know my PHP syntax is fine. On the AIX (5.2 uv 10.2.7) box: Using PHP, I can exec 'echo 1 + 2 | bc' and get 3 I can run this

[U2] AUTO: Mark Shannon/Australia/IBM is out of the office. (returning 04/08/2009)

2009-07-24 Thread Mark Shannon
I am out of the office until 04/08/2009. Note: This is an automated response to your message U2-Users Digest, Vol 3, Issue 21 sent on 25/7/09 5:00:03. This is the only notification you will receive while this person is away. ___ U2-Users mailing

Re: [U2] Error 4 22 from PHP exec of uv on AIX

2009-07-24 Thread Henry Unger
Permissions, perhaps? Running it using syscalls might provide some clues. Best regards, Henry Henry P. Unger Hitech Systems, Inc. http://www.hitech.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Ross