[U2] UV Call Stack

2009-10-26 Thread Bessel, Karen
I had a trigger question last week, and I received some help from the list (thanks!), and I have another question. A member of the list sent me a program that he uses for triggers, and it's really nifty, except it uses a U2 function - SYSTEM(49) - that doesn't seem to have an equivalent in UV.

Re: [U2] UV Call Stack

2009-10-26 Thread Brian Leach
Hi Karen The equivalent on UniVerse is System(9001) It's nicely undocumented, but here are Charles Stevenson's comments: Value 1 of each attribute is the depth in the return stack Non-negative numbers mean that those programs are all part of the return stack. Negative numbers below simply

[U2] Uniobjects licence

2009-10-26 Thread Symeon Breen
Does anybody know if unidata has to be fully licenced before unirpcd will accept uniobjects connections, or will it still work during the 60 day grace period like the rest of udt ? Thanks Symeon. ___ U2-Users mailing list

Re: [U2] Count tab characters

2009-10-26 Thread Larry Hiscock
tr -d '\n' myfile | sed 's/[^\t]//g' | wc -c Larry Hiscock Western Computer Services -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of iggch...@comcast.net Sent: Monday, October 26, 2009 4:02 PM To: u2-Users

Re: [U2] Count tab characters

2009-10-26 Thread Ben Souther
Check your version of grep and see if it supports the -o option. -o matches each copy of the pattern and puts it on a separate line. You can then pipe the results into wc -l to get the total count for that character. On Mon, 2009-10-26 at 23:02 +, iggch...@comcast.net wrote: Hi all,

Re: [U2] Count tab characters

2009-10-26 Thread Boydell, Stuart
tr -dc '\t' file1 | wc -c Stuart Boydell -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of iggch...@comcast.net Sent: Tuesday, 27 October 2009 10:02 To: u2-Users Subject: [U2] Count tab characters Hi all,

Re: [U2] UV Call Stack

2009-10-26 Thread Brian Whitehorn
UV equivalent is SYSTEM(9001) HTH. Cheers, Brian. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bessel, Karen Sent: Tuesday, 27 October 2009 3:48 AM To: U2 Users List Subject: [U2] UV Call Stack I had a trigger