Re: [U2] Basic SORT() Function not avail in UniVerse?

2008-07-24 Thread Rex Gozar
And since no one has mentioned it yet, MERGE.LIST takes advantage of Universe's built-in (a.k.a "C") sorting ability. SUBROUTINE SORT.ITEM(ITEM) WRITELIST ITEM ON "MYLIST" STMT = "" STMT<-1> = "GET.LIST MYLIST" STMT<-1> = "MERGE.LIST 0 UNION 0" STMT<-1> = "SAVE.LIST MYLIST"

RE: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread Jeff Fitzgerald
Thanks for mentioning our website - the collection of papers we've written is found in the Support section of the website under the Technical Papers topic. Here's a direct link: http://www.fitzlong.com/Technical%20Papers.htm Glad you found the info useful. Jeff Fitzgerald Fitzgerald & Long, Inc

RE: [U2] Basic SORT() Function not avail in UniVerse?

2008-07-24 Thread Dave Laansma
I think I like this one better than the Unix sort. It is really quick too. However I'd suggest using the SORT.LIST instead of the GET.LIST/MERGE.LIST: SUBROUTINE HUB.SORT.C (ITAB) SORT.KEY= "tmpsortfile" SORT.KEY<2> = @UID SORT.KEY<3> = @USERNO SORT.KEY<4> = TIME() SWAP @A

RE: [U2] Basic SORT() Function not avail in UniVerse?

2008-07-24 Thread Dave Laansma
This is the best idea I've seen. The simplicity is amazing. The speed is absolutely amazing. David Laansma IT Manager Hubbard Supply Co. Direct: 810-342-7143 Office:810-234-8681 Fax: 810-234-6142 www.hubbardsupply.com "Delivering Products, Services, and Innovative Solutions" -Original Mess

Re: [U2] Basic SORT() Function not avail in UniVerse?

2008-07-24 Thread Louie Bergsagel
That is a nifty idea if your values are all the same type. It doesn't work for 1-10: >EDIT.LIST MYLIST New record. : I 0001= 2 0002= 1 0003= 3 0004= 5 0005= 10 0006= 7 0007= 6 0008= 4 0009= 9 0010= 8 0011= Bottom at line 10. : FILE "MYLIST" filed in file "&SAVEDLISTS&". >GET.LIST MYLIST

Re: [U2] Basic SORT() Function not avail in UniVerse?

2008-07-24 Thread Dianne Ackerman
I don't seem to have SORT.LIST on UV 10.1.14. Is it on a later version? -Dianne Dave Laansma wrote: I think I like this one better than the Unix sort. It is really quick too. However I'd suggest using the SORT.LIST instead of the GET.LIST/MERGE.LIST: SUBROUTINE HUB.SORT.C (ITAB) SORT.K

[U2] uv - mkdbfile [not-secure]

2008-07-24 Thread Hennessey, Mark F.
UV 10.2.2, Solaris 10: Friends, I'm having a braincramp. I can not get the syntax for mkdbfile correct for the creation of a 64bit file. I have tried: mkdbfile /path/to/file 30 1009 4 21 50 80 1638 64bit mkdbfile /path/to/file 30 1009 4 21 50 80 1638 -64bit mkdbfile 64bit /path/to/file 30 1009 4

[U2] English phrases

2008-07-24 Thread Boyd Parks
I am trying to use the same phrase in Universe as I use in jBASE, but it is not working properly on our Universe systems. The beginning of my definitions on both jBASE and Universe look like this: >ED DICT DH CA.ATTRS DICT DH CA.ATTRS (BACS) Top .P 001 PH 002 PHONE-CHECK 003 COLL.SCORE 004 CA.AV

RE: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread Brian Leach
All I've missed the start of this thread, so apologies to all if this has been mentioned before. On a 24x7 site, dynamic files should be the most useful (because there is no time available for resizing static files) but AFAIR beause the current load etc are held in shared memory, this prevents

RE: [U2] Basic SORT() Function not avail in UniVerse?

2008-07-24 Thread Dave Laansma
My apologies. I am on Unidata. David Laansma IT Manager Hubbard Supply Co. Direct: 810-342-7143 Office:810-234-8681 Fax: 810-234-6142 www.hubbardsupply.com "Delivering Products, Services, and Innovative Solutions" -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

FW: [U2] English phrases

2008-07-24 Thread roy
Line 2 sorry ! -Original Message- From: roy [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2008 1:16 PM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] English phrases I always list all of the attributes on line 1 separated by spaces. Try 001 PH 002 PHONE-CHECK

RE: [U2] English phrases

2008-07-24 Thread roy
I always list all of the attributes on line 1 separated by spaces. Try 001 PH 002 PHONE-CHECK COL.SCORE ...etc Roy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boyd Parks Sent: Thursday, July 24, 2008 12:21 PM To: u2-users@listserver.u2ug.org Subj

RE: [U2] English phrases

2008-07-24 Thread u2ug
List all items on line 2 - space delimited -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boyd Parks Sent: July 24, 2008 12:21 PM To: u2-users@listserver.u2ug.org Subject: [U2] English phrases I am trying to use the same phrase in Universe as I use in jB

[U2] RE: English phrases

