Re: [U2] uniobjects.dll on Notes 8.3

2012-09-18 Thread David L. Wasylenko
Shot in the dark... Did you "install" the Uniobjects package or just copy the dll... makes a difference. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailt

Re: [U2] A better LISTU

2012-09-05 Thread David L. Wasylenko
Rocket should supply a system function, API etc to give DETAILED log-in information... We'll take it from there same with detailed locking, detailed port status blah blah. Bit off-topic... but frustration vented ... david ... David L. Wasylenko President, Pick Professionals, Inc w

Re: [U2] Scrub HangUp Fixed

2012-08-31 Thread David L. Wasylenko
#x27;s a tad difficult to solve a problem that's not submitted. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Beh

Re: [U2] [ud] Sub-second delay?

2012-08-30 Thread David L. Wasylenko
Thank GOD someone is older ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno Sent

Re: [U2] [ud] Sub-second delay?

2012-08-30 Thread David L. Wasylenko
t old )) ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Colin Alfke Sent: Thursday, August 30, 2012 3:00 PM To: 'U2

Re: [U2] Scrub Hangs Up

2012-08-28 Thread David L. Wasylenko
Port.status ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman Sent: Tuesday, August 28, 2012 3:20

Re: [U2] [ud] Sub-second delay?

2012-08-27 Thread David L. Wasylenko
You will get a delay... but you won't reduce work-load. In fact, a tight loop like that will take over and make system performance crawl. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users

Re: [U2] [ud] Sub-second delay?

2012-08-27 Thread David L. Wasylenko
If you are trying to unload a heavy processs... how about sleeping one second every 100 records or every 1000 ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org

Re: [U2] [ud] Sub-second delay?

2012-08-27 Thread David L. Wasylenko
Universe only supports an integer for the SLEEP command... Try this in unidata: 001 CRT TIMEDATE() 002 FOR I=1 TO 5 003 SLEEP 0.5 004 NEXT I 005 CRT TIMEDATE() I've no idea if it's supported... but it's worth a shot to test. ... david ... David L. Wasylenko President, Pic

Re: [U2] [ud] Sub-second delay?

2012-08-27 Thread David L. Wasylenko
SLEEP 1 and NAP xxx will do the same... I've had processes hogging resources... added NAP 1 and it played very nicely with the system afterward. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users

Re: [U2] Variable Interpolation

2012-08-27 Thread David L. Wasylenko
0007 SENT=SENT[LEN(F.FILE)+2, LLEN] 0008 * you now have a clean sentence... 0009 CRT DQUOTE(F.FILE) 0010 CRT DQUOTE(SENT) 0011 * 0012 END ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message-

Re: [U2] [ud] Sub-second delay?

2012-08-27 Thread David L. Wasylenko
NAP 500 ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Kevin King Sent: Monday, August 27, 2012 10:46 AM To: U2

Re: [U2] Array Types

2012-07-27 Thread David L. Wasylenko
DIM saves time on read and write... Direct reference to an attribute as a discrete variable is where the time-savings is realized. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun

Re: [U2] Running a command in a different account

2012-07-27 Thread David L. Wasylenko
program, proc, etc. to run on the remote account. "..uv\bin\uv" is path to the uv.exe program. This will launch a session, execute the command and return the output to you. You will need to check the @TTY of the remote account to prevent launching the 2nd session into a menu etc. ("

Re: [U2] Universe; SQL; Indexes?? (10.3.7 on Windows)

2012-07-27 Thread David L. Wasylenko
st. This is useful when indexes are not up to date or built. Finally, the order of occurrence of the selection criteria can impact the use of secondary indices. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Mes

Re: [U2] Array Types

2012-07-27 Thread David L. Wasylenko
you get! :-) You will get bored waiting for the display to refresh after a few dozen pages. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver

Re: [U2] Array Types

2012-07-27 Thread David L. Wasylenko
Speed There is a *long* thread here demonstrating the difference between *DAYS* of processing and seconds, using large records for demonstration. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun

Re: [U2] UV Triggers / SQL

2012-07-24 Thread David L. Wasylenko
You don't need a schema... Triggers are allowed w/o schema. It's a pain here too, separate account for DATA / programs... Create a control record of files/triggers/programs etc. Then write a program to perform bulk maintenance. ... david ... David L. Wasylenko President, Pick Pro

Re: [U2] UV Triggers / SQL

2012-07-24 Thread David L. Wasylenko
LOGTO the account - it'll work there. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of George Gallen

Re: [U2] trimming a list (a test of your ability)

2012-07-12 Thread David L. Wasylenko
JUST FOR FUN... I bumped the iteration count to 10,000,000 And the DIM BIG() to 10,000 Ran in 60 seconds with 157,094 to 355,618 iterations per second. Total byte count of the resulting @MV list was 78,888,896 bytes NOT too shabby ... david ... David L. Wasylenko President, Pick Professionals

Re: [U2] trimming a list (a test of your ability)

2012-07-12 Thread David L. Wasylenko
in either case, the savings is significant using @AM - the DIM() concept is icing and the best method I've seen. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserve

Re: [U2] trimming a list (a test of your ability)

