T24: Alternate command for jshow

449 views
Skip to first unread message

Vinoth

unread,
Sep 25, 2010, 1:23:34 AM9/25/10
to jBASE
Hi,

We are taking bulk of routine names and checking it across in an
environment to find out its presence so we currently using "jshow -c
RTN.NAME". It takes 30 sec to 1 min to get the result bec of this the
performance of program is becoming very slow.

If any body knows alternate command instead of "jshow" pls let me know
it. Many thanks in advance.

Thanks,
Vinoth.

Sai Prasanna

unread,
Sep 26, 2010, 12:16:59 AM9/26/10
to jb...@googlegroups.com
Use the T24 subroutine CHECK.ROUTINE.EXISTS . It in turn uses SYSTEM(X) an jBASE function which is very fast.

Rgs



--
Please read the posting guidelines at: http://groups.google.com/group/jBASE/web/Posting%20Guidelines

IMPORTANT: Type T24: at the start of the subject line for questions specific to Globus/T24

To post, send email to jB...@googlegroups.com
To unsubscribe, send email to jBASE-un...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jBASE?hl=en

Artiom Popov

unread,
Sep 26, 2010, 1:37:41 AM9/26/10
to jBASE
hi
you can use CHECK.ROUTINE.EXIST procedure

example:

V.RTN = "myroutine"
V.COMPILED.OR.NOT = ''
V.RETURN.INFO = ''
CALL CHECK.ROUTINE.EXIST(V.RTN, V.COMPILED.OR.NOT, V.RETURN.INFO)
IF V.COMPILED.OR.NOT EQ 0 THEN
E = 'ROUTINE DOES NOT EXIST'
END

Look at Programming Standards.pdf for details

●๋•Vin♥●๋•

unread,
Sep 27, 2010, 12:40:02 AM9/27/10
to jb...@googlegroups.com
Hi every one,

I used CHECK.ROUTINE.EXIST it works very fine.Thank u very much for
your reply .

Reply all
Reply to author
Forward
0 new messages