Re: [U2] Stumped with TRANS...

2010-10-18 Thread DavidJMurray (mvdbs.com)
phil walker-2 wrote: > > The trouble with using common for things is when you get into > client/server development. You cannot guarantee the common will be > available to you. > > > Yes, it can get rather messy keeping track of individual user sessions when a common background process(s)

Re: [U2] Stumped with TRANS...

2010-10-18 Thread phil walker
The trouble with using common for things is when you get into client/server development. You cannot guarantee the common will be available to you. > -Original Message- > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- > boun...@listserver.u2ug.org] On Behalf Of DavidJMurra

Re: [U2] Stumped with TRANS...

2010-10-18 Thread DavidJMurray (mvdbs.com)
phil walker-2 wrote: > > Universe does some caching around TRANS from memory. So if you want to > only do lookups your results may indicate a good solution. However, for > update it will not work, and depending on the number of files being > accessed, you may find there are issues with the cach

Re: [U2] Stumped with TRANS...

2010-10-18 Thread phil walker
Universe does some caching around TRANS from memory. So if you want to only do lookups your results may indicate a good solution. However, for update it will not work, and depending on the number of files being accessed, you may find there are issues with the cache being rotated. > -Origin

Re: [U2] Stumped with TRANS...

2010-10-18 Thread DavidJMurray (mvdbs.com)
FFT2001 wrote: > > Has anyone done a timing test to compare a SUBR which uses a common > section > to store an opened file variable > > vs a TRANS ? > ___ > U2-Users mailing list > U2-Users@listserver.u2ug.org > http://listserver.u2ug.org/mailman/li

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Mecki Foerthmann
Hi Susan, I get the error on the CREATE.TRIGGER command. I guess it has something to do with writing to the "file header". This part is not very well explained in the Using UniData manual - well not at all really. It just says that the trigger is written to the file header and even that it may so

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Charlie Noah
Dave, If I had access to Unidata, I'd do HELP CREATE.TRIGGER, but I don't. I thought I could learn something for future reference. Sorry I wasted your bandwidth. Charlie Charlie Noah Charles W. Noah Associates cwn...@comcast.net The views and opinions expressed herein are my own (Charlie N

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Mecki Foerthmann
LOL No, I guess there are other companies as well that are a bit paranoid in that regard. I was told it has something to do with the auditors insisting on that policy. Supposedly if you use sudo it gets logged but if you log in as root you can screw the system and nobody is any the wiser. But sinc

Re: [U2] Accuterm color config

2010-10-18 Thread Peter Schellenbach
As suggested by Marc, use "monochrome colors" in the color settings. This will set all of the standard attribute to shades of black/gray/white, but if an application uses explicit foreground/backgroun colors, these are still available. I think the 'ls' highlights directory files using something

Re: [U2] Accuterm color config

2010-10-18 Thread Tony Gravagno
Here are some notes I have on the topic, which I created to solve the exact problem described. Changing ls colors: Modify color choice in /etc/DIR_COLORS Change DIR_COLORS for DIR from 01;34 to 01;32 eval `dircolors /etc/DIR_COLORS` Note the back quotes rather that forward quotes. The dircolors co

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Dave Davis
HELP CREATE.TRIGGER explains the rules. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Charlie Noah Sent: Monday, October 18, 2010 4:19 PM To: U2 Users List Subject: Re: [U2] CREATE.TRIGGER - Permission denied So

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Charlie Noah
Sorry - I misread. However, even if it's Unidata, the same question still applies. There does appear to be some disagreement as to whether it requires root or just file ownership. What about group? If a user is in the same group as the file, would that be sufficient (AIX was the Unix I worked

Re: [U2] Accuterm color config

2010-10-18 Thread Caminiti, Marc
The only thing that seemed to work for me was on the AccuTerm Color settings tab, select "Monochrome Colors". It still showed colors, and you were able to read all of the files/directories too :) Thanks marc Marc Caminiti IS Manager Nashbar Direct, Inc 6103 State Route 446 Canfield, OH 44406 330