2012-07-12 Thread David L. Wasylenko
25: END . david . David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Daniel McGrath Sent: Thursday, July 12, 2012 3:20 PM To: U2 Us

Re: [U2] trimming a list (a test of your ability)

2012-07-12 Thread David L. Wasylenko
=CHANGE(RESULT,@AM,@VM) 23: * 24:RETURN 25: * 26: * end of job 27: * 28: END . david . David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf

Re: [U2] trimming a list (a test of your ability)

2012-07-12 Thread David L. Wasylenko
*** slightly *** unfair test... 1st loop has more memory available. Set "X" to "" before setting 2nd START.TIME... or run a 2nd program . . david . David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message-

Re: [U2] How to Upload data from my pc to my account

2012-07-02 Thread David L. Wasylenko
Ohhh my; Here come the flames... ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of SUDHEER RAMISETTI Sent

Re: [U2] DICT Whacked in VOC

2012-06-22 Thread David L. Wasylenko
tionary (distinct from the data) part of a file 0002 20 ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson S

Re: [U2] ACH Functionality in ManFact

2012-06-22 Thread David L. Wasylenko
! :-) I wonder what the setup costs, monthly costs etc would be above the $0.35 or so per transaction VS: Adding an umbrella insurance policy for $1,000,000.00 for a hundred bucks a year and going "direct" if there is such a thing via the banks. ... david ... David L. Wasylenko Presid

Re: [U2] Regarding: Unidata dictionaries

2012-06-21 Thread David L. Wasylenko
I know nothing of 'SB.DISP()', however, try replacing '\' with '\\' and give it a go. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u

Re: [U2] Regarding : Usage of the SEL.CMD

2012-06-08 Thread David L. Wasylenko
Correction: "RTFM" = "I don't know, but don't want to admit it" . david . David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@lis

Re: [U2] Why did this compile??

2012-06-07 Thread David L. Wasylenko
Exactly correct... "~":TRIM(LINE<4>) would be used as an output formatting string. Just like TEST.STRING = 12345.678"R2#10" would result in the string " 12345.68" ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...

Re: [U2] Monthly Multivalue Inserts and Speed

2012-06-01 Thread David L. Wasylenko
array instead of a dynamic array would help your type of processing as well. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org

Re: [U2] Monthly Multivalue Inserts and Speed

2012-06-01 Thread David L. Wasylenko
What's the record count and total byte count? ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Laansma

Re: [U2] Monthly Multivalue Inserts and Speed

2012-06-01 Thread David L. Wasylenko
rm an "ANALYZE.FILE {filename}" and post the result? ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Laans

Re: [U2] File Sizing using concurrent option AND FAREWELL

2012-05-23 Thread David L. Wasylenko
"A" company??? I wish I had the list to market into... work for life :-) ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2

Re: [U2] SAVING UNIQUE ( multivalued)

2012-05-17 Thread David L. Wasylenko
... Assuming universe ... Check 'SYS.HELP SELECT' QUOTE: SAVING Specifies that the list be made up of field values instead of record IDs. Do not use a SAVING clause on multivalued fields. ... david ... David L. Wasylenko President, Pick Profession

Re: [U2] Trim trailing attributes off records

2012-05-16 Thread David L. Wasylenko
RELLEVEL 001 X 002 10.1.23 003 REALITY 004 REALITY.FORMAT 005 10.1.23 ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org

Re: [U2] Trim trailing attributes off records

2012-05-16 Thread David L. Wasylenko
I've just run a test... OPEN "FILE"... DIM REC(100) MATREAD REC FROM FILE... CRT REC(1) CRT REC(100) END ALL extra attributes are in REC(100) ... David... ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinf

Re: [U2] Trim trailing attributes off records

2012-05-16 Thread David L. Wasylenko
Not if I remember correctly To prevent lost data, attributes above the DIM size are stuffed as dynamic array elements within the last element. ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users

Re: [U2] [UV] Connecting to a WebService with UV using Authentication Certificate

2012-05-16 Thread David L. Wasylenko
UniVerse also has ways of interfacing with a proxy. I do not have access to the code at the moment ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users

Re: [U2] Trim trailing attributes off records

2012-05-15 Thread David L. Wasylenko
That's a slick solution --- I do believe truncating a dim write is universal. Amen on the truncated ! ... david ... David L. Wasylenko President, Pick Professionals, Inc w) 314 558 1482 d...@pickpro.com -Original Message- From: u2-users-boun...@listserver.u2ug.org [mail

Re: [U2] Proc question

2012-05-10 Thread David L. Wasylenko
If I follow your question: 001 PQN 002 MV %1 "XX*YYYNN" 003 O-- 004 T "Input value:",%1 005 T "Desired output:",%1:G1*1: 006 S2 007 IH%1:G1*1: 008 T "Current content of %2:",%2 This will place 'YYYNN' into buffer %2 ... david ... David L. Waz Pick Professionals, Inc.

Re: [U2] Trim trailing attributes off records

2012-05-10 Thread David L. Wasylenko
C,@AM,"T") WRITE REC ON FILE.HANDLE, ID END ELSE ... handle missing record RELEASE FILE.HANDLE, ID END REPEAT * RETURN * * end of job * (do your own checking of this ad-hoc, untested method) ... david ... David L. Wasylenko P