[U2] Fwd: Unidata Consultant@Eden Perire, MN

2013-09-06 Thread Allen Elwood (TW)


i'm disabled/retired - maybe someone out there is interested in this

 Original Message 
Subject:Unidata Consultant@Eden Perire, MN
Date:   Fri, 6 Sep 2013 12:20:08 -0400
From:   Keshav kes...@net2source.com
To: aelw...@socal.rr.com



Hi,

Hope you are doing Good!
Please let me know if you are interested for the JD below. also send me 
your updated resume ASAP or call me back on *201-340-8700 Ext.: 426.*


*Title: Unidata Consultant*

*Location: Eden Perire, MN*

*Duration: Long Term *

*
_Job Description:-_*__


*_Job Responsibilities:_*

 · Understanding the business requirements

· Create Design documents/ Technical Specs / Functional and Non 
Functional Requirements


· Work with the application development teams throughout the development 
life cycle


· Understand the current code and work on Enhancements

· Compliance with all delivery processes of the client

· Must be Hands On- Ready to work on Code (Deployment Lead) and provide 
Warranty support (defect fixes and clarifying business queries)


· Provide Unidata related training to team members


*_Must Have Skills:_*__

· 5-7 Yrs Experience with UNIDATA

· Unidata RDBMS

· UniBasic

· Uniquery

· Unidata Paragraphs

· BCI

· UniObjects

· Using JDBC and ODBC with Unidata




Thanks  Regards,

*Keshav
Net2Source Inc.,
*Board:*201-340-8700 Ext.: 426*
Fax: (201) 221-8131
Email: *_kes...@net2source.com mailto:kes...@net2source.com
_**cid:1.2855726319@web140303.mail.bf1.yahoo.com* 
http://www.linkedin.com/pub/keshav-kumar/34/825/819/*|image002*Keshav.ramyinfotech*|*image003Keshav.usstaffing*_

_*http://www.scorpionperformance.com/sites/default/files/imagecache/gallery_image/images/daryn/ISO-Certified-Co-Logo-Blue.jpghttp://blog.hiddenbrains.com/wp-content/gallery/hidden-brains-affiliations/newlogo_nasscom_members.jpgcid:image001.png@01CD85EE.993FFA70*_
_P Please don't print this e-mail unless you really need to.*



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Select from one file with save-list from another file

2013-08-27 Thread Allen Elwood (TW)


i made a relational selection program many many moons ago - i'm retired 
now - thanks to a crushed right hand i can only type with the left hand 
which goes numb quickly thanks to an elbow injury


but i keep the code around and lurk on the list just in case :-)

* RSELECT - Relational File Selection Utility
* Usage:
* RSELECT LIST1 FILENAME ATTRNBR LIST2
Version=~Ver=~7.0.10~362202866~
*#* COPY COPY.TOOLS.BP STANDARD.VARIABLES.1 (REPLACING PGM.NAME BY 
RSELECT, FN.NAME BY RSELECT, IO.OPEN.OPTS BY TERM.DATA:LOCK) ;*#* Copied 
Source Follows (06-25-03)

  $INCLUDE STANDARD.COMMON.VARIABLES FROM COPY.TOOLS.BP
  $INCLUDE STANDARD.COMMON.APP.PROGRAMS FROM COPY.TOOLS.BP
  $INCLUDE STANDARD.VARIABLES.END FROM COPY.TOOLS.BP
  PGM.NAME='RSELECT'; FN.NAME ='RSELECT'
  CALL IO.OPEN('TERM.DATA:LOCK',PASSWORDS)
*#*
*
  GOSUB GET.OPTIONS
  GOSUB DETERMINE.TEMP.FILESIZE
  GOSUB LOAD.TEMP.FILE
  GOSUB CREATE.TEMP.DICT
  GOSUB BUILD.LIST2
  GOSUB FINISH.UP
  STOP
*
GET.OPTIONS:
  PRINT 'Enter END at any prompt to abort'
  PRINT
  PRINT 'Enter Source List Name :   ':;INPUT LIST1
  IF LIST1 = 'END' THEN STOP
  PRINT 'Enter the Selection Filename : ':;INPUT FILENAME
  IF FILENAME = 'END' THEN STOP
  PRINT 'Enter the Selection Attribute Number : ':;INPUT ATTRNBR
  IF ATTRNBR = 'END' THEN STOP
  PRINT 'Enter the Destination List Name :  ':;INPUT LIST2
  IF LIST2 = 'END' THEN STOP
  PRINT
  LOOP