Re: [U2] Accuterm color config

2010-10-18 Thread Ron Walenciak
I seem to recall experiencing some kind of problem like that on D3, and the linux guys suggested --color=never EXECUTE '!ls -AGg --color=never ':PATH -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of charles_shaf...@

Re: [U2] Free software licence

2010-10-18 Thread Tony Gravagno
Brian - I have software published under the Microsoft Public License (Ms-PL). It's a simple license just a little more wordy than MIT that allows other developers to do whatever they want with my code including distribution of source or object, free or for-fee. It differs from the perhaps too lib

[U2] Accuterm color config

2010-10-18 Thread Charles_Shaffer
Sorry if this is off topic, but I know some of you folks use Accuterm. I am evaluating 2K2 Lite and am having a problem with the ls -al command. Specifically when it is displaying the directory name at the end of the line. The backgound and foreground colors are the same making it impossible

[U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Susan Joslyn
Hi Mecki, I don't think PRC is in your way, but I would never say "never".When do you get the PERMISSION DENIED error, when you go to edit the triggered file and make a change and file it? Or when? I use triggers in an SB+ enabled account on Unidata, so I don't think SB+ is getting in your w

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Dan Goble
Unidata does not require you to be root. Just that the person creating the trigger owns the file. We use triggers here all the time and never become root to create or remove. The key is being the owner of the file. -Dan -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] XLr8Editor and Tools Updates

2010-10-18 Thread Bill Brutzman
Doug: My main PC needed a new hard drive on Friday 15-Oct. Of course, I would rather use XLr8 on my main PC. The main PC has an Eclipse Install ID : BBF09C Please send over another 30-day license. My backup PC is now somewhat difficult to access. Regards, --Bill -Original Message---

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread phil walker
Universe does not require root access to create a trigger. The article refers to Unidata. > -Original Message- > From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users- > boun...@listserver.u2ug.org] On Behalf Of Charlie Noah > Sent: Tuesday, 19 October 2010 7:30 a.m. > To: U2 Users L

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Laura Wright
You don't work at Lee Brass Company do you??? Laura -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Mecki Foerthmann Sent: Monday, October 18, 2010 2:18 PM To: U2 Users List Subject: Re: [U2] CREATE.TRIGGER - Permi

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Charlie Noah
I have used Jbase for 12 years, and used Universe for many before that. I was surprised to learn that Universe requires one to have root access to create a trigger. Jbase doesn't require that, so I guess I was spoiled. Does anyone know of any compelling reason why Universe would require it?

Re: [U2] Cloud UniVerse

2010-10-18 Thread John Hester
I can confirm you are correct, because we have a cold spare. The cold spare machine is running, but UV is not running on it. In the event of a failure of the active node, the cluster management software will start UV on the cold spare. Each machine requires a unique license to be installed, but

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Mecki Foerthmann
Thanks everybody, They should have really pointed that out in the UniData manual. Can you do this somehow using sudo since my network administrator is very concerned about giving anybody the root password? I'll try again tomorrow. cheers Mecki On 18/10/2010 18:10, Colin Alfke wrote: > As othe

Re: [U2] Free software licence

2010-10-18 Thread Wols Lists
On 18/10/10 16:52, Brian Leach wrote: > Wol/Steve > > Thanks for the responses. > > I don't want the GPL as it's too restrictive - it effectively prevents > anyone using the software in the context of anything that isn't GPL'ed, and > I don't want to restrict that. For example, a plug-in to get SB

Re: [U2] Free software licence

2010-10-18 Thread Larry Hiscock
Brian Leach wrote: > > All > > > > I've been planning for a while to release my system scanning tools > ("mvScan") as free/open software. > > > > Has anyone any insight to share on this? > > > Confused > > > Brian > Have you looked at the Creative Commons licensing models? http://cre

Re: [U2] Free software licence

