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

2008-07-23 Thread Symeon Breen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Fitzgerald Sent: 23 July 2008 00:28 To: u2-users@listserver.u2ug.org Subject: RE: [U2] static/dynamic file(s) opinions wanted! snip I saw a 1Tb drive at Fry's for $170 the other day, so space isn't an

RE: [U2] [uv] Secure Sockets / SSL

2008-07-23 Thread Mike Pflugfelder
Well, I'd like this to run from a Universe server, running on either Windows or Unix, not the client side. From what I understand, current releases of Universe include secure sockets and therefore can make the call directly. -Original Message- From: Hona, David S [mailto:[EMAIL

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

2008-07-23 Thread Doug Chanco
Wow, Super detailed explanation. I want to avoid the Katrina effect but 1. I am not sure what to check for, I can run ANALYZE.FILE and get the below results (i his the right way to inspect my levees or should I be using something else? I am just used to using jRF -R jASE report only) and

RE: [U2] [uv] Secure Sockets / SSL

2008-07-23 Thread Glen Batchelor
-Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Mike Pflugfelder Sent: Wednesday, July 23, 2008 7:17 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] [uv] Secure Sockets / SSL Well, I'd like this to run from a Universe server,

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

2008-07-23 Thread Dave Laansma
I'd suggest this subroutine. Brief and to the point: SUBROUTINE HUB.SORT.B (ITAB) OTAB = FOR X = 1 TO DCOUNT(ITAB,@AM) ELEM = ITABX LOCATE ELEM IN OTAB BY AL SETTING PLACE ELSE NULL OTAB = INSERT(OTAB,PLACE;ELEM) NEXT X ITAB = OTAB RETURN END David Laansma

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

2008-07-23 Thread Dan Fitzgerald
See the minimum modulus of 1 the current mod of 240052? your file has split 240051 times, and a lot of your writes are probably going to involve a split operation. Check this again in a couple of days to see what the current mod is to see how many split operations you've done. An interesting

RE: [U2] [uv] Secure Sockets / SSL

2008-07-23 Thread Anthony Youngman
SSL direct from UV, or SSL direct from the UV server ... If they're sending it to their internal mailserver, which is configured to require SSL, or they don't have an internal mailserver and must use SSL to talk out ... I got the impression they wanted the CLIENT software to talk SSL, Postfix

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

2008-07-23 Thread Dave Laansma
I've been experimenting and discovered something. Instead of waiting until you have all (say) 100,000 elements to sort at once, why not sort them in blocks of (say) 5,000. So I wrote this little subroutine that takes two parameters, a relatively small un-sorted table and the larger sorted table

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

2008-07-23 Thread Doug Chanco
Dan thanks a million this is incredibly helpful! Dougc --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

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

2008-07-23 Thread Baakkonen, Rodney A (Rod) 46K
That is why we discourage developers from using dynamic arrays in programs. Once they get to a certain size, performance goes out the window. We have them store all intermediate program data in work files that sort quickly when well sized. -Original Message- From: [EMAIL PROTECTED]

RE: [U2] [uv] Secure Sockets / SSL

2008-07-23 Thread Glen Batchelor
-Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Anthony Youngman Sent: Wednesday, July 23, 2008 11:28 AM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] [uv] Secure Sockets / SSL SSL direct from UV, or SSL direct from the UV server

[U2] Unidata PE Question

2008-07-23 Thread Kebbon Irwin
I have some Unidata accounts that I have ftp'd from a unix box and I would like to be able to log in to them on my XP laptop with Unidata PE installed. I get a high-byte/low-byte error message indicating that, at the least, I must run some conversions. I'm not sure what utilities to use to

RE: [U2] Unidata PE Question

2008-07-23 Thread Davis, Dawn
From your IBM \bin dir: You are going to want to run convidx.exe and convdata.exe...you will need some switches to get the subdirs. convdata -r c:\path to where your unidata files live convidx -r c:\path to where your unidata files live I run them in DOS manually... Dawn Janel Davis

RE: [U2] Unidata PE Question

2008-07-23 Thread Davis, Dawn
Kebbon, Sorry, didn't specify path to your unidata DATA files' Dawn Janel Davis Database Manager [EMAIL PROTECTED] 410-386-8058 Carroll Community College 1601 Washington Road Westminster, MD 21157 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

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

2008-07-23 Thread Rex Gozar
I've done research on sorting in the past, working with 100,000 to 1,000,000 element lists. Allen: LOCATE's are faster, but only when you're dealing with less than 100 elements. Because LOCATE's must start at the beginning of a string and traverse the entire length, they get slower and

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

2008-07-23 Thread David A. Green
Jeff, Can you compare the speed of your C sorting program with this one? It's untested code... FUNCTION SortArray(InArray, AllowDups, SortBy) * OutArray = Remove(InArray, MoreItems) ArrayDelim = @RM:@AM:@VM:@SM:@TM[MoreItems, 1] If SortBy = then SortBy = AL * While MoreItems Do Item =

Re: [U2] Unidata PE Question

2008-07-23 Thread BNeylon
Possibly convcode and convdata Have you looked at Administering UniData on Windows Platforms? Specifically tar2ftp? Bruce M Neylon Health Care Management Group Kebbon Irwin [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/23/2008 02:10 PM Please respond to u2-users@listserver.u2ug.org To

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

2008-07-23 Thread Nick Gettino
For very large files we use alternate indexes on Unidata. So we have one for date or some virtual of data that is used most of the time. Then we use a generic subroutine to read the index using either a SETINDEX to go exactly where you want (or where the next record should be) or SELECTINDEX it

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

2008-07-23 Thread Baakkonen, Rodney A (Rod) 46K
I guess my point was a little off topic, as I was really calling attention to performance issues with dynamic arrays in general and not about sorting keys. When dynamic arrays can out perform work files, we will use them. We have seen processes that used dynamic arrays run for a week. Even with

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

2008-07-23 Thread Symeon Breen
I too would be interested in your c function Thanks Symeon. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David A. Green Sent: 23 July 2008 19:58 To: u2-users@listserver.u2ug.org Subject: RE: [U2] Basic SORT() Function not avail in UniVerse? Jeff,

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

2008-07-23 Thread Israel, John R.
Same here John Israel Sr. Programmer/Analyst Dayton Superior Corporation 721 Richard St. Dayton, OH 45342 937-866-0711 x44380 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Symeon Breen Sent: Wednesday, July 23, 2008 4:09 PM To:

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

2008-07-23 Thread Charlie Rubeor
Before we had the SORT function, I wrote out the variable to a directory and used the *nix sort command. I don't have the original program, but I re-created it here as best I could. I remember the program as being a lot more complicated then this, but here it is anyway. SUBROUTINE

Re: [U2] Getting daily data from SAP from Universe {Unclassified}

2008-07-23 Thread John Kent
Mike, that was the gotha i was looking for At least now i know what i am up against jak - Original Message - From: HENDERSON MIKE, MR [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Wednesday, July 23, 2008 9:57 AM Subject: RE: [U2] Getting daily data from SAP from

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

2008-07-23 Thread Jeff Marcos
David, thanks for the little challenge. I took your code you suggested to try and created the below program: Please feel free to comment or improve the code. Unfortunately I don't have all day to refine (wish I could though). Due to company policy, I can't at this point in time release any

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

2008-07-23 Thread iggchamp
Hi Doug, In addition to the great info from this group (like Dan provides), this site http://www.fitzlong.com/ provides great insight into U2 files. You should take some time to read the papers that they've provided. Also, they have an incredible product called fast that can really help you