PRINT 'Continue? (Y/END)':;INPUT YORN
IF YORN = 'END' THEN STOP
IF YORN = 'Y' THEN EXIT
  REPEAT
  RETURN
*
DETERMINE.TEMP.FILESIZE:
  MSG = 'GET.LIST ':LIST1
  PERFORM MSG CAPTURING JUNK
  SELECTION = @SYSTEM.RETURN.CODE
  TBYTES= 0
  LOOP WHILE READNEXT ID DO
TBYTES+=LEN(ID)
  REPEAT
  TEMP.MOD  = INT(TBYTES/1024)
  IF TEMP.MOD  1 THEN
TEMP.MOD = 5
  END
  TEMP.NAME = 'RSELECT':PROCESS.ID
  MSG = 'CREATE.FILE ':TEMP.NAME:' ':TEMP.MOD
  PERFORM MSG CAPTURING JUNK
  OPEN '', TEMP.NAME TO TEMP.HANDLE ELSE PRINT 'Internal processing 
error';STOP
  OPEN 'DICT', TEMP.NAME TO TEMP.DICT ELSE PRINT 'Internal processing 
error';STOP

  RETURN
*
LOAD.TEMP.FILE:
  MSG = 'GET.LIST ':LIST1
  PERFORM MSG CAPTURING JUNK
  NADA = ''
  LOOP WHILE READNEXT ID DO
WRITEV NADA ON TEMP.HANDLE, ID, 0
  REPEAT
  RETURN
*
CREATE.TEMP.DICT:
  DREC = ''
  DREC1 = 'I'
  DREC2 = 'TRANS(':TEMP.NAME:',F':ATTRNBR:',F0,X)'
  DREC4 = 'Temporary Trans Dict'
  DREC5 = '25L'
  WRITE DREC ON TEMP.DICT, TRAN.DICT
  DREC = ''
  DREC1 = 'D'
  DREC2 = ATTRNBR
  DREC4 = 'Temprary Base Dict'
  DREC5 = '25L'
  DID = F:ATTRNBR
  WRITE DREC ON TEMP.DICT, DID
  RETURN
*
BUILD.LIST2:
  PRINT 'Now creating list ':LIST2
  MSG = 'SELECT ':FILENAME:' WITH TRAN.DICT GT  USING DICT ': TEMP.NAME
  PERFORM MSG
  PERFORM 'SAVE.LIST ':LIST2
RETURN
*
FINISH.UP:
  CLOSE TEMP.HANDLE
  CLOSE TEMP.DICT
  MSG = 'DELETE.FILE ':TEMP.NAME
  DATA 'Y'
  PERFORM MSG CAPTURING JUNK
  PRINT 'Program Completed'
  RETURN



On 8/27/2013 1:24 PM, Hilk, Brandon wrote:

Hello!

  


UniVerse 10.1, HP/UX, Pick.

  


Is there a way I can build a save-list from a selection from one file
X.INFO (where the record ID is an 8 digit number) and use that list to
select from file Y.INFO (where that 8 digit number is not the record ID
but does exist as a foreign key elsewhere in the file). In SQL this
would be considered a join and would look something like this:

  


select *

from X.INFO, Y.INFO

where X.INFO.packet.id=Y.INFO.packet.id

and X.INFO.status='ccc';

  


I can run this in TCL and have it return the results I want but can't
build a save-list from it because I don't know the UniVerse/SQL syntax
to do so.

  


So to summarize, is there a way to use a save-list built from X.INFO to
make another save-list comprised of the record ID's from Y.INFO?

  


Thanks for any advice you can give.

  


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Select from one file with save-list from another file

2013-08-27 Thread Allen Elwood (TW)

that's basically what my program does on the fly, see fourth gosub

  GOSUB GET.OPTIONS
  GOSUB DETERMINE.TEMP.FILESIZE
  GOSUB LOAD.TEMP.FILE
  GOSUB CREATE.TEMP.DICT
  GOSUB BUILD.LIST2
  GOSUB FINISH.UP

