vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| |||
| Dave <aaa@bbb.com> wrote in message news:<avlqp05hjhnka92cru8q49c4q1kdp6qmk0@4ax.com>. .. > Hi, > > Can anyone tell me if there is a vsam for AIX? If so, is it available > from IBM (and what is the product called)? If not from IBM, then who? > > Thanks, > Dave The following may be totally off base but you may want to check it out. At a previous employer of mine, they wanted to get off their mainframe either by replacing apps with vendor apps. However, they were several they could not, they used a product called "UniKix"(check the sp) to run the remainder of their MF apps on AIX. My apologies for the long drawn out reply. HTH, Pete's |
| |||
| While stranded on information super highway Dave wrote: > Hi, > > Can anyone tell me if there is a vsam for AIX? If so, is it available > from IBM (and what is the product called)? If not from IBM, then who? What are you trying to accomplish? Micro Focus COBOL supoprts VSAM enulation using C-ISAM on AIX. I think thay also have middle ware program that can read VSAM files from mainframe. > > Thanks, > Dave > -- Hemant Shah /"\ ASCII ribbon campaign E-mail: NoJunkMailshah@xnet.com \ / --------------------- X against HTML mail TO REPLY, REMOVE NoJunkMail / \ and postings FROM MY E-MAIL ADDRESS. -----------------[DO NOT SEND UNSOLICITED BULK E-MAIL]------------------ I haven't lost my mind, Above opinions are mine only. it's backed up on tape somewhere. Others can have their own. |
| |||
| Pete's wrote: > > The following may be totally off base but you may want to check it > out. At a previous employer of mine, they wanted to get off their > mainframe either by replacing apps with vendor apps. However, they > were several they could not, they used a product called "UniKix"(check > the sp) to run the remainder of their MF apps on AIX. My apologies > for the long drawn out reply. > > HTH, > Pete's Hi, this software (UNIKIX), was then named "TRANS", and is called now MTP , and is owned by Sun Microsystems. -) AFAIK, BNP PARIBAS (frenck Bank) is the only AIX client. -) MTP is a Transaction Processor, not only a VSAM-TYPE software. Regards, Stephane |
| |||
| > What are you trying to accomplish? We are porting two mainframe applications to AIX. The mainframe is being decommissioned, so reading files from the mainframe is out of the question. One application is totally batch and it uses vsam files. The other is CICS and batch using IMS databases. The CICS application is being converted to DB2, and we hoped that we would not have to convert the vsam files from the first application, to db2 also. We are using TX Series 5.1 for the CICS application, and it appears that Encina (which comes with TX Series), emulates VSAM, but only for CICS programs. Converting the batch programs to batch CICS programs is not an option. We are also using IBM Cobol for AIX. Thanks for your reply, Dave |
| |||
| In article <j8a2q0d830ne7fns79feuohmaoelbda8rt@4ax.com>, Dave <aaa@bbb.com> writes: > > > What are you trying to accomplish? > > We are porting two mainframe applications to AIX. The mainframe is > being decommissioned, so reading files from the mainframe is out of > the question. > We went through a similar thing about a decade ago (MVS=>AIX). An acceptable solution was to export the VSAM files in some ftp-able format on the MVS side (can't remember the command, it's too long ago, but it was a standard one). On arrival on the AIX side a homegrown utility converted the stuff into some UNIX-friendly database (in our case gdbm freeware, whose API came close to the original VSAM keyed record retrieval). maybe this helps |
| ||||
| >On arrival on the AIX side a homegrown utility converted the stuff into >some UNIX-friendly database (in our case gdbm freeware, whose API >came close to the original VSAM keyed record retrieval). > >maybe this helps I will look into it. Thanks very much! Dave |