[U2] Need help with GCI system

2008-11-05 Thread Bob Little
I'm attempting to use the GCI system and I'm having trouble getting it to work. I'm working on Windows Server 2003 and UV10.2 Here's what I've done : Create a small function in C: int getSum(int, int) Compile the function and create a lib from the object file. Copy the lib over to UV/gcidir Login

Re: [U2] Antivirus and UV

2008-11-05 Thread Karl Pearson
I run ClamAV which is in the repositories for my Fedora server. It's free, and very effective, plus quite fast. But, if your Redhat server isn't accepting email, etc. why would you want a virus checker on it? Just wondering... Karl On Wed, November 5, 2008 1:53 pm, jpb-u2ug wrote: > Does anyone

RE: [U2] Normal SELECT behavior? [UD]

2008-11-05 Thread Keith Johnson [DATACOM]
LIST POH F1 WITH F1 = "000700" will do a numeric comparison if it can. You can force a string comparison by using LIST POH F1 WITH F1 LIKE "'000700'" That is; double quote, single quote, zero, zero, zero, seven, zero, zero, single quote, double quote. Regards, Keith --- u2-users mailing li

Re: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread Drew William Henderson
You can use find and look for .sh_history files older than 90 days. HTH Drew On Nov 5, 2008, at 5:10 PM, "George Gallen" <[EMAIL PROTECTED]> wrote: > What if you create a directory (not in /tmp, because it gets cleared > every > so often as well). And place in the login script (/etc/profile), a

Re: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread Scott Ballinger
Typically last month's wtmp is archived as wtmp.1. You can use the "last -f /var/log/wtmp.1" option to view the non-default wtmp file. How many wtmp files are archived is controlled by /etc/logrotate.conf; try man logrotate for more info. /Scott Ballinger Pareto Corporation Edmonds WA USA 206 713

RE: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread George Gallen
What if you create a directory (not in /tmp, because it gets cleared every so often as well). And place in the login script (/etc/profile), a touch command (touch /dirctory/`id -un`) using the user login name in that directory. This way, if you sort the directory (ls -lat) you will get a latest

[U2] Antivirus and UV

2008-11-05 Thread jpb-u2ug
Does anyone know if we would have a problem with antivirus software, specifically Symantec EndPoint 11, running UniVerse 10.1.12 on Red Hat Linux AS3? Jerry Banker Senior Programmer Analyst IBM Certified Solutions Expert --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscrib

RE: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread jpb-u2ug
The problem with last is that the file it uses for logging the users "wtmp" is usually cleared every month, at least on Red Hat. What I do is create a text file from the output of the last command at the end of each month and import the results into the database. That way I have the start and stop

RE: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread Baakkonen, Rodney A (Rod) 46K
If you have UNIX accounting on the machine, the 'last' command may provide some help. Otherwise I think it will have to come from something written into you Unidata applications. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lunt, Bruce Sent: Wednesday,

Re: [U2] A-correlative explanation

2008-11-05 Thread asvin . dattani
Perhaps: IF 0 > ATT5 OR ATT6 <> '' THEN ATT5 ELSE 0 because I believe the correlative can be read as: ((C0 > 5) OR ("" <> 6) + C0) * 5 and to think that I actually used to enjoy reverse polish once upon a time... [EMAIL PROTECTED] wrote on 05/11/2008 17:23:27: > A coworker asked me if I co

RE: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread u2ug
Check out the 'last' command. > -Original Message- > From: [EMAIL PROTECTED] [mailto:owner-u2- > [EMAIL PROTECTED] On Behalf Of Lunt, Bruce > Sent: November 5, 2008 12:50 PM > To: u2-users@listserver.u2ug.org > Subject: [U2] [UD HP-UX] I need to track user logins > > Hi All, > > > > I

Re: [U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread Jeff Butera
> > I need to provide a report that shows what users have not been on the > system for the last 90 days. I don't know how to do this and was hoping > that someone out there could help me. Bruce You'll want to write a shell or perl script using 'last' and compare that to your /etc/passwd file (o

[U2] RE: A-correlative explanation

2008-11-05 Thread Antoon Houben
In English: if either or both (attribute 5 > value 0) and (attribute 6 Not Equal empty) then show attribute 5 else show value 0 In Step-by-Step: 1. Load value of attribute 5 on stack 2. Load constant value 0 on stack 3. Compare and replace top two elements of stack with "1" if <5> greater than

[U2] [UD HP-UX] I need to track user logins

2008-11-05 Thread Lunt, Bruce
Hi All, I need to provide a report that shows what users have not been on the system for the last 90 days. I don't know how to do this and was hoping that someone out there could help me. Thanks in advance, Bruce Lunt --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscrib

[U2] A-correlative explanation

2008-11-05 Thread Brenda Price
A coworker asked me if I could help him understand this. I haven't used A-correlatives in about 14-15 years. Based on the data, it looks like if the value of field 6 is greater than 0 or less than zero it displays the value of field 5 otherwise it displays zero. Here is the A-correlative: 0

RE: [U2] Normal SELECT behavior? [UD]

2008-11-05 Thread David A. Green
Thanks Mats this works too. Thanks, David A. Green www.dagconsulting.com (480) 813-1725 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mats Carlid Sent: Wednesday, November 05, 2008 1:13 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Normal SELEC

Re: [U2] Normal SELECT behavior? [UD]

2008-11-05 Thread Mats Carlid
A possible solution : LIST POH F1 WITH EVAL "'*':F1 = '*000700'" works in universe that has no udt.options to set. ( unidata has EVAL hasn't it ?) -- mats David A. Green skrev: Is this normal SELECT behavior? I get the same results when I use NO.INDEX. Is there an UDT.OPTIONS I can use? I