Re: [U2] I've run out of quotes

2010-06-18 Thread Rex Gozar
I haven't seen this one, so I thought I'd throw it in: * use ~ within the VAR instead of \ to code everything inline VAR = \mysql --user username -e LOAD DATA infile '/mnt/mount/FILE.TXT' REPLACE INTO TABLE database.updates FIELDS TERMINATED BY ',' LINES TERMINATED BY '~n' (Emailaddress,

[U2] Division Issues

2010-06-18 Thread Shawn Hayes
Hello, I ran into an issue when dividing 2 numbers.  I debugged through the first program and here is the result... TEST1:  27:      IF LOAD.VALUE THEN :: S TEST1:  28:          ANS = TOP.VALUE/BOTTOM.VALUE ::S ::TOP.VALUE/ NUMBER: 0.3 :: BOTTOM.VALUE/ NUMBER: 0.006554707 :: ANS/

Re: [U2] Division Issues

2010-06-18 Thread John Hester
Is it possible the value you're seeing in the debugger is from a prior loop iteration? I would try stepping through 1 or 2 more lines and rechecking the value of ANS. It's been my experience that the current line of source code reported by the debugger and the current line of object code

[U2] UV Windows SSH without telnet service

2010-06-18 Thread Steve McConnell
We have a user running on a Windows UniVerse server who has a security requirement which forbids running any telnet services. They want to use ssh to connect and have installed bitvise winsshd. It allows us to kick of a uvsh.exe upon authentication. We are able to login to our software or the

Re: [U2] UV Windows SSH without telnet service

2010-06-18 Thread Larry Hiscock
I've never run an sshd service on Windows, but we do it all the time on Linux. We usually shut telnet down completely. Terminal emulation should be identical between telnet and ssh. What terminal emulator / ssh client are you using? Larry Hiscock Western Computer Services -Original

Re: [U2] UV Windows SSH without telnet service

2010-06-18 Thread Bob Rasmussen
The most recent issue of Spectrum magazine detailed a process which I will summarize here: 1. Use PuTTY to establish an SSH session from Windows client to Windows server. 2. In Putty, open a local port forward, so that a particular socket on the client is forwarded to the server. 3. Run your

Re: [U2] UV Windows SSH without telnet service

2010-06-18 Thread Bill Haskett
AccuTerm is SSH enabled. You can use it to connect to the WinSSHD server then forward that, via telnet, to the UV server. HTH, Bill Steve McConnell said the following on 6/18/2010 4:45 PM: We have a user running on a