[U2] Unidata Limits

2012-07-10 Thread Kevin King
I was asked a question today that ... well, it stumped me. Is there a practical limit to an incrementing number on Unidata and if so, what is that limit? I seem to recall something way back on Reality that said that numbers could count to 1+e38 or something ridiculous like that, but is that

Re: [U2] Unidata Limits

2012-07-10 Thread David A. Green
-Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Tuesday, July 10, 2012 12:03 PM To: U2 Users List Subject: [U2] Unidata Limits I was asked a question today that ... well, it stumped me. Is there a practical

Re: [U2] Unidata Limits

2012-07-10 Thread Daniel McGrath
Users List Subject: [U2] Unidata Limits I was asked a question today that ... well, it stumped me. Is there a practical limit to an incrementing number on Unidata and if so, what is that limit? I seem to recall something way back on Reality that said that numbers could count to 1+e38

[U2] Unidata limits - Where are they documented?

2009-04-02 Thread Kevin King
I have a vague recollection that I've seen something in the Unidata manuals - years ago - documenting the maximums for a TCL statement, record size, number of IDs that can be specified in a SELECT statement, that sort of thing. I've searched the manual set but I can't seem to locate that

RE: [U2] Unidata limits - Where are they documented?

2009-04-02 Thread Marc Harbeson
From TCL: LIMIT? -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Thursday, April 02, 2009 10:34 AM To: u2-users@listserver.u2ug.org Subject: [U2] Unidata limits - Where are they documented? I have

RE: [U2] Unidata limits - Where are they documented?

2009-04-02 Thread Raymond de Bourbon
...@listserver.u2ug.org] On Behalf Of Kevin King [precisonl...@gmail.com] Sent: 02 April 2009 09:33 To: u2-users@listserver.u2ug.org Subject: [U2] Unidata limits - Where are they documented? I have a vague recollection that I've seen something in the Unidata manuals - years ago - documenting

Re: [U2] Unidata limits - Where are they documented?

2009-04-02 Thread Kevin King
Okay, I didn't know about LIMIT. Too cool. Thanks! --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] UniData LIMITs

2009-01-31 Thread Anthony W. Youngman
In message 4983be3c.4070...@advantos.net, Bill Haskett wphask...@advantos.net writes Ken: I think so. I'm looking at this as the best (or easiest) alternative. Thanks very much for the thought. Bill I've rethought my idea a bit. What I don't quite get is how you build up that massive

Re: [U2] UniData LIMITs

2009-01-30 Thread Mecki Foerthmann
-users@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs The problem here isn't that you can only have a certain number of items active in a select list, but that specifying them as explicit item ids on the command line is ugly, bad and only supported up to a certain point. Isn't this a job

RE: [U2] UniData LIMITs

2009-01-30 Thread djordan
Hi Bill I can't see users selecting 300 users, there must be another criteria that they choose to get those clients, can't that be used instead. Otherwise: I would set up another file SELECTEDCLIENTS with key @UserNo*Clientno with f1 = 1 which holds the clientnos the user wants. The core

RE: [U2] UniData LIMITs

2009-01-30 Thread David A. Green
] On Behalf Of Bill Haskett Sent: Thursday, January 29, 2009 12:44 PM To: U2 Mail List Subject: [U2] UniData LIMITs We have a report writer that allows users to select the client they want to print any report for. This subroutine builds a list of clients available to any particular user

RE: [U2] UniData LIMITs

2009-01-30 Thread Anthony Youngman
:49 To: u2-users@listserver.u2ug.org Subject: RE: [U2] UniData LIMITs Bill, I would create a CLIENT Type field that you can lump the CLIENTS together and use the Type field for your selections. Thanks, David A. Green www.dagconsulting.com (480) 813-1725 -Original Message- From: owner-u2

Re: [U2] UniData LIMITs

2009-01-30 Thread Bill Haskett
@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs Do the users have to type in all 300 customer numbers every time they want to run a report? Certainly not? So there must be a file containing these numbers with some sort of ID. In that case there should

Re: [U2] UniData LIMITs