On 8/27/2013 4:03 PM, Wjhonson wrote:

It seems to me that the easiest way to create a list of orders where the customers 
state is Arizona
is to first create a translation FROM the Order file INTO the Customer file 
which will return the customers state
and then just select on that new dictionary entry


  

  

  


-Original Message-
From: Rick Nuckolls r...@lynden.com
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Tue, Aug 27, 2013 4:01 pm
Subject: Re: [U2] Select from one file with save-list from another file


Your response supposes that the ORDER.ID IS is in the CUSTOMERS file/table,
which is not the criteria of the original problem.

The problem presented is a bit difficult to work around in RETRIEVE, and even
harder if you are restricted to not programming, as Brandon evidently is.

We wrote a utility that will take a preselected list and create a new list based
on the values of an alternate key, which would functions as

SELECT CUSTOMERS WITH STATE = 'AZ'

SELECTINDEX ORDERS CUSTOMER.ID ## use the CUSTOMER.ID index of ORDERS to
find those orders related to customers within the list; return a list of ORDERS
ids.

Alternately, in Brandon's example, it might work to create a translate field
from the Y.INFO file to the Y.INFO status field, but that would probably involve
a less efficient overall selection, and would not be practical if the data
common to the two tables (packet.id), is the primary key to neither, in which
case:

SELECT X.INFO WITH status = 'ccc' SAVING [UNIQUE] packet.id

SELECTINDEX Y.INFO packet.id

Sorry that I am unable to send out the code for SELECTINDEX, but, a simple
version is straightforward to program using the BASIC SELECTINDEX function.

-Rick

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org]
On Behalf Of Jo Lester
Sent: Tuesday, August 27, 2013 2:54 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Select from one file with save-list from another file

SELECT CUSTOMERS WITH STATE = 'AZ' SAVING ORDER.ID

LIST ORDERS


From: r...@lynden.com
To: u2-users@listserver.u2ug.org
Date: Tue, 27 Aug 2013 14:42:34 -0700
Subject: Re: [U2] Select from one file with save-list from another file

I found an old example on line that might get you started

SELECT TO SLIST 0 FROM CUSTOMERS WHERE STATE = 'AZ';
SAVE.LIST CUSTOMER.LIST

SELECT * FROM ORDERS WHERE CUSTOMER.ID IN (SELECT EVAL  at RECORD FROM
SAVEDLISTS 'CUSTOMER.LIST');

The extra syntax that might help is

SELECT TO SLIST savedlist # FROM ORDERS 

If CUSTOMER.LIST is your X.INFO and ORDERS is your Y.INFO...

Rick

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org]

On Behalf Of Hilk, Brandon

Sent: Tuesday, August 27, 2013 1:24 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Select from one file with save-list from another file

Hello!

  


UniVerse 10.1, HP/UX, Pick.

  


Is there a way I can build a save-list from a selection from one file
X.INFO (where the record ID is an 8 digit number) and use that list to
select from file Y.INFO (where that 8 digit number is not the record ID
but does exist as a foreign key elsewhere in the file). In SQL this
would be considered a join and would look something like this:

  


select *

from X.INFO, Y.INFO

where X.INFO.packet.id=Y.INFO.packet.id

and X.INFO.status='ccc';

  


I can run this in TCL and have it return the results I want but can't
build a save-list from it because I don't know the UniVerse/SQL syntax
to do so.

  


So to summarize, is there a way to use a save-list built from X.INFO to
make another save-list comprised of the record ID's from Y.INFO?

  


Thanks for any advice you can give.

  


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

  
___

U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Select from one file with save-list from another file

2013-08-27 Thread Allen Elwood (TW)


forgot to mention, david green knows a way of doing this with some fancy 
statements, i'm sure he'll chime in when he sees the thread, so don't 
give up hope yet brandon!


On 8/27/2013 5:06 PM, Allen Elwood (TW) wrote:

that's basically what my program does on the fly, see fourth gosub

  GOSUB GET.OPTIONS
  GOSUB DETERMINE.TEMP.FILESIZE
  GOSUB LOAD.TEMP.FILE
  GOSUB CREATE.TEMP.DICT
  GOSUB BUILD.LIST2
  GOSUB FINISH.UP

