Re: Each alias belongs which storage group

2018-12-10 Thread Vernooij, Kees (ITOP NM) - KLM
You can assign all datasets of an HLQ (=alias) to a storage group. Kees. > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Peter Ten Eyck > Sent: 07 December, 2018 17:31 > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Each alias belo

Re: "first previous"?

2018-12-10 Thread Vernooij, Kees (ITOP NM) - KLM
The fact that multiple readers 'think' they know what is meant, is sufficient reason to update the text. Kees. > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of Linda > Sent: 08 December, 2018 1:09 > To: IBM-MAIN@LISTSERV.UA.EDU >

RES: SFTP between AIX to Mainframe

2018-12-10 Thread Carlos Bodra - Pessoal
Verify if MDI From Luminex Inc can help you. www.luminex.com Carlos Bodra IBM System Certified System z São Paulo - Brazil -Mensagem original- De: IBM Mainframe Discussion List Em nome de venkat kulkarni Enviada em: domingo, 9 de dezembro de 2018 14:35 Para: IBM-MAIN@LISTSERV.UA.EDU Ass

TELNET under TLS - Performance impact?

2018-12-10 Thread Juan Mautalen
Hi! We haveimplemented SECURE TELNET. Our implementation is using AT-TLS (we haveconfigured PAGENT, that installs its AT-TLS policies to the TCPIP stack). Wealso have ICSF up and running, and digital certificates private keys are stored inICSF. Also CPACF coprocessors are available. TLSinvo

ICKDSF QUESTION