2010-10-18 Thread DavidJMurray (mvdbs.com)
Brian Leach wrote: > > All > > > > I've been planning for a while to release my system scanning tools > ("mvScan") as free/open software. > > > > Has anyone any insight to share on this? > > > Confused > > > Brian > > > This might be of interest - http://civiccommons.com/2010/10/

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Colin Alfke
As others have noted you need to login as root to create the trigger. We use a program that does the following for each of our triggers (UniData on Windows with SB+). DELETE.TRIGGER filename UPDATE DELETE.CATALOG triggerprogram BASIC programfile programname CATALOG programfile programname FORCE

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Dan Goble
In order to create a trigger in Unidata the Unix user you are logged in as needs to own the file. -Dan -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Mecki Foerthmann Sent: Monday, October 18, 2010 12:07 PM To: U2

Re: [U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Steve Long
Are you logged in as a root user? You need root permissions to create triggers. Thanks, Steve Long Spyderweb Techincal Services, Inc. (360) 687-8797 Office (866) 354-5913 Fax www.spyderwebtech.net -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@li

[U2] CREATE.TRIGGER - Permission denied

2010-10-18 Thread Mecki Foerthmann
Hi, Today I tried for the first time to create a trigger on Unidata (Version 5.2 on Solaris) and get this error. I have to add we are using SB+ and Avante 9.2 which includes PRC 3.9. First time I tried this I actually got an SB+ error (line 200 something) - and when I run it from "true" ECL I jus

Re: [U2] U2UG Member Newsletter -- DataVU

2010-10-18 Thread Brian Leach
Brad It's imminent, but not formally released yet .. Brian -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of bradley.sch...@usbank.com Sent: 18 October 2010 15:39 To: 'U2 Users List' Subject: [U2] U2UG Member Newslett

Re: [U2] Free software licence

2010-10-18 Thread Brian Leach
Wol/Steve Thanks for the responses. I don't want the GPL as it's too restrictive - it effectively prevents anyone using the software in the context of anything that isn't GPL'ed, and I don't want to restrict that. For example, a plug-in to get SB+ information might need to call an SB+ process - a

[U2] U2UG Member Newsletter -- DataVU

2010-10-18 Thread bradley . schrag
I see no mention of availability or pricing on U2UG and no mention at all on Rocket.com. Does anyone know more? Brad. U.S. BANCORP made the following annotations - Electronic Privacy Notice. This e-mail, and any attachments, cont

Re: [U2] XLr8Editor and Tools Updates

2010-10-18 Thread Symeon Breen
Oh sorry - i see spelling yes I could blame it on my spell checker From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of bpar...@nemianlife.lu Sent: 18 October 2010 12:54 To: U2 Users List Subject: Re: [U2] XLr8Editor and Tools Updates

Re: [U2] XLr8Editor and Tools Updates

2010-10-18 Thread bparker
I just mentioned it because you said, "here here". I'm a pedantic twit, I know. Brian From: "Symeon Breen" To: "'U2 Users List'" Date: 18/10/2010 12:30 Subject:Re: [U2] XLr8Editor and Tools Updates Sent by:u2-users-boun...@listserver.u2ug.org Sorry i assumed people

Re: [U2] XLr8Editor and Tools Updates

2010-10-18 Thread Symeon Breen
Sorry i assumed people would know what 'hear hear' meant - It seems maybe not everyone on this list is from the UK ;) From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of bpar...@nemianlife.lu Sent: 18 October 2010 10:51 To: U2 Users List S

Re: [U2] XLr8Editor and Tools Updates

2010-10-18 Thread bparker
http://en.wikipedia.org/wiki/Hear,_hear Please feel free to ignore if you're not interested. Brian From: "Symeon Breen" To: "'U2 Users List'" Date: 16/10/2010 11:22 Subject:Re: [U2] XLr8Editor and Tools Updates Sent by:u2-users-boun...@listserver.u2ug.org Here here