On 8/27/2013 4:03 PM, Wjhonson wrote:
It seems to me that the easiest way to create a list of orders where 
the customers state is Arizona
is to first create a translation FROM the Order file INTO the 
Customer file which will return the customers state

and then just select on that new dictionary entry





-Original Message-
From: Rick Nuckolls r...@lynden.com
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Tue, Aug 27, 2013 4:01 pm
Subject: Re: [U2] Select from one file with save-list from another file


Your response supposes that the ORDER.ID IS is in the CUSTOMERS 
file/table,

which is not the criteria of the original problem.

The problem presented is a bit difficult to work around in RETRIEVE, 
and even
harder if you are restricted to not programming, as Brandon evidently 
is.


We wrote a utility that will take a preselected list and create a new 
list based

on the values of an alternate key, which would functions as

SELECT CUSTOMERS WITH STATE = 'AZ'

SELECTINDEX ORDERS CUSTOMER.ID ## use the CUSTOMER.ID index of 
ORDERS to
find those orders related to customers within the list; return a list 
of ORDERS

ids.

Alternately, in Brandon's example, it might work to create a 
translate field
from the Y.INFO file to the Y.INFO status field, but that would 
probably involve
a less efficient overall selection, and would not be practical if the 
data
common to the two tables (packet.id), is the primary key to neither, 
in which

case:

SELECT X.INFO WITH status = 'ccc' SAVING [UNIQUE] packet.id

SELECTINDEX Y.INFO packet.id

Sorry that I am unable to send out the code for SELECTINDEX, but, a 
simple
version is straightforward to program using the BASIC SELECTINDEX 
function.


-Rick

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org]

On Behalf Of Jo Lester
Sent: Tuesday, August 27, 2013 2:54 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Select from one file with save-list from another file

SELECT CUSTOMERS WITH STATE = 'AZ' SAVING ORDER.ID

LIST ORDERS


From: r...@lynden.com
To: u2-users@listserver.u2ug.org
Date: Tue, 27 Aug 2013 14:42:34 -0700
Subject: Re: [U2] Select from one file with save-list from another file

I found an old example on line that might get you started

SELECT TO SLIST 0 FROM CUSTOMERS WHERE STATE = 'AZ';
SAVE.LIST CUSTOMER.LIST

SELECT * FROM ORDERS WHERE CUSTOMER.ID IN (SELECT EVAL  at 
RECORD FROM

SAVEDLISTS 'CUSTOMER.LIST');

The extra syntax that might help is

SELECT TO SLIST savedlist # FROM ORDERS 

If CUSTOMER.LIST is your X.INFO and ORDERS is your Y.INFO...

Rick

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org]

On Behalf Of Hilk, Brandon

Sent: Tuesday, August 27, 2013 1:24 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Select from one file with save-list from another file

Hello!


UniVerse 10.1, HP/UX, Pick.


Is there a way I can build a save-list from a selection from one file
X.INFO (where the record ID is an 8 digit number) and use that list to
select from file Y.INFO (where that 8 digit number is not the record ID
but does exist as a foreign key elsewhere in the file). In SQL this
would be considered a join and would look something like this:


select *

from X.INFO, Y.INFO

where X.INFO.packet.id=Y.INFO.packet.id

and X.INFO.status='ccc';


I can run this in TCL and have it return the results I want but can't
build a save-list from it because I don't know the UniVerse/SQL syntax
to do so.


So to summarize, is there a way to use a save-list built from X.INFO to
make another save-list comprised of the record ID's from Y.INFO?


Thanks for any advice you can give.


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

  ___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2

Re: [U2] Select from one file with save-list from another file

2013-08-27 Thread Allen Elwood (TW)


i like temp files properly sized, temp dicts, one simple statement 
invoking RSELECT, no possibility of syntax goofs


simple

easy

fun

On 8/27/2013 5:37 PM, Wjhonson wrote:

Are you implying that it somehow reads the permissions of the dictionary before 
allowing the use of EVAL?


  

  

  


-Original Message-
From: Wols Lists antli...@youngman.org.uk
To: u2-users u2-users@listserver.u2ug.org
Sent: Tue, Aug 27, 2013 5:30 pm
Subject: Re: [U2] Select from one file with save-list from another file