2018-12-10 Thread esmie moo
Gentle Readers, I have a slight problem.  A disk was flashed using FDRFLASH, however, the relationship between the source and target was not released.  I looked at the option of using ICKDSF to break the relationship. Below is the job I intend to use: /*                                         /

Breaking text file at position 72?

2018-12-10 Thread Charles Mills
This is not truly a mainframe question but I am sure everyone can see the mainframe relevance and why it is a mainframe problem for me. Some of you mainframers may have encountered the same problem. I have a text file on Windows with CR-LF only at paragraph boundaries. Some of the lines are severa

Re: Breaking text file at position 72?

2018-12-10 Thread Robert Longabaugh
You could transfer to a sequential file and then go into ISPF Edit and enter the line command TF72 (text flow) on the first line. On Mon, Dec 10, 2018 at 10:37 AM Charles Mills wrote: > This is not truly a mainframe question but I am sure everyone can see the > mainframe relevance and why it is

Re: Breaking text file at position 72?

2018-12-10 Thread David Spiegel
Short Rexx program. On 2018-12-10 11:37, Charles Mills wrote: > This is not truly a mainframe question but I am sure everyone can see the > mainframe relevance and why it is a mainframe problem for me. Some of you > mainframers may have encountered the same problem. > > I have a text file on Windo

Re: Breaking text file at position 72?

2018-12-10 Thread Lizette Koehler
Do you want the whole file wrapped at col.72? Do you want each individual line spilt at col.72 and when the line ends, start on the next line? There is ICETOOL, DFSORT, or ISPF Text Flow - it all depends on how you want the data split. Thank Lizette > -Original Message- > From: IBM

Re: Breaking text file at position 72?

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 08:37:21 -0800, Charles Mills wrote: > >I would like to break the lines (intelligently -- at an English word >boundary) no later than column 72. > fold -sw72 file.text --- gil -- For IBM-MAIN subscribe /

Re: Breaking text file at position 72?

2018-12-10 Thread Charles Mills
Perhaps a command that is local to your site? IKJ56500I COMMAND TF72 NOT FOUND Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Robert Longabaugh Sent: Monday, December 10, 2018 8:51 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: R

Re: Breaking text file at position 72?

2018-12-10 Thread Tomasz Rola
On Mon, Dec 10, 2018 at 08:37:21AM -0800, Charles Mills wrote: > This is not truly a mainframe question but I am sure everyone can see the > mainframe relevance and why it is a mainframe problem for me. Some of you > mainframers may have encountered the same problem. > > I have a text file on Wind

Re: ICKDSF QUESTION

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 16:25:53 +, esmie moo wrote: >Gentle Readers, >I have a slight problem.  A disk was flashed using FDRFLASH, however, the >relationship between the source and target was not released.  I looked at the >option of using ICKDSF to break the relationship. Below is the job I in

Re: Breaking text file at position 72?

2018-12-10 Thread Jeremy Nicoll
On Mon, 10 Dec 2018, at 17:13, Charles Mills wrote: > Perhaps a command that is local to your site? > > IKJ56500I COMMAND TF72 NOT FOUND That IKJ implies TSO attempted to process the command which suggests to me you maybe entered "TSO TF72". TF is an ispf edit command, to be entered in the comma

Re: Breaking text file at position 72?

2018-12-10 Thread Robert Longabaugh
It is an IBM supplied Line Command in ISPF. You would type over the line numbers instead of entering it on the command line. I also realized later that you would have to repeat this for the first line of each paragraph, so this might not be the best solution. Before =COLS> +1+2---

Re: Breaking text file at position 72?

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 09:13:15 -0800, Charles Mills wrote: >Perhaps a command that is local to your site? > >IKJ56500I COMMAND TF72 NOT FOUND > https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1.f54em00/tflow.htm -- gil --

Re: Breaking text file at position 72?

2018-12-10 Thread Ray Pearce
There is a very handy plugin for Notepad++ called TextFX Once this is installed using the Plugin Manager, just open your file, select all of the text (Ctrl-A) and from the menu select TextFX/TextFX Edit/ReWrap text to (Clipboard or 72) width It already defaults to wrapping at column 72 for you.

Re: Breaking text file at position 72?

2018-12-10 Thread Charles Mills
Oh, I did it as a primary command because I wanted it done to the entire file. I would need to do on each line. Not out of the question. I have been sent a Notepad++ answer off-list that involves Regex and looks the best so far: -> Find (.{1,72})(\h+\R?|\R) -> Replace \1\r\n Thank you -- you k

Re: Breaking text file at position 72?

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 09:48:20 -0800, Charles Mills wrote: >Oh, I did it as a primary command because I wanted it done to the entire >file. > >I would need to do on each line. Not out of the question. > I believe it operates on each succeeding line until the indention changes. -- gil

Re: ICKDSF QUESTION

2018-12-10 Thread esmie moo
Sorry for the misalignment.  When I pasted the jcl, it looked fine.  Here it is again. / /*                                    //STEP1    EXEC PGM=ICKDSF,REGION=4M   //SYSPRINT DD   SYSOUT=*              //SYSIN    DD *                         FCWITHDR SDEVN( 3A4B) TDEVN( B67A)     /*           

Re: SFTP between AIX to Mainframe

2018-12-10 Thread venkat kulkarni
Hello All, We have strange SFTP output cases. 1) We had requirement of sending ascii file using SFTP from Solaris to Mainframe . So, we used DD command to convert this ascii file into ebcdic using conv parameter and CBS size equal to record length of mainframe dataset and then receive the file f

Re: Breaking text file at position 72?

2018-12-10 Thread Jesse 1 Robinson
ISPF text editing line commands are both ancient and underappreciated. They were probably a lot more utilized when a lot of text management software operated directly on mainframe files. This was before 3270 emulation, where the user could easily switch between m/f and PC files on the same devic

Re: TELNET under TLS - Performance impact?

2018-12-10 Thread Wolfgang Fritz
check this product on mainframe and your problem will be solved https://dovetail.com/products/sftp.html regards Wolfgang Fritz Am 10.12.2018 um 16:07 schrieb Juan Mautalen: Hi! We haveimplemented SECURE TELNET. Our implementation is using AT-TLS (we haveconfigured PAGENT, that installs its

Re: SFTP between AIX to Mainframe

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 21:01:36 +0300, venkat kulkarni wrote: > >We have strange SFTP output cases. > >1) We had requirement of sending ascii file using SFTP from Solaris to >Mainframe . So, we used DD command to convert this ascii file into ebcdic > >using conv parameter and CBS size equal to record

Re: SFTP between AIX to Mainframe

2018-12-10 Thread venkat kulkarni
Non readable format means in ebcdic format. On Mon, Dec 10, 2018 at 9:18 PM Paul Gilmartin < 000433f07816-dmarc-requ...@listserv.ua.edu> wrote: > On Mon, 10 Dec 2018 21:01:36 +0300, venkat kulkarni wrote: > > > >We have strange SFTP output cases. > > > >1) We had requirement of sending as

Re: Breaking text file at position 72?

2018-12-10 Thread Seymour J Metz
My PC editor has TS and TF. Alas, it is abandonware. -- Shmuel (Seymour J.) Metz http://mason.gmu.edu/~smetz3 From: IBM Mainframe Discussion List on behalf of Jesse 1 Robinson Sent: Monday, December 10, 2018 1:02 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject

Re: SFTP between AIX to Mainframe

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 21:24:08 +0300, venkat kulkarni wrote: >Non readable format means in ebcdic format. > ??? I would that on the mainframe you should want it in EBCDIC format. >> On Mon, 10 Dec 2018 21:01:36 +0300, venkat kulkarni wrote: >> > >> >1) We had requirement of sending ascii file us

Re: Breaking text file at position 72?

2018-12-10 Thread Blake, Daniel J [CTR]
One TFnn works for any/all lines between blanks lines. So if you have a line followed by a blank line, text line, blank line, yes each line will require a TFnn line command. Two or more lines without separating blank(s) require only one TFnn line command. Dan -Original Message- Fro

Re: Code vulnerability

2018-12-10 Thread Seymour J Metz
I would take out a large life insurance policy before doing something like that. My colleagues would kill me, and I couldn't blame them. I will admit to having used AMASPZAP, but only as a last resort and with the assistance of a zapmaker program. -- Shmuel (Seymour J.) Metz http://mason.gmu.e

Re: SFTP between AIX to Mainframe

2018-12-10 Thread Kirk Wolf
With Co:Z SFTP on z/OS, you can do this from AIX: aix> sftp myu...@myzos.com sftp> ls /+mode=text,clientcp=ISO8859-1,servercp=IBM-1047 sftp> put aix.file //hlq.zos.data Kirk Wolf Dovetailed Technologies PS> Co:Z SFTP is available free under our Community License, Enterprise License and Support

Re: SFTP between AIX to Mainframe

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 21:01:36 +0300, venkat kulkarni wrote: >Hello All, > >We have strange SFTP output cases. > >1) We had requirement of sending ascii file using SFTP from Solaris to >Mainframe . So, we used DD command to convert this ascii file into ebcdic > Please supply more information for di

Re: Each alias belongs which storage group

2018-12-10 Thread Peter Ten Eyck
Yes, that is how I recall it, not alias in the catalog sense, really a "wildcard" of a DSN if you will. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: I

Re: Breaking text file at position 72?

2018-12-10 Thread Nims,Alva John (Al)
TextFX appears to be no longer maintained and does not appear to be available for new installations: http://docs.notepad-plus-plus.org/index.php?title=Plugin_Central#T Al Nims Systems Admin/Programmer III UF Information Technology 720 Bld. 3rd Floor, #9 P.O. Box 112050 Gainesville, FL. 32611 (e)

Re: Breaking text file at position 72?

2018-12-10 Thread Rob Schramm
Ultraedit will do it as well. looks like sed or awk will do it as well. Although every time I come back to regular expressions.. I come away with an irregular feeling. Rob Schramm On Mon, Dec 10, 2018 at 3:03 PM Nims,Alva John (Al) wrote: > TextFX appears to be no longer maintained and does n

Re: Breaking text file at position 72?

2018-12-10 Thread Tom Marchant
On Mon, 10 Dec 2018 18:45:54 +, Blake, Daniel J [CTR] wrote: >One TFnn works for any/all lines between blanks lines. So if you have >a line followed by a blank line, text line, blank line, yes each line >will require a TFnn line command. Two or more lines without >separating blank

Re: Breaking text file at position 72?

2018-12-10 Thread Charles Mills
I think the longest is 9K. If there were any longer I could pre-split them manually. But yes, I think TF might flow the whole file and lose the paragraph breaks. Someone who will remain nameless pointed out that I could "soft" flow the lines in Notepad++ and then paste them that way into a 3270

Re: Breaking text file at position 72?

2018-12-10 Thread Jesse 1 Robinson
Text consisting of paragraphs with no indentions or blank lines seems like a pretty odd notion of 'paragraphs'. A fair amount of touchup and tweaks may be necessary to get this puppy ready for publication, but as I said earlier, for an ad hoc one-off process, manual intervention does not seem un

Re: Breaking text file at position 72?

2018-12-10 Thread Sri h Kolusu
>>If the data that Charles is processing contains paragraphs without intervening blank lines, all the paragraphs will be flowed together, not likely what he wants. Also, he mentioned that some of the lines are several thousand bytes long. Tom, DFSORT has resize operator which can split long reco

Re: Breaking text file at position 72?

2018-12-10 Thread Edward Finnell
Seems like WSA would be a good intermediary? In a message dated 12/10/2018 3:26:16 PM Central Standard Time, jesse1.robin...@sce.com writes: but as I said earlier, for an ad hoc one-off process, manual intervention does not seem unreasonable or really unavoidable. Spending hours of development

Re: Breaking text file at position 72?

2018-12-10 Thread Tom Marchant
On Mon, 10 Dec 2018 14:32:11 -0700, Sri h Kolusu wrote: >The output from this job is 26 records with each record having 72 >characters That's great, but unless I misunderstand what your job will do, it isn't what Charles needs. He needs to split the lines at a word boundary at or before column

Re: Breaking text file at position 72?

2018-12-10 Thread Paul Gilmartin
On Mon, 10 Dec 2018 21:25:34 +, Jesse 1 Robinson wrote: >Text consisting of paragraphs with no indentions or blank lines seems like a >pretty odd notion of 'paragraphs'. ... > It's MS Word's convention. Pressing ENTER inserts a ¶. On Mon, 10 Dec 2018 14:32:11 -0700, Sri h Kolusu wrote: >>

Re: Breaking text file at position 72?

2018-12-10 Thread Sri h Kolusu
>>He needs to split the lines at a word boundary at or before column 72. DFSORT wouldn't be able to handle word boundary. I was addressing the case where OP had a string of text without a blank space in between and if he wants to split it at 72 bytes, then DFSORT can handle it. Thanks, Kolusu DF

Re: IBM sells software portfolio including Notes and Domino to HCL for $1.8b | ZDNet

2018-12-10 Thread Hank Oerlemans
Purely as a user I was quite happy with Notes and Verse. I'm now stuck with MS-everything and don't like the patched together feel of things and unexplained periodic performance problems. Perhaps in another 5-years I'll be converted :-) Hank

Re: Breaking text file at position 72?

2018-12-10 Thread Charles Mills
It's a totally reasonable "non-mainframey" text file. It has no carriage returns except at logical points, not at an arbitrary line width point. Most e-mails you get follow this convention (other than old listserves that break up lines like this one). It has nothing to do with MS-Word but yes,

Re: Breaking text file at position 72?

2018-12-10 Thread Paul Gilmartin
On 2018-12-10, at 15:44:31, Charles Mills wrote: > It has nothing to do with MS-Word but yes, MS-Word also follows this > convention. No, the lines are nowhere near of equal length. Fold would > probably work. I have z/OS of course. But as I said I now have the problem > solved. Several good

AW: Breaking text file at position 72?

2018-12-10 Thread Mike Beer
Any XEDIT compatible editor (e.g. THE) should do this with a few commands ZONE 1 72 FLOW FILE Best regards Mike -Ursprüngliche Nachricht- Von: IBM Mainframe Discussion List Im Auftrag von Charles Mills Gesendet: 10 December, 2018 18:48 An: IBM-MAIN@LISTSERV.UA.EDU Betreff: Re: Breaking

Re: AW: Breaking text file at position 72?

2018-12-10 Thread Paul Gilmartin
On Tue, 11 Dec 2018 06:05:57 +0100, Mike Beer wrote: >Any XEDIT compatible editor (e.g. THE) should do this with a few commands > >ZONE 1 72 >FLOW >FILE > I find no FLOW command in: z/VM Version 7 Release 1 XEDIT Commands and Macros Reference IBM SC24-6337-00 Is XEDIT considered an "XEDIT comp