Re: [U2] REMOVE results as promised.

2005-08-22 Thread Mark Johnson
I tried that method (styles 7 8) and got a longer time. Perhaps my test system isn't as fast (workload?) and as such, allowed the differences to be more pronounced. Here's my fastest version DIM A(5) ; MAT A= FOR I=1 TO 5 A(I)=I NEXT I B=A CONVERT 254 TO 253 IN B ;* LOWER (sic)

RE: [U2] REMOVE results as promised.

2005-08-22 Thread Piers Angliss
Not that it seems to matter these days but both this method and the ..-1 notation (which is an implicit form of the same thing) could be said to be needlessly evaluating whether or not A is null 49,999 times. An alternative would be : A = 1 FOR I = 2 TO 5 A := @VM : I NEXT I I also

RE: [U2] REMOVE results as promised.

2005-08-22 Thread u2
Which platforms don't support system(11)? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dzevad Dizdar Sent: Monday, August 22, 2005 12:27 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] REMOVE results as promised. Hi Mark, There is

[U2] REMOVE results as promised.

2005-08-22 Thread Mark Baldridge
Note that Mark is reporting results from D3. A= FOR I=1 TO 5 A1,-1=I NEXT I Style 2: -1 attribute level then CONVERT to 253...41 seconds UniVerse caches the last-accessed field position in a dynamic array. On my 1.7 GHz pentium laptop, 0001: A =

RE: [U2] REMOVE results as promised.

2005-08-22 Thread Rex Gozar
My results were different. Substring assignment is very fast, but not as fast as -1 and CONVERT. *** * substring assignment *** STIME = TIME() ITEM = SPACE(99) PTR = 0 FOR J = 1 TO 5 L = LEN(J)+1 ITEM[1+PTR,L] = J:@VM PTR += L

[U2] Problems with uvrestore

2005-08-22 Thread Jay Falck
I am trying to restore a backup from a UV 10 system running on AIX to a UV 10 system running on Windows. I can run the uvrestore -i command just fine but when I try to run the actual restore I get the following error: Unhandled exception raised at address 0x101F4198 : Access violation

[U2] Trend to SHIMS conversion

2005-08-22 Thread Weiss Dan
I am looking for someone in the Detroit area that has a working knowledge of the SHIMS software. We are converting data from the Trend software into SHIMS. This person/company would need to be available this week on site. We are also looking for possible long term/permanent programmer.

[U2] Formatting Help

2005-08-22 Thread Al DeWitt
I have a multi-value field within a multi-value field (sub-values). The length of each sub-value can be up to 70 characters. I need to reformat and print the value so that each sub-value is no longer than 55 characters. To complicate matters I need to know ahead of time how many lines the

RE: [U2] Formatting Help