On 28/08/13 01:20, Wjhonson wrote:

Yes I think you could use an On The Fly statement like the EVAL to do the

trans if you can't actually mod the dictionary
OOPS!!!

I know this is UD, but in UV you couldn't do on the fly like EVAL if
you couldn't mod the dictionary.

Whether that was a security feature and thus is still true, or it just
made temporary changes to the dictionary and may have changed, I don't know.

But if UD is the same, if you can't mod the dictionary you can't do an EVAL.

Cheers,
Wol



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] List Changes?

2013-07-25 Thread Allen Elwood (TW)


my google mail on both my galaxy s2 as well as desktop and laptop are iffy

loads of sending and receiving errors with delays as much as days

i have a friend with stuff in her outbox from a month ago...

otoh, it is free


On 7/25/2013 11:08 AM, William Brutzman wrote:

LH:

Thanks for writing.
No... I did not see my original post appear... both in Outlook 2013 and the
gMail web client.
I presume that this is a Google Mail thing.
I expect to contact Google tech support on it.

--Bill


On Thu, Jul 25, 2013 at 11:43 AM, lar...@wcs-corp.com wrote:


Hi Bill,

This made it to the list, and was delivered.  Did you get a copy of it?

--Larry

Larry Hiscock
Moderator


Larry:

1. Thanks for writing.

2. We started to use Goole Mail a few months ago.

3. I only see inbound filtration settings.

4. While I also use Outlook 2013... a lot of times when I am sending...
including this time... I have been using the gMail web client.

5. I hope that this message arrives there.

6. Perhaps I am being blocked for my prior transgressions.

Regards,

--Bill
--
William J. Brutzman
Manager, IT
HK MetalCraft Mfg Corp
35 Industrial Road
Lodi  NJ  07644-2607

973.471.7770 x145

bi...@hkmetalcraft.com
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users






___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] FYI off topic

2013-05-07 Thread Allen Elwood (TW)


thanks for the heads up!

although i make recreations of vintage guitar tube amplifiers it never 
occurred to me to pop open a monitor and look for bad caps


the number one problem with vintage tube amps are the electrolytic caps 
in the power filter section.  the electrolyte drys up (or oozes out) and 
starts leaking DC into the AC section of the circuit.


i have one out in my shop right now that i'm gonna open up tonight!


On 5/7/2013 2:05 PM, Robert Frailey wrote:

Dont throw away those flat screens when they die.
I fixed one today, 30 minutes and 5 capacitors on the output power 
supply.
They seem to be made with under rated caps. So far since last year 
i've fixed 9 flat screen monitors, all capacitors in the output power 
supply.
I've change the caps but up'd the rated voltage on each so if it 470uf 
10v, i put in a 470uf at 25v.
Easier than fixing tube monitors, takes about 30 minutes. Nice side 
job in the future, everyone will have a couple.


Robert
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] FYI off topic

2013-05-07 Thread Allen Elwood (TW)


ah, yes, the DOSPFFT

hate those guys

'NO USER SERVICEABLE PARTS INSIDE

yeah.   those guys.

On 5/7/2013 2:36 PM, George Gallen wrote:

Better be careful, the division of stopping people from fixing things will be 
after you!

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Robert Frailey
Sent: Tuesday, May 07, 2013 5:34 PM
To: U2 Users List
Subject: Re: [U2] FYI off topic

sounds about right, most caps the cover was shrinking due to overheating,
the one today was a 1000uf ar 10 volts, the top wrap was sightly pulling
away.
The screen had not totally failed but had a 60hrz ripple running to to
bottom. most of the caps looked good but I changed all the output, isolated
side to be safe.
Screen looks great now
Robert
- Original Message -
From: Bob Rasmussen r...@anzio.com
To: U2 Users List u2-users@listserver.u2ug.org
Sent: Tuesday, May 07, 2013 3:17 PM
Subject: Re: [U2] FYI off topic



Were these capacitors visibly bulging on top? The story goes that a few
years ago, a cap provider in China got their mix wrong for the dielectric,
and tens of thousands (maybe more) of these caps got put in all kinds of
devices. They didn't fail immediately, but a well after the warranty had
run out.

