开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育
SORT LIBRARIES FOR MUSIC WANTED. 10
Hi everyone: I'm working with PL/I under MUSIC/SP under HERCULES simulator. I want to sort a file, by several keys, But MUSIC Documentation says, the standard IBM libraries , still used today,PLISRTX are not available under music and that one can use SORT,MNSORT or DSORT. Thing is SORT is just one key sort subroutine , MNSORT, is an user interfase multiple key application and DSORT a multiple key subroutine, that can be called from FORTRAN, COBOL OR PL/I. But DSORT is missing in MUSIC. I managed to write a rexx script to call MNSORT, send parameters, but this is not possible from within PLI(f), with no spawn capability. I found thar PLISORTX and DSORT were part of the original MVS for IBM/360, but it is beyond my means to rebuild that libraries from source code. Does anyone know if it's possible to get those losto sort libraries and install them in MUSIC ? Regards -- Carlos Argentina
Started by carlos feldman @ · Most recent @
USING UDS 5
My next logical step after having used TAPEs is use Disk UDS My program starts with: But I have this error. Same thing happens with GUEST and $000 user. Where do I change this autorization, to be able to allocate UDS? (BTW &&TEMP UDS work OK ) Thanks in advance for your help. -- Carlos Argentina
Started by carlos feldman @ · Most recent @
Put unit online then type "/VARY xxx ON" or cancel job with "/CAN" when tryig to use a tape 12
Hi everyone! I'm tryi9ng to learn to use tapes in Music/SP 6.2 running in hercules 3.17: The last time I used a tape was in 1980 under CM/S and it was mounted for my by the sysop. I made a small pl/I program which writes some 80 bytes blocks and I'm having this message "Put unit online then type "/VARY xxx ON" or cancel job with "/CAN"" when I run it, then issue "/vary 100 on" but I get the same message again. Following the instructions from mr. Coghlan on installeing VMARC, I created a tapefile with devinit and gave a volume name with hetinit. I tested the program with 2 different tape names "TAP001" and "VOL01": this are the files: I hope some one can advise me on how to solve this issue. t3.pli: ====== /INFO MUSIC USERID(GUEST) PW(PASS4U) TIME(5) ROUTE(MUSIC) /FILE DD1 TAPE VOL(TAP001) RSIZ(80) RECF(F) BLK(800) /FILE SYSPRINT N(LIST) NEW(REPL) /COM /FILE DD1 N(TAP001) LRECL(80) NEW(REPL) /SYS REGION=500 /INC PL1F /OPT XREF,SOURCE,NEST,ATR TAPE: PROCEDURE OPTIONS (MAIN); DCL DD1 FILE OUTPUT RECORD SEQUENTIAL ; DCL 1 BFR, 2 A CHAR(80) ; PUT SKIP LIST ('PROGRAM START'); BFR.A=(8)'1234567890'; PUT SKIP DATA(BFR); DO I=1 TO 10 ; WRITE FILE (DD1) FROM (BFR); END; PUT SKIP LIST ('PROGRAM END'); END; HERCULES.CNF file: ** # TAPE Devices 0100-0101 3420 * ISSUING HETMAP T100.HET I GET: Hercules HET and AWS tape map program Version 3.07 (c)Copyright 1999-2010 by Roger Bowler, Jan Jaeger, and others --------------------- Filename : T100.HET --------------------- Label : 'VOL1' Volume Serial : 'TAP001' Improved Data Rec. : ' ' Owner Code : ' ' --------------------- Label : 'HDR1' Dataset ID : '00000000000000000' Volume Serial : '000000' Volume Sequence : '0000' Dataset Sequence : '0000' GDG Number : '0000' GDG Version : '00' Creation Date : '000000' Expiration Date : '000000' Dataset Security : '0' Block Count Low : '000000' System Code : '0000000000000' Block Count High : '0000' --------------------- File # : 1 Blocks : 2 Min Blocksize : 80 Max Blocksize : 80 Uncompressed bytes : 160 Min Blocksize-Comp : 15 Devlist in Hercules: 0:0100 3420 TAP100.HET [1:00000000] 0:0101 3420 * 0:0201 3370 disks\MUSICX.3370 [0,307200] open 0:0202 3370 disks\MUSIC1.3370 [0,558000] open Submitting T3.pli to music queue gets the following messages on console: ** 08:31 M306 /ID MUSJOB GUEST 005 500 000 R=MUSIC C=1 F= 08:31 M314 Put unit online then type "/VARY xxx ON" or cancel job with "/CAN" 08:31 M408 CMD FROM 28 $000000 : /VARY 100 ON <------------ VARY ON ISSUED IN CONSOLE 08:31 M314 Put unit online then type "/VARY xxx ON" or cancel job with "/CAN" I have to cancel to get the batch done, since the tape is never accesible to the program. -- Carlos Argentina
Started by carlos feldman @ · Most recent @
Question on MUSIC JCL 7
HI ! I was working on some batches to compile PL/I programs. My first approach, was very primitive, a batch with all sources and data, like the time of punched cards, and it worked well: /SYS REGION=500 /FILE SYSPRINT N(PLITEST-2.PRN) NEW(REPL) LRECL(133) /COM /file SYSPUNCH N(PLITEST-2.LMOD) NEW(REPL) /COM /FILE SYSUT3 N(PLITEST-2.SUT3) NEW(REPL) LRECL(80) /INC PL1F /OPT NOSOURCE,DECK,NONEST,NOATTR /INC PLITEST-2.PLI /DATA A=1 B=2 C=3; /END Then I made three different batches, one to compile, other to linkedit. and other to run, that worked OK. Since I Intend to compile several modules on dis, I wrote a jcl batch, to compile, ling and run, in separe sections, but it give some error. Thing is, the compiler does not stop, and keeps reading JCL statements as part of the program: PLITEST-2 is the compiler Output and MYPROG.LMOD is the loadable module to be run. (compilation part) /SYS REGION=500 /FILE SYSPRINT N(PLITEST-2.PRN) NEW(REPL) LRECL(133) /file SYSPUNCH N(PLITEST-2.LMOD) NEW(REPL) /INC PL1F /OPT NOSOURCE,DECK,NONEST,NOATTR,PRINT /JOB NOGO /INC PLITEST-2.PLI (LINKEDIT PART) /JOB /file lmod n(MYPROG.LMOD) NEW(REP) lr(128) recfm(f) space(100) /file sublibos pds(*pl1f,*mus,*os) /load lked /job map,nogo,print,stats,mode=os,name=MYPROG .org 4a00 /INC PLITEST-2.LMOD (Execution part) /JOB /inc xmpl1f MYPROG n(MYPROG.lmod) (DATA SECTION) A=1 B=2 C=3 ; /END Can you give me any suggestion gentlemen ? -- Carlos Argentina
Started by carlos feldman @ · Most recent @
which archiving-filing system use ? 5
hi everyone. which file/directory archiving method are you using ? Music/ SP mentions a) archiv/retrev ( not installed ) b) exarch/exrest (not installed) c) filarch/filrst/filchk ( filrst not installed, filechk does nothing ) d) mfarch/mfarc2/mfcheck/mfrest Option C seems to be for any user, but is incomplete you can create a file with all your PLI files , but not list or restore them. for instance /INFO MUSIC R(SYSTEM) /COM **** FARC PROCESSING /FILE 1 NAME(GROUP.ARC) NEW(REP) RECFM(FC) LRECL(80) /COM /FILE 6 N(GROUP.PRN) NEW(REP) LRECL(133) /INCLUDE *COM:FILARC OUTPUT=1 GUEST:*.PLI this creates group.arc but this fails, with no message /COM /FILE 1 NAME(GROUP.ARC) LRECL(80) RECFM(FC) SHR /FILE 1 NAME(GROUP.ARC) SHR /INCLUDE *COM:FILECH INPUT=1 INFO=T NAMES=T Option D it's only for an admin user, and seems to be more like a daily backup task, I wasn't able to trigger a backup to a .mfarc file, for a specific directory or user. Currently I'm using ftp for backup ( only good for text files, I suppose that binaries can be corrupted ). What do you suggest. BTW I was able to compile and run a few PL/I for newer versions, in PL/I (F), with a few corrections: 1-lines must be between columns 2 and 72 ( obvious is IBM/360 card style) 2-Text MUST be CAPITALS. 3-You can't be a purist and "exit" or "break" a do while loop, you must use infamous (LOL) GO TO eg: on ENDFILE (SYSYN) GOTO END; 4- You can use matrixes and complex numbers !!! BUT, PL/I has no casting like c, so you must explicity convert your data to complex. For instance SQRT(-1) raises error, but SQRT (-1+0I) works like silk. Well. polimorfism or casting , wasn't invented at the time of the birth of Pl/I. -- Carlos Argentina
Started by carlos feldman @ · Most recent @
Vmarc
Music/SP has support for VMARC CMS compresed files, I found a site that has an application than can run under z/os and window, to compress and decompress files: https://homerow.net/zvm/vma/ -- Carlos Argentina
Started by carlos feldman @
exporting Musicx to windows 8
last time I used Music/SP in 2009, I don't remeber if was under Sim-390 or Hercules-390. I made an export of ALL directories files in musicx volume to windows. It's very handy not only for backup, but for searching information. This export has all directores from $000 to $xxx including all user local storage. Thing is I don't remember which software I used to do that, a detail is that all the files have a windows timestamp slightly different each file. I'm sure it was no FTP client, because this only allows to see the files directly owned by the logged user. Does anyone remember which software can do this job ? -- Carlos Argentina
Started by carlos feldman @ · Most recent @
A few questions about maintenance. 5
On saturday doing some FTP transfers being $000, I crashed MUSICX filesystem running in H-390. So I learned the lesson and created an user account to do my work. Ussualy I prefer the H-390 option, since I can easily communicate with the "mainframe" by using FTP, so it's very easy to backup my files I have a musicx disk backup with all the directories in windows format, so it's straighforward to search for something. I know you can restore and backup with Filearc and Filerest, but a few questions arise. a) How can I acces system, or other user's directories like $000, $adm, etc, for use them in ? b) Is there any means to check and repair a filesystem which went wrong? c) Can I define a dummy tape unit for use with Music, or have to "punch" the data ? d) last but no least, how can an administrator, blank an user password ? Thanks for your help -- Carlos Argentina
Started by carlos feldman @ · Most recent @
silly question 12
Does submit work under H390-MUSIC SP ? I was reading documentation, and submit seems a backdoor to real VM/370 hardare ? Is that so ? Could I run submit jobs under H-390 ? How ? Or I do need to run Hercules+MUSIC ? Or worst, do I need a real VM OS hardware available? Thanks in advance for you answers -- Carlos Argentina
Started by carlos feldman @ · Most recent @
File /music JCL Cheat Sheet.pdf uploaded #file-notice
The following files have been uploaded to the Files area of the [email protected] group. /music JCL Cheat Sheet.pdf By: carlos feldman Description: Cheatsheet for Music JCL, from option 8 of command HELP BAT. Can be printed the size of a notebook
Started by [email protected] Notification @
On aplying updates to Music 6.2 16
Hi everyone ! With this covid bussiness, I'm stucked at home under querantine, so I'm bac with Music/SP environment. I was member od the original MUSIC/SP on yahoo, and mr René Ferland invited me to this group. Being back to the basic, I jave 2 systems up and running, version 6.2 (B), one on SIM390 version 17 and the other on Hercules, 64 bit. I also ran mr. Ferland's more complete system,. wit no problem. For a starting practice I decided to apply the updates mr. Dave Edwards left, so I downloaded the updates from internet, checked the MD signatures and FTPe'd to the virtual machine disk, wit no problem. Thing is than I'm trying to apply the first patch UPD1, and I'm getting some errors First I ran the mfarc file with error "045 file not found" Then I tryed,uUsing this script /FILE 1 N(UPD1.MFARC) /INC *COM:MFREST IN=1,ALL=T,REPL=F,FIXUP=' ',LIST=T,SETUI=T I Get the following error: -- FILE RESTORE (MFREST) -- OPTIONS IN EFFECT: INPUT = 1 TAPFIL = 1 FIXUP=' ' CTLREC=T ALL=T RLSE=F REPL=F LIST=T SETUI=T SETBUP=F FIXUCR=F REPNWR=T (CRDIN ROUTINE) READ ERROR 045 ON UNIT 001. JOB TERMINATED. Some similar whan trying to list the content of the mfarc: /file 1 n($000:upd1.mfarc) /inc *com:mfchek units=1,names=t,info=f CHECKING FILE SYSTEM ARCHIVE UNITS= 1, 0 TAPFIL= 1 NFILES= 1 (CRDIN ROUTINE) READ ERROR 045 ON UNIT 001. JOB TERMINATED. Clearly it does not find the tape unit. Any suggestion ? (ps, I also tryed on Hercules using a copy od the disk, wit the update files in, with similar results )
Started by carlos feldman @ · Most recent @
MUSIC Info 3
Hi, i've worked with OSes from IBM and Siemens since 1972, but i never heard about MUSIC. Can i get some more infos about it? Thanks Erwin
Started by Erwin Marschalk @ · Most recent @
Info about MUSIC
Hi fellows, i've worked with IBM and Siemens OSes since 1972. But i never know MUSIC. Where can i find infos about MUSIC. thanks Erwin
Started by Erwin Marschalk @
concatenate Files 3
Does any one know how to concatenate text files in music/sp regards Clive
Started by Clive Hudson @ · Most recent @
is anybody here? 13
I see no messages posted in this list. What's going on?
Started by Mark Waterbury @ · Most recent @
Current Image
Image Name
Sat 8:39am