2009-01-30 Thread Charles Stevenson
I'm entering the fray late here, but I think I have a good, fast, general solution, provided you're willing to index a field. I should probably post it in U2UG's wiki the source code to the XSELECT utility below. Using your example, SELECT CUSTOMERS WITH CLIENTNO = 1234. : 1. Maintain an

Re: [U2] UniData LIMITs

2009-01-30 Thread Scott Ballinger
Just goes to show that a problem like this will generate the same solution many times over.My version of Chuck's XSELECT is called BSELECT. e.g. GET-LIST MYLIST (list of customer numbers) BSELECT INVOICES CUST.NO(cust.no is an indexed field in INVOICES file) Once you get used to it, it

RE: [U2] UniData LIMITs

2009-01-30 Thread Ken Wallis
- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Saturday, 31 January 2009 8:23 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs Micki: Thanks for the thoughts. We do have a single subroutine

Re: [U2] UniData LIMITs

2009-01-30 Thread Bill Haskett
@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs So can't you substitute your bit of code that puts 'WITH CLIENTNO = ':MYBIGCOMMONLISTOFLITERALS into all your SELECTs and SORTs with something that puts 'WITH EVAL SUBR(MYROUTINETHATLOCATESINCOMMONLITERALS,CLIENTNO)' in the same place and get

[U2] UniData LIMITs

2009-01-29 Thread Bill Haskett
We have a report writer that allows users to select the client they want to print any report for. This subroutine builds a list of clients available to any particular user and uses this list to either compare against the clients entered or of all clients are selected then the entire

Re: [U2] UniData LIMITs

2009-01-29 Thread Kevin King
There have always been limits on how big or complex a selection statement can be. And as best I know, these things are not configurable. So... you have to be creative on how you select the items. For example, if you know the keys to the records of the customers to select - or can build the keys

RE: [U2] UniData LIMITs

2009-01-29 Thread Marc Harbeson
Subject: [U2] UniData LIMITs We have a report writer that allows users to select the client they want to print any report for. This subroutine builds a list of clients available to any particular user and uses this list to either compare against the clients entered or of all clients

Re: [U2] UniData LIMITs

2009-01-29 Thread Bill Haskett
__ From: Marc Harbeson mharbe...@brinly.com Sent: 1/29/2009 1:54 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs Can't you just FORMLIST them, then list? Aka: CLIENTIDS = 1:@AM:2 FORMLIST CLIENTIDS TO 0 -Original

Re: [U2] UniData LIMITs

2009-01-29 Thread Kevin King
And the client records don't share any specific attribute, like a company number or such that you could use in the selection? --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] UniData LIMITs

2009-01-29 Thread Bill Haskett
That's correct. Bill __ From: Kevin King precisonl...@gmail.com Sent: 1/29/2009 2:37 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs And the client records don't share any specific

RE: [U2] UniData LIMITs

2009-01-29 Thread Marc Harbeson
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Bill Haskett Sent: Thursday, January 29, 2009 7:12 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs That's correct. Bill __ From: Kevin King precisonl

Re: [U2] UniData LIMITs

2009-01-29 Thread Charlie Rubeor
: Thursday, January 29, 2009 8:24 PM Subject: RE: [U2] UniData LIMITs What about something along the lines of splitting the client ID's into two (or more) lists, selecting, and then MERGE.LIST them together then list? Kind of difficult to guess around it without seeing the whole picture

Re: [U2] UniData LIMITs

2009-01-29 Thread Bill Haskett
: Thursday, January 29, 2009 8:24 PM Subject: RE: [U2] UniData LIMITs What about something along the lines of splitting the client ID's into two (or more) lists, selecting, and then MERGE.LIST them together then list? Kind of difficult to guess around it without seeing the whole picture. -Original

RE: [U2] UniData LIMITs

2009-01-29 Thread Ken Wallis
@listserver.u2ug.org Subject: RE: [U2] UniData LIMITs What about something along the lines of splitting the client ID's into two (or more) lists, selecting, and then MERGE.LIST them together then list? Kind of difficult to guess around it without seeing the whole picture. -Original Message

Re: [U2] UniData LIMITs

2009-01-29 Thread Bill Haskett
applied to modern hardware. :-( Thanks again. Bill __ From: Ken Wallis ken_wal...@internode.on.net Sent: 1/29/2009 9:04 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UniData LIMITs The problem here