On Tue, 7 May 2013, Robert Frailey wrote:


Dont throw away those flat screens when they die.
I fixed one today, 30 minutes and 5 capacitors on the output power
supply.
They seem to be made with under rated caps. So far since last year i've
fixed 9 flat screen monitors, all capacitors in the output power supply.
I've change the caps but up'd the rated voltage on each so if it 470uf
10v, i put in a 470uf at 25v.
Easier than fixing tube monitors, takes about 30 minutes. Nice side job
in the future, everyone will have a couple.

Robert ___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Regards,
Bob Rasmussen,   President,   Rasmussen Software, Inc.

personal e-mail: r...@anzio.com
  company e-mail: r...@anzio.com
   voice: (US) 503-624-0360 (9:00-6:00 Pacific Time)
 fax: (US) 503-624-0760
 web: http://www.anzio.com
  street address: Rasmussen Software, Inc.
  10240 SW Nimbus, Suite L9
  Portland, OR  97223  USA
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Retirement and knowledge transfer

2013-03-06 Thread Allen Elwood (TW)


it was a great run for me while it lasted.

i too spent 22 years with pick/unidata and a total of 32 years programming.

alas it seems the hypothyroidism, too many injuries, anaphylactic 
allergies to perfume that actually have me carrying around an epi-pen 
where ever i go, prostate cancer and the after effects of that surgery 
including diverticulosis have left me unable to perform to the degree 
necessary to program.


i cannot use my right hand to type at all anymore because of frozen 
shoulder and smashed cartilage in my middle knuckle so i type with just 
my left hand - very slowly and don't bother trying to use caps.


but like the old mill horse that still walks in circles all day in the 
green pasture of retirement, i still get this list and read most posts.


that and i like to 'hang out' at the vintage amps forum since i can, and 
do make recreations of vintage guitar tube amplifiers.


for any others of you that know that tube amps just blow away solid 
state, and love guitars this is a great place with incredible experts on 
music gear, and is an international forum with members in just about 
every country on the planet.


http://vintageamps.com/plexiboard/index.php?sid=5a2e35bad09253bcd43a22cce9ad13ad

i'll go back to lurking again now.  carry on.  as you were!

pip pip, cheerio lads!

allen

On 3/6/2013 5:31 AM, Wally Terhune wrote:

John Thompson wrote: I have heard of a couple of folks retiring at Rocket.  I 
hope you guys passed on all your great knowledge of the DBMS' internals :)

Absolutely. One of my primary activities since the first of the year was 
delivering technical presentations to the U2 support engineers and sales 
engineers - world-wide. In addition to that, I've been writing. The following 
Rocket Tech Notes have been published in the Rocket Solutions portal (entitled 
access). There are a few more out for review and editing that will be published 
before I leave.

UDT-9311: Debugging UniData UNIX Segmentation Violations  Core Dumps
UDT-22: UniData Data Replication Operations Guide v4.1
UDT-9507: Detecting and Repairing UniData File Corruption
UDT-9509: Understanding and correcting the memresize error: overflow file is goo 
big(2G) in mem_get_blk()

Just had my 22nd anniversary with UniData / Ardent / Informix / IBM / Rocket. 
It has been a rewarding run.
Regards,

Wally Terhune
Technical Support Engineer
Rocket Software
4600 South Ulster Street, Suite 1100 **Denver, CO 80237 **USA
t: +1 720 475 8055 **e: wterh...@rocketsoftware.com **w: u2.rocketsoftware.com

Rocket U2 Support: +1.800.729.3553
** Please note that I am only available on Tuesdays and Wednesdays. **


I have heard of a couple of folks retiring at Rocket.  I hope you guys passed 
on all your great knowledge of the DBMS' internals :)

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] So long and other thoughs

2013-02-20 Thread Allen Elwood (TW)

cheers and good luck gyle !

funny you would think that rocket would be interested in something like 
that


On 2/20/2013 1:33 PM, Gyle Iverson wrote:

I am moving on to a venture outside of the multi-value space. (For those
interested, check out CloudVaults.com to see what I am doing now.)

  


