[U2] UV Linux under FreeBSD?

2008-01-28 Thread Gabriel Green
Has anyone successfully installed UV Linux under FreeBSD using FreeBSD's
Linux ABI emulation layer?

--GG
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] IBM increasing work force for U2

2008-01-28 Thread John Jenkins
I saw Adam's shoes :-( Big? 
His "plates of meat" were humungous

And oh yes - IBM are recruiting in the UK too.

Regards

JayJay

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of doug chanco
Sent: 28 January 2008 02:04
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] IBM increasing work force for U2

Maybe he was really really good and they have a HUGE pair of shoes to fill?

dougc


David Wolverton wrote:
> Are all those ads really just to fill the one position left open when Adam
> VanBeek moved to another IBM position?
>
>   
>> -Original Message-
>> From: [EMAIL PROTECTED] 
>> [mailto:[EMAIL PROTECTED] On Behalf Of Jerry Banker
>> Sent: Friday, January 25, 2008 8:09 AM
>> To: u2-users@listserver.u2ug.org
>> Subject: [U2] IBM increasing work force for U2
>>
>> Has anyone noticed that IMB is increasing their number 
>> technical marketing IT specialists for U2? A good, very good, sign.
>>
>>
>>
>> http://hotjobs.yahoo.com/job-search?locations=&industry=&kw=Un
>> iverse+Uni
>> data
>> 
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Universe 20.1 itype perf enhancer

2008-01-28 Thread David Wolverton
The only thing we do also, which others may have commented on, is to add the
ACCOUNT into the 'search' - otherwise, if the user logs from LIVE to TEST,
and the file names are the same, you are writing and reading from your LIVE
data since the file name was 'found' in the list.  So our 'locate' is
ACCOUNT*FILENAME... Or if you want, store the account elsewhere in COMMON,
and if not the same, clear the DIM structure.

DW 
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On Behalf Of Scott 
> > Ballinger
> > Sent: Thursday, January 24, 2008 11:37 AM
> > To: u2-users@listserver.u2ug.org
> > Subject: Re: [U2] Universe 20.1 itype perf enhancer
> >
> > Hi John,
> >
> > As you surmised, this is not a new trick. Here is my version:
> >
> > SUBROUTINE OPEN.FILE.SUB(FILENAME,FILEVAR,ERROR)
> > * open filename to filevar, keep opened files in named common
> > * 01-20-01 asb
> > COMMON /OPEN.FILE.SUB/ FILENAMES,FILEVARS(1000) IF 
> ASSIGNED(FILENAMES) 
> > ELSE  FILENAMES = ""
> > END
> > ERROR = ""
> > LOCATE(FILENAME,FILENAMES;POS) THEN
> >  FILEVAR = FILEVARS(POS)
> > END ELSE
> >  OPEN FILENAME TO FILEVAR THEN
> >IF POS LE 1000 THEN
> >  FILENAMES = FILENAME
> >  FILEVARS(POS)  = FILEVAR
> >END
> >  END ELSE
> >FILEVAR = ""
> >ERROR = 1
> >CRT @(0):"ERROR! can't open ":FILENAME:@(-4)  END END RETURN
> >
> > In use, you CALL OPEN.FILE.SUB("MYFILE",FILEVAR,ERR) ; IF 
> ERR THEN 
> >
> > Interestingly, on D3 this does not seem to have much benefit, where 
> > the OPEN function seems faster than the LOCATE.
> >
> > /Scott Ballinger
> > Pareto Corporation
> > Edmonds WA USA
> > 206 713 6006
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/