RE: 2 gig limits

2004-02-10 Thread Dave Davis
Switch to a dynamic file. Another poster mentions "distributed files" but unidata does not have that option. From: [EMAIL PROTECTED] on behalf of Dave Raven Sent: Tue 2/10/2004 12:13 PM To: [EMAIL PROTECTED] Subject: 2 gig limits Gentlemen, I was having a w

RE: Swap array values? In UV

2004-02-13 Thread Dave Davis
I understand why this works, but honestly, that's nasty. >array(x)=BITXOR(array(x),array(y)); >array(y)=BITXOR(array(y),array(x)); >array(x)=BITXOR(array(x),array(y)); > >No temp variable used. Our company accepts no liability for the content of this email, or for the consequences of any actions

RE: recursive values

2004-02-20 Thread Dave Davis
You mean repeating values. You have BY-EXP don't you? From: [EMAIL PROTECTED] on behalf of Dave Raven Sent: Fri 2/20/2004 2:03 PM To: [EMAIL PROTECTED] Subject: recursive values I am using Universe and am looking for a way to have recursive values in my ret

RE: [UV] Recursive GOSUB

2004-03-01 Thread Dave Davis
All you really need is an open-ended while loop. No recursion is necessary, not even internal recursion with gosubs. For a "tree" type example: list = root.item list.cntr = 1 while (list<1,list.cntr> # '') do children = list.children child.ins.cntr = list.cntr for child.cntr = 1 to num.c

RE: MVQUERY Timeout Errors

2004-03-02 Thread Dave Davis
What version of mvquery? Look under the ADGCONTROL directory of your mvquery account. You should see several files with ".DAT" extensions. These are text files that should be essentially empty when nobody is using mvquery. If the database session mvquery is in does not cleanly exit (you tu

RE: EVAL

2004-03-11 Thread Dave Davis
Is there a way to assign a justification to an EVAL item other than having it use the justification of a field used in the formula? I know you can assign different formatting and conversion. 2. You might be tempted to do: WITH EVAL "F16 * 0.9" < F17 (or WHEN '''''' '' for

RE: EVAL

2004-03-11 Thread Dave Davis
On the use of FMT to affect the justification of an EVAL field, can this be used to affect a sort by an EVAL field? It doesn't seem to affect it when I do it in unidata. Our company accepts no liability for the content of this email, or for the consequences of any actions taken on the basis of

RE: EVAL

2004-03-11 Thread Dave Davis
er names would be sorted before those with 10+ character names! The FMT clause causes it to sort as one would expect. Hope this helps. Randy -Original Message- From: Dave Davis [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 9:23 AM To: U2 Users Discussion List Subject: RE: EVAL On the

RE: EVAL

2004-03-11 Thread Dave Davis
List Subject: RE: EVAL Okay. Alternately, perhaps something like this would work (again, works on UniVerse...): LIST CUSTOMER NAME BY.DSND EVAL "FMT(LEN(NAME),'2R')" Randy -Original Message- From: Dave Davis [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11,

RE: Strange results from I Descriptor

2004-03-15 Thread Dave Davis
Don't do a select (or any query statement) within an I-descriptor subroutine that gets called from query. That's what the message means. Even if it did work it would be a dog. If I need to do something like this in UniData I use the UniBasic index commands like SETINDEX READFWD, etc and crea