Sometime ago, you may recall my notice that the line of decompiler products
and services for UniVerse and PI/open from srs4uv.com were being withdrawn.

  


I have had discussions with several parties familiar to us on this list,
including a representative of Rocket Software. Unfortunately, there is
insufficient interest in acquiring the decompiler tool chain and giving it a
new home. The srs4uv.com domain including the web site and email will go
off-line in a few days. As well, the decompiler and service is no longer
available.

  


It has been fun and rewarding to be a part of this group over the decades
and I leave with fond memories of its members.

  


Best regards to all,

Gyle Iverson

  

  


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Wally Terhune

2012-12-13 Thread Allen Elwood (TW)


you took the words right out of my keyboard...  phew!

On 12/13/2012 2:08 PM, Tony Gravagno wrote:

Breathing a sigh of relief. These days whenever I see someone's name
in a subject and nothing else, I immediately brace myself for an
obituary - consequences of a long career in a small and aging
community...

Good luck Wally.
T


From: Dan Goble
Congratulations on your upcoming retirement.  Thanks for all the
support you have given us over the years for us Unidata guys.   Your
breadth of knowledge will surely be missed.


Enjoy retirement,
-Dan


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fwd: [MailServer Notification]Content Filtering Notification

2012-11-22 Thread Allen Elwood (TW)


woof, they just called you a racist.   LAWSUIT 

;-)

On 11/22/2012 11:40 AM, Bill Haskett wrote:
Anyone see anything like the below?  I just received two emails at the 
same time as my post today.  I wonder if this is a U2 group thing.


The header information is below the message.  Thanks,

Bill


 Original Message 
Subject: [MailServer Notification]Content Filtering Notification
Date: Thu, 22 Nov 2012 21:22:41 +0200
From: Administrator administra...@do.not.reply
To: wphask...@advantos.net



This email has violated the RACIAL DISCRIMINATION.
and Quarantine entire message has been taken on 2012/11/22 09:22:27 PM.
Message details:
Server: AXIZJHBEXCAS01
Sender: wphask...@advantos.net;
Recipient: u2-users@listserver.u2ug.org;
Subject: Re: [U2] converting D3 to UniData


Return-Path: administra...@do.not.reply
Received: from {our mail server co.} (LHLO {our mail server co.})
 (10.10.87.80) by {our mail server co.} with LMTP; Thu, 22 Nov 2012
 11:22:41 -0800 (PST)
Received: from localhost (localhost.localdomain [127.0.0.1])
by {our mail server co.} (Postfix) with ESMTP id BCF4547C0001
for wphask...@advantos.net; Thu, 22 Nov 2012 11:22:41 -0800 (PST)
X-Virus-Scanned: amavisd-new at {our mail server co.}
X-Spam-Flag: NO
X-Spam-Score: 0.602
X-Spam-Level:
X-Spam-Status: No, score=0.602 tagged_above=-10 required=6.6
tests=[ANY_BOUNCE_MESSAGE=0.1, BAYES_05=-0.5, DKIM_ADSP_NXDOMAIN=0.9,
HTML_MESSAGE=0.001, NO_DNS_FOR_FROM=0.001, VBOUNCE_MESSAGE=0.1]
autolearn=no
Received: from {our mail server co.} ([127.0.0.1])
by localhost ({our mail server co.} [127.0.0.1]) (amavisd-new, 
port 10024)

with ESMTP id mIfeoNF1jj8u for wphask...@advantos.net;
Thu, 22 Nov 2012 11:22:40 -0800 (PST)
Received: from Exchange.axiz.co.za (exchange.axiz.co.za [41.160.73.125])
by {our mail server co.} (Postfix) with ESMTP id 638753BC0001
for wphask...@advantos.net; Thu, 22 Nov 2012 11:22:28 -0800 (PST)
X-TM-IMSS-Message-ID:0744f9baf...@exchange.axiz.co.za
Received: from nobody by rs.za.axiz.com with local (Exim 4.71)
(envelope-from administra...@do.not.reply)
id 1TbcK8-00080X-KA
for wphask...@advantos.net; Thu, 22 Nov 2012 21:20:32 +0200
Received: from [172.16.140.221] (helo=axizjhbexcas01.axiz.com) by 
rs.za.axiz.com with esmtp (Exim 4.71) (envelope-from 
administra...@do.not.reply) id 1TbcK8-00080R-Fs for 
wphask...@advantos.net; Thu, 22 Nov 2012 21:20:32 +0200
Received: from Pickup by axizjhbexcas01.axiz.com with Microsoft SMTP 
Server id 14.1.339.1; Thu, 22 Nov 2012 19:22:41 +

