Re: How do I issue Vary SMS commands in batch

2009-11-30 Thread Shmuel Metz (Seymour J.)
In , on 11/26/2009 at 02:52 PM, said: >I would like to issue the V SMS,VOL(xxx),Disable,new command, or an >equivalent, in batch. >The job would issue the command, then run a defrag step, and then issue >another command to enable the volume. >Is this possible? Yes, if your security folks

Re: How do I issue Vary SMS commands in batch

2009-11-27 Thread Jan MOEYERSONS
On Thu, 26 Nov 2009 14:52:25 +0200, גדי בן אבי wrote: >The job would issue the command, then run a defrag step, and then issue another command to enable the volume. > >Is this possible? Can I suggest you search the archives? This topic has come up s many times, there's bound to be a

Re: How do I issue Vary SMS commands in batch

2009-11-26 Thread Itschak Mugzach
I would issue the commands using TSO Console command and get the response to see if the command was executed with no problem. Entering the command is one thing, and ensuring that the command did what you wanted is another thing. Rexx / Clist are best platforms for doing this. Regards, ITschak On

Re: How do I issue Vary SMS commands in batch

2009-11-26 Thread Paul Gilmartin
On Thu, 26 Nov 2009 08:12:28 -0500, Lizette Koehler wrote: > >You could use a scheduling package to submit the first job that would do the >vary, then submit a second job to do the defrag, then have it issue a last >job to do the last vary. > Why three jobs? Couldn't the first vary and the defrag

Re: How do I issue Vary SMS commands in batch

2009-11-26 Thread Lizette Koehler
Gadi, You could use a scheduling package to submit the first job that would do the vary, then submit a second job to do the defrag, then have it issue a last job to do the last vary. Or you could write a REXX that runs in batch that does all this and does condition code checking. Or you could wr

Re: How do I issue Vary SMS commands in batch

2009-11-26 Thread Binyamin Dissen
On Thu, 26 Nov 2009 14:52:25 +0200 ??? ?? ??? wrote: :>I would like to issue the ‘V SMS,VOL(xxx),Disable,new’ command, or an equivalent, in batch. :>The job would issue the command, then run a defrag step, and then issue another command to enable the volume. :>Is this possible? :>Using the C

Re: How do I issue Vary SMS commands in batch

2009-11-26 Thread גדי בן אבי
Thanks -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Juergen Keller Sent: Thursday, November 26, 2009 2:57 PM To: IBM-MAIN@bama.ua.edu Subject: Re: How do I issue Vary SMS commands in batch try this: //CMD EXEC PGM=IEBGENER

Re: How do I issue Vary SMS commands in batch

2009-11-26 Thread Juergen Keller
try this: //CMD EXEC PGM=IEBGENER //SYSPRINT DD SYSOUT=* //SYSINDD DUMMY //SYSUT2 DD SYSOUT=(A,INTRDR) //SYSUT1 DD DATA,DLM=XX /*$VS,'cmd' XX regards Juergen ---

How do I issue Vary SMS commands in batch

2009-11-26 Thread גדי בן אבי
Hi, I would like to issue the ‘V SMS,VOL(xxx),Disable,new’ command, or an equivalent, in batch. The job would issue the command, then run a defrag step, and then issue another command to enable the volume. Is this possible? Using the COMMAND JCL statement won’t work, because the command would

