No thanks. I don't have any time for that today or tomorrow either.
 
We are running SB+ here and don't write this little loopy d loop routines here anyway.


[EMAIL PROTECTED] wrote:
If you are running on any system it will cost you. The only question is, 
do you mind paying the price? Little things do add up. 
If you are on UniData run this. Plug in your own huge file.
OPEN 'MASTER' TO MASTER ELSE STOP
SELECT MASTER
START.CPU = SYSTEM(9)
LOOP
READNEXT ID ELSE EXIT
REPEAT
END.CPU = SYSTEM(9)
CRT END.CPU-START.CPU
SELECT MASTER
START.CPU = SYSTEM(9)
LOOP
WHILE 1 DO
READNEXT ID ELSE EXIT
REPEAT
END.CPU = SYSTEM(9)
CRT END.CPU-START.CPU

I get 
290
320


Bruce M Neylon
Health Care Management Group 





Dave S 
Sent by: [EMAIL PROTECTED]
06/17/2004 01:09 PM
Please respond to u2-users


To: [EMAIL PROTECTED]
cc: 
Subject: Re: [U2] [UV] WHILE READNEXT id DO

If you are running on some old school system, it may cost you.

But don't these programs on Unidata all get compiled into C ?

[EMAIL PROTECTED] wrote:
Why use the WHILE 1 DO? Why not
LOOP
READNEXT ID ELSE EXIT
REPEAT
Doesn't the WHILE 1 DO cost? not that it would cost much. :-)

Bruce M Neylon
Health Care Management Group 





Dave S 
Sent by: [EMAIL PROTECTED]
06/17/2004 09:56 AM
Please respond to u2-users


To: [EMAIL PROTECTED]
cc: 
Subject: Re: [U2] [UV] WHILE READNEXT id DO

I like to use :

LOOP WHILE 1 DO
READNEXT ID ELSE EXIT
REPEAT
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/


---------------------------------
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

                
---------------------------------
Do you Yahoo!?
Yahoo! Mail - You care about security. So do we.
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to