X-Receiver: wphask...@advantos.net
X-Sender: administra...@do.not.reply
thread-index: Ac3I5r3Y3kOUyVy2RmS/uF5fv7v0Kg==
Thread-Topic: [MailServer Notification]Content Filtering Notification
From: Administrator administra...@do.not.reply
To: wphask...@advantos.net
Subject: [MailServer Notification]Content Filtering Notification
Date: Thu, 22 Nov 2012 21:22:41 +0200
Message-ID: 576ea48d2abc42bdadb2b6b79c3df...@axiz.com
MIME-Version: 1.0
X-Mailer: Microsoft CDO for Windows 2000
Importance: normal
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.1.7601.17609
Content-Type: multipart/alternative; boundary=7246f8c7a47405582e5f
X-TM-AS-Product-Ver: IMSS-7.1.0.1485-6.8.0.1017-19386.000
X-TM-AS-Result: No--2.633-7.0-31-10
X-imss-scan-details:
No--2.633-7.0-31-10;No--2.633-4.5-31-10;No--2.633-5.0-31-10
X-TM-AS-User-Approved-Sender: No
X-TM-AS-User-Blocked-Sender: No;No
X-TMASE-MatchedRID: 
Jt0p5ZOvtsK71D3eW4MsP23+TEfnyeNvOyEDKyNnz+9b6PBUqmq+UgOH
les/nBwnEUJBc1Tv8WIRzSC2cuw1wyb2pAEbgrGzaDgPZBX/bMutOtl3KyzpR4TH85Y/n3xJ3Sl 

EgVuyN9tvuYnoduGWEceQPcxT2kjdN87ka4FsRhjoWzLJRzcKSJwhktVkBBrQme9AzntO/Jsqtq 

5d3cxkNaV9dO6AERqUstPo5m6vDF3Xx6DLMA8+elOfaryRnpB5KJwz7+V7rFX5skPxw08B6dcF9 

RQRCZm2tkggw04KvjQv8C+9vmHBTqpwZvlxzaRXZ3f94Y6lGEjIr5CsxWQYwqJ0o/LRDdM3aL+k 


9cBaYv1zuTzp9CyDGkwG9+TXFAqIST1zD3YS9S5aC0+uEpQQ7tL4Q/wTRooA




___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Fwd: [MailServer Notification]Content Filtering Notification

2012-11-22 Thread Allen Elwood (TW)


still have not received anything, so just a burp in the ol' 
AXIZJHBEXCAS01 server content regulator i guess


and a rather rude one it was.

On 11/22/2012 11:40 AM, Bill Haskett wrote:
Anyone see anything like the below?  I just received two emails at the 
same time as my post today.  I wonder if this is a U2 group thing.


The header information is below the message.  Thanks,

Bill

snip
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Another job ad written by people who have no clue

2012-11-01 Thread Allen Elwood (TW)


well, it WAS the 60's. love in's, etc.

On 11/1/2012 10:37 AM, David Wolverton wrote:

HA!  I had to go look up SMILE for GIRLS -- what a  GREAT acronym!

They were really were creative (and yes, maybe a bit sexist...) in their
naming!

David W.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Brian Leach
Sent: Thursday, November 01, 2012 12:02 PM
To: 'U2 Users List'
Subject: Re: [U2] Another job ad written by people who have no clue


Show me a single person in the world who has all of : Universe, Unidata,

D3, Jbase, Revelation AND RPL and I will show you a liar

Better keep my mouth shut, then, hadn't I ? grin.

Mind you I'm surprised they didn't add SMILE for GIRLS...


Brian



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Tim Bryant passed away last week

2012-10-04 Thread Allen Elwood (TW)

at the age of 48 from a heart attack/stroke

this was announced on the manage 2000 user group last week but i just 
wanted to send something to this group to cover all bases.


he was a great guy and will be missed by all
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users