Re: TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Lionel B Dyck
Take a look at a tool I wrote called FTPBatch on my website (http://www.lbdsoftware.com) which will simplify doing this and it supports adrdssu as well. It is an ispf dialog that generates the appropriate commands for foreground execution or jcl for batch execution. Lionel B. Dyck, Consultant/S

TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Don Maxwell
I want to copy datasets from one z/OS image to another. There is no shared DASD. To use a tape is not easy because of management problems. I tried to XMIT using a batch job. When I ran the batch receive job, the datasets were not received in correct DD names . Is there a way to get around this pro

Re: TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Ale Eba
Thanks Lionel and Kurt. I will use ADRDSSU to create three or four groups because of space problem and use FTP to do the transfer. Ale - Get the Yahoo! toolbar and be alerted to new email wherever you're surfing. ---

Re: TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Kurt Gramling
Ale, We use a process that we can compress many datasets using ADRDSSU DUMP (DFDSS Utility) into a single dataset, XMIT this dataset into a secondary dataset which can then be FTP'd to the final destination. This allows us to do many different kinds of datasets within a single transfer. On t

Re: TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Kurt Gramling
cc: Sent by: "IBMSubject: [IBM-MAIN] TSO XMIT and RECEIVE commands in batch

Re: TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Lionel B Dyck
Have you considered using FTP? That might be more flexible. Lionel B. Dyck, Consultant/Specialist Enterprise Platform Services, Mainframe Engineering KP-IT Enterprise Engineering, Client and Platform Engineering Services (CAPES) 925-926-5332 (8-473-5332) | E-Mail: [EMAIL PROTECTED] AIM: lbdyc

TSO XMIT and RECEIVE commands in batch

2007-05-23 Thread Ale Eba
I want to copy datasets from one z/OS image to another. There is no shared DASD. To use a tape is not easy because of management problems. I tried to XMIT using a batch job. When I ran the batch receive job, the datasets were not received in correct DD names . Is there a way to get around this p

Re: Commands in Batch

2006-03-06 Thread Brian Westerman
On Thu, 2 Mar 2006 20:41:51 -0500, Shmuel Metz (Seymour J.) <[EMAIL PROTECTED]> wrote: >In <[EMAIL PROTECTED]>, >on 03/02/2006 > at 01:02 PM, Philip Miscione <[EMAIL PROTECTED]> said: > >>What is the best method of issuing vary online/offline commands in >>the batch. > >The TSO CONSOLE command.

Re: Commands in Batch

2006-03-03 Thread Shmuel Metz (Seymour J.)
In <[EMAIL PROTECTED]>, on 03/02/2006 at 01:02 PM, Philip Miscione <[EMAIL PROTECTED]> said: >What is the best method of issuing vary online/offline commands in >the batch. The TSO CONSOLE command. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see

Re: Commands in Batch

2006-03-02 Thread Ed Gould
On Mar 2, 2006, at 12:29 PM, Philip Miscione wrote: Thanks, Thanks to all I am going to use the /*$vs,' ' command in the batch. B4 the JOBCARD Philip, I hope you have these protected or just anyone can use it to do just about anything you want, including canceling production jobs

Re: Commands in Batch

2006-03-02 Thread Ted MacNEIL
>What is the best method of issuing vary online/offline commands in the batch. By NOT doing them! (8-{>} - -teD I’m an enthusiastic proselytiser of the universal panacea I believe in! -- For IBM-MAIN subscribe / signoff / arc

Re: Commands in Batch

2006-03-02 Thread Eric Bielefeld
ning Equipment 414-671-7849 Milwaukee, Wisconsin - Original Message - From: Hal Merritt <[EMAIL PROTECTED]> Date: Thursday, March 2, 2006 1:07 pm Subject: Re: Commands in Batch To: IBM-MAIN@BAMA.UA.EDU > Also might also be aware that the commands are executed > immediately u

Re: Commands in Batch

2006-03-02 Thread Chris Mason
ile since I saw a "card reader". Chris Mason - Original Message - From: "Hal Merritt" <[EMAIL PROTECTED]> Newsgroups: bit.listserv.ibm-main To: Sent: Thursday, 02 March, 2006 8:07 PM Subject: Re: Commands in Batch > Also might also be aware that the commands

Re: Commands in Batch

2006-03-02 Thread Hal Merritt
eferred' method. I am not familiar with the /*$VS,' ' syntax. -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Ed Finnell Sent: Thursday, March 02, 2006 12:36 PM To: IBM-MAIN@BAMA.UA.EDU Subject: Re: Commands in Batch In a m

Re: Commands in Batch

2006-03-02 Thread Jack Kelly
as long as you don't have security too tight, kiss //BR14001 EXEC PGM=IEFBR14 // COMMAND 'V 501,ONLINE ' Jack Kelly LA Systems @ US Courts x 202-502-2390 -- For IBM-MAIN subscribe / signoff / archive access instructions, send em

Re: Commands in Batch

2006-03-02 Thread Ed Finnell
In a message dated 3/2/2006 12:30:49 P.M. Central Standard Time, [EMAIL PROTECTED] writes: am going to use the /*$vs,' ' command in the batch. B4 the JOBCARD >> The initiator that it runs in need AUTH=ALL and if opercmds. is active the submitting user needs authority to the subcl

Re: Commands in Batch

2006-03-02 Thread Philip Miscione
ubject: Re: Commands in Batch Sensitivity: Private I typically do this via batch MXI: //MXIBATCH EXEC PGM=MXI,PARM='BATCH,TITLES' //SYSPRINT DD SYSOUT=* //SYSIN DD * /V ,OFFLINE /...

Re: Commands in Batch

2006-03-02 Thread Jakubek, Jan
I typically do this via batch MXI: //MXIBATCH EXEC PGM=MXI,PARM='BATCH,TITLES' //SYSPRINT DD SYSOUT=* //SYSIN DD * /V ,OFFLINE /... /* Hth ---

Re: Commands in Batch

2006-03-02 Thread Rob Scott
Philip, The most efficient (and safest) way is to interface to the IEEVARYD service. I have a sample program called "VARYDASD" that uses IEEVARYD that you can download from : http://www.mximvs.com/utility-programs.shtml Source code is included. Rob Scott Rocket Software http://www.rs.com/por

Commands in Batch

2006-03-02 Thread Philip Miscione
Hello, What is the best method of issuing vary online/offline commands in the batch. TIA Philip A. Miscione Sr Project Leader Barnes & Noble, Inc. email: [EMAIL PROTECTED] Phone: 516-338-8227 Fax : 516-338-8487 --