2008-07-24 Thread Boyd Parks
Sorry to bother - I have found that on Universe , all the definitions have to be listed on attribute 2 instead of being in subsequent attributes as we can do on our jBASE system. Boyd -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boyd Parks Sent: Thur

Re: [U2] English phrases

2008-07-24 Thread Richard A. Wilson
everything in field2 seperated by spaces should do it PH F1 F2 F3 F4 etc Rich Boyd Parks wrote: I am trying to use the same phrase in Universe as I use in jBASE, but it is not working properly on our Universe systems. The beginning of my definitions on both jBASE and Universe look like this:

Re: [U2] English phrases

2008-07-24 Thread Martin Phillips
Hi, You need at add an underscore to the end of lines 2 to 9 to show that the phrase continues below. Martin Phillips Ladybridge Systems Ltd 17b Coldstream Lane, Hardingstone, Northampton, NN4 6DB +44-(0)1604-709200 --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe p

Re: [U2] English phrases

2008-07-24 Thread Allen Egerton
Boyd Parks wrote: I am trying to use the same phrase in Universe as I use in jBASE, but it is not working properly on our Universe systems. The beginning of my definitions on both jBASE and Universe look like this: ED DICT DH CA.ATTRS DICT DH CA.ATTRS (BACS) Top .P 001 PH 002 PHONE-CHECK 003

RE: [U2] English phrases

2008-07-24 Thread Larry Hiscock
Try joining all of the attributes on the same line (line 002), like thus: 001 PH 002 PHONE-CHECK COLL.SCORE CA.AVAILCR SSN.DECEASED SSN.DOD 292 CA.BK7 CA.BK11 CA.BK13 Larry Hiscock Western Computer Services -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [U2] RE: English phrases

2008-07-24 Thread IT-Laure Hansen
You can use the underscore at the end of attributes 2 to 9 to indicate continuation on Universe. Laure Hansen, City of Redwood City - Information Technology 1017 Middlefield Road - Redwood City, CA 94063 Office 650-780-7087 - Cell 650-207-3235 - Fax 650-556-9204 [EMAIL PROTECTED] o Please thin

RE: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread daverch
[ad] Hi HTH, U2logic has created a resize plug-in for Eclipse IDE that surpasses their functionality. We do not need any downloaded programs, directories or data files to run. We do not license the product by CPU or number of Universe or Unidata users. We license XLr8 Resizer by your individual

RE: [U2] English phrases

2008-07-24 Thread Oaks, Harold
--- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

[U2] CAPTURING TOXML

2008-07-24 Thread Charles_Shaffer
Hello. I've been building and returning some simple pages from Unidata to PHP, but I now have a big complex report to adapt. Is there someway that I can take advantage of the TOXML verb by CAPTURING the XML and returning it to the calling PHP? I tried something like this. ECMD = "SELECT

RE: [U2] Opinions Wanted !

2008-07-24 Thread Brutzman, Bill
I am glad the product is "green" but also... 1. Do all the programmers use flat panel monitors, not energy-hogging crts? 2. What are the PC power settings there? 3. Is the code written without regard for race, creed, color, gender, or se...? 4. Are the objects there created by vegetarians for vege

RE: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread Jeff Fitzgerald
Gee, with all that, shouldn't the [ad] flag be in uppercase, underlined and bolded? Perhaps HTH will download your stuff and post a review. I think you should address him formally as Mr. Helps, though. Later, when you are friends you could use his first name, Hope. ;-) Jeff Fitzgerald Fitzgera

RE: [U2] Opinions Wanted !

2008-07-24 Thread Allen E. Elwood
And don't forget 6. Do you have energy saving light circuits that sense the presence and absence of people and turn on or off automatically? 7. How many programmers drive a prius instead of a mustang (like mine) ? 8. Consumption of alcohol means it has to be brewed. Brewing it creates massive a

Re: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread Norman, David (SAAS)
Ray earlier suggested using RESIZE * * * CONCURRENT for a Dynamic file. On 10.0.16 this results in the error "Concurrent Resize of type 1, 19, 25, or 30 is not allowed." Adding the "USING" parameter suggested by Ray results in an "Invalid Option" error. If I want to resize a Dynamic file to reclaim

RE: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread Tom Dodds
om ESET NOD32 Antivirus, version of virus signature database 3296 (20080724) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread JPB-U2UG
e sender by telephone. It is the recipient's responsibility to check the e-mail and any attached files for viruses. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/ __ Information from ESET NOD32 Antivirus, version of vi

RE: [U2] static/dynamic file(s) opinions wanted!

2008-07-24 Thread Ray Wurlod
This is the first time I have encountered a restriction on using CONCURRENT on Type 30 files. It comes as quite a surprise, because 24x7 sites like the Ambulance Service need it. I suspect that the error on USING is a subsequent error from the first one. You should always be able to specify a

Re: [U2] uv - mkdbfile [not-secure]

2008-07-24 Thread Ray Wurlod
Try upper case -64BIT at the end. > - Original Message - > From: "Hennessey, Mark F." <[EMAIL PROTECTED]> > To: u2-users@listserver.u2ug.org > Subject: [U2] uv - mkdbfile [not-secure] > Date: Thu, 24 Jul 2008 12:02:21 -0400 > > > UV 10.2.2, Solaris 10: > > Friends, I'm having a braincra