2005-08-22 Thread Kevin King
Are you wanting to do a word-wrap somewhere around the 55th character of each subvalue? In other words, if I have two subvalues in one value where the first one is 69 characters and the second is 45, is it acceptable that you end up with three subvalues (one ~55, next ~15, and then the next being

RE: [U2] Trend to SHIMS conversion

2005-08-22 Thread GarryS
We are a whole distributor of household hardware [hinges, slides, door knobs...etc], we surveyed the software market and the top makers were Intuit-Eclipse, NxtTrend, Navision [Now Microsoft owned] and Prelude. My understanding is that SHIMs has not had any feature development in the last 10

RE: [U2] REMOVE results as promised.

2005-08-22 Thread Tom Dodds
Thanks Mark. Great job. You can satisfy some of the people some of the time but you can never satisfy all of the people all of the time. This obviously took some time to do and I appreciate the effort. Tom Dodds [EMAIL PROTECTED] 630-235-2975 -Original Message- From: [EMAIL

Re: [U2] Problems with uvrestore

2005-08-22 Thread Arnold Bosch
Hi Jay You could try UVRESTORE -verify image name to allow uvrestore to verify the image In addition, check what blocksize was used on the original uvbackup image, and specify the appropriate -b size uvrestore parameter HTH Regards Arnold Bosch IT Administrator Taeuber Corssen SWA (Pty) Ltd

[U2] LIST EVAL and DATES

2005-08-22 Thread Jeff Powell
When I request a date field inside an eval statement the date is returned in the internal numeric format. Is there a function I can use to return the textual format? AIX 5.1 UniData 6.1.8 Uniobjects for Java Thanks in advance. --- u2-users mailing list u2-users@listserver.u2ug.org To

Re: [U2] LIST EVAL and DATES

2005-08-22 Thread Martin Phillips
When I request a date field inside an eval statement the date is returned in the internal numeric format. Is there a function I can use to return the textual format? For UniVerse, try LIST ... EVAL DATE CONV D2 For Unidata, change CONV to CNV. The CONV field qualifier sets the

[U2] RE: [Potentially SPAM Please delete if you do not recognize] - [U2] LIST EVAL and DATES - Bayesian Filter detected spam

2005-08-22 Thread Barry Rogen
EVAL DATE() CONV D2- Barry Rogen PNY Technologies, Inc. Senior Programmer/Analyst (973) 515 - 9700 ext 5327 [EMAIL PROTECTED] - Far better it is to dare mighty things, to win glorious triumphs even though checkered by failure, than to rank

RE: [U2] LIST EVAL and DATES

2005-08-22 Thread Tom Dodds
You could do something like this: LIST filename EVAL @RECORD6 CONV D2/ Where the CONV D2/ would be applied to the result of the EVAL @RECORD6. Is that what you were looking for? Tom Dodds [EMAIL PROTECTED] 630-235-2975 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[U2] Undefined Vars

2005-08-22 Thread Jeffrey Butera
On unidata I'm looking for a way to test if a variable has been defined or not. I'm aware of $DEFINE, $IFDEF, $IFNDEF and $UNDEFINE but they're not what I need. I have a subroutine and would like to check to see if one argument on entry is defined or not. -- Jeff Butera, Ph.D.

RE: [U2] Formatting Help

2005-08-22 Thread Mark Olarte
snip I have a multi-value field within a multi-value field (sub-values). The length of each sub-value can be up to 70 characters. I need to reformat and print the value so that each sub-value is no longer than 55 characters. To complicate matters I need to know ahead of time how many

Re: [U2] REMOVE results as promised.

2005-08-22 Thread Don Kibbey
Hey, the evaluation of various methods is great, it would be even greater if the folks doing the evaluating would let us know what sort of hardware. One poster mentioned a laptop, that's good info. The original guy mentions a production system that is in use, that's good too. But, it would be

RE: [U2] Undefined Vars

2005-08-22 Thread colin.alfke
Are you looking for UNASSIGNED()? Colin Alfke Calgary, AB -Original Message- From: Jeffrey Butera On unidata I'm looking for a way to test if a variable has been defined or not. I'm aware of $DEFINE, $IFDEF, $IFNDEF and $UNDEFINE but they're not what I need. I have a subroutine

[U2] [AD] Position Vacant - Newcastle - Australia

2005-08-22 Thread Ross Ferris
We are at it again! If you would like the opportunity to work as part of a small, highly productive and motivated team using cutting edge technologies, send us a copy of your CV/Resume. Experience with Manufacturing, Accounting, Distribution, POS, Engineering ... lets just say we have an

Re: [U2] [AD] Position Vacant - Newcastle - Australia

2005-08-22 Thread Bruce Nichol
And what's the weather like today? At 10:57 23/08/05 +1000, you wrote: We are at it again! If you would like the opportunity to work as part of a small, highly productive and motivated team using cutting edge technologies, send us a copy of your CV/Resume. -- No virus found in this incoming

RE: [U2] Formatting Help

2005-08-22 Thread Bob Woodward
I'll take a stab at this, off the cuff... GOSUB PRINT.HEADINGS NUM.FIELDS=DCOUNT(@RECORD,@FM) FOR F.POS = 1 TO NUM.FIELDS NUM.VALUES=DCOUNT(@RECORDF.POS,@VM) FOR V.POS = 1 TO NUM.VALUES NUM.SUBVS=DCOUNT(@RECORDF.POS,V.POS,@SVM) FOR S.POS = 1 TO NUM.SUBVS

RE: [U2] REMOVE results as promised.

2005-08-22 Thread Bob Woodward
Remember, folks, that you don't have to start with 1 in a FOR-NEXT loop. A=1 FOR I = 2 TO 5 A := @VM:I NEXT I Just a peanut from the gallery being thrown. smile BobW -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dzevad Dizdar Sent: Sunday,

RE: [U2] [AD] Position Vacant - Newcastle - Australia

2005-08-22 Thread Ross Ferris
Ahh, you guys freezing down south near the border ! It's a balmy 22 again ... Hey, have YOU considered moving your business a little further North :-) OK, worth a shot! If you know of anyone reasonable who is after a sea change, keep us in mind we seem to be always looking Last ads we ran

RE: [U2] [AD][oops] Position Vacant - Newcastle - Australia

2005-08-22 Thread Ross Ferris
Hmmm, meant to send that direct Bruce :-( Should I explain about my sense of humour? nahh, if you come here you will learn that we are a light hearted lot, and if not you can treat us as weird ozzies ohh, and for those in the US, that is 22 degrees Celsius ! Ross Ferris Stamina

RE: [U2] Formatting Help

2005-08-22 Thread Womack, Adrian
Also consider using FMTS on the entire string, eg. STRING = FMTS(STRING,55T) This will perform the 55T formatting on each element of the string (in this case: each sub-value). DISCLAIMER: Disclaimer. This e-mail is private and confidential. If you are not the intended recipient, please

RE: [U2] Undefined Vars

2005-08-22 Thread Stuart . Boydell
450 Lynx formatting failed: open3: exec of lynx --stdin --dump --force_html --hiddenlinks=ignore --localhost --image_links --nolist --noredir --noreferer --realm failed at /etc/smrsh/demime line 1519 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit

RE: [U2] Undefined Vars

2005-08-22 Thread Stuart . Boydell
450 Lynx formatting failed: open3: exec of lynx --stdin --dump --force_html --hiddenlinks=ignore --localhost --image_links --nolist --noredir --noreferer --realm failed at /etc/smrsh/demime line 1519 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit