JCL - SORT CARDS - Practical Video - Mainframe Wednesday Talks # 6

  Рет қаралды 34,802

Kumar ITChannel

Kumar ITChannel

Күн бұрын

Пікірлер: 53
@ntrtarak1036
@ntrtarak1036 2 жыл бұрын
Very clean video, explanation is very good and neat .thank you so much sir...
@vishnunarayananvs3962
@vishnunarayananvs3962 Жыл бұрын
Very good quality and informative content! (Y)
@yasaswideepthi6153
@yasaswideepthi6153 3 жыл бұрын
Thanks for the video.. very helpful..
@kartheekc1534
@kartheekc1534 3 жыл бұрын
Awesome 👏
@anandgupta3237
@anandgupta3237 3 жыл бұрын
amazing video, please keep uploading more like these, and other complex programs.
@vmnajay
@vmnajay 3 жыл бұрын
Good information for freshers and helps experienced to refresh
@ronilkumarisahoo4879
@ronilkumarisahoo4879 3 жыл бұрын
Very good refreshing video
@pallvithakur3107
@pallvithakur3107 3 жыл бұрын
AMAZING video Thanks very much
@richardsonarun
@richardsonarun 3 жыл бұрын
Nice practical teaching bro. Very much useful to me. Thank you so much 🙏😎
@mannesandhya3015
@mannesandhya3015 2 жыл бұрын
Tq so much sir....u have given clear cut on sort cards
@rajamahendra8117
@rajamahendra8117 3 жыл бұрын
So helpful video to recap.
@amarbinabdul4652
@amarbinabdul4652 3 жыл бұрын
Thank you soooooo Much Sir , im a fresher this video is very much useful to me , God bless you sir !!!
@higiniofuentes2551
@higiniofuentes2551 4 жыл бұрын
Very good video explaining SORT Thank you Kumar!
@KumarITChannel
@KumarITChannel 4 жыл бұрын
My pleasure
@PiyanshuMyWorld
@PiyanshuMyWorld 2 жыл бұрын
Revision was the best part..
@venud1800
@venud1800 4 жыл бұрын
In the same way ,with Practical examples... If you do for CICS it will be helpful
@igalshikhman1261
@igalshikhman1261 4 жыл бұрын
Thank you, sir!
@chandun7018
@chandun7018 3 жыл бұрын
Could you please prepare a video about - How to Solve SOC4 & SOC7 abends with Mainframe Terminal please ? Thank you for the detailed explanation!
@Dosala-Vijaya
@Dosala-Vijaya 2 жыл бұрын
Voice 👌
@SatishKumar-bx5mg
@SatishKumar-bx5mg 4 жыл бұрын
Thanks for your session, Can you please explain sort function in cobol code on vsam files
@SagarParte95
@SagarParte95 2 жыл бұрын
Very helpful video expecting same for cobol and db2
@KumarITChannel
@KumarITChannel 2 жыл бұрын
kzbin.info/www/bejne/h6GraGaXZr17lZo kzbin.info/www/bejne/aWnTf4KrfM6Go9k
@jaycahow4667
@jaycahow4667 3 жыл бұрын
Another thing to note is that Sort=Copy requires no Sortwrks at all as the input file is read and nothing is actually sorted. You need to realize how a normal Sort actually works. ALL input records are completely read into the Sorkwrks before any sorting takes place whether it is a CObOL or JCL sort. Therefore the Sortwrks will be slightly larger in total space as compared to the input files (as multiple inputs can be concatenated together) as the data does need some space to be manipulated. Super large sorts (10s of millions of records) are done through sorted intermediary datasets. The Sortwrks are filled and sorted and written out time after time until all records are sorted. Then the system reads in all the sorted datasets and Merges them into one large output file. When you use Sort=Copy there is no actual sorting being done (just copying) so no Sortwrks are ever required. Only when Sort Fields are specefied are Sortwrks tequired. That being said we stopped using TRK and CYL Space allocations over 20 years ago. No one should ever use those notations in JCL as you have no idea what type of device you are writing to very well the track or cylinder size of that device. New space allocations should always be requested based on the RECFM, LRECL .and the amount of records projected for the file. The system will calculate the actual space required based on the device iwhere it actually writes the data That also being said most people have no idea how to write good efficient JCL as they have no idea how the underlying systems and devices really work. Most large shops bring in third party software (at least they did 15 years ago) that monitors JES and catches your JCL before it actually runs and modifies the crap out of it. It changes all kinds of things to make it more efficient, free up resources, points to dynamic resources anbd pools, overrides tape to disk. I use to write Production JCL as we did not allow programmers to do it as most did not know enough. We also had thir party JCL scanners that did not just look for Syntax errors like Typrun=Scan but did indepth analysis of the JCL telling you how to make it efficient and enforce hundreds of in house JCL standards. The vast majority of sorts are small enough to just do in foreground anyways and bypass the entire JCL process. No waiting for a Job to run but you still need to know how to write the parms. If you want you can even use the input file as the output file as the Sort will Open and Close the input file before it ever processes the output file. I did that thousands of times and never had a problem.
@mistersz
@mistersz 2 жыл бұрын
Thanks! do you have also tutorials about using headers and trailers in JCL Sort utility?
@chaithanyareddy4568
@chaithanyareddy4568 2 жыл бұрын
hi team I have a question take an example i have a file in that file i have 10 records of the employees with their levels now I need to copy the file into a new file and in the new file
@Rafilkis
@Rafilkis 2 жыл бұрын
Thanks for sharing your knowledge! I just didn't understand whats SORTWK01 for !
@krishna_is_great
@krishna_is_great 2 жыл бұрын
Super
@ravigangapure8509
@ravigangapure8509 2 жыл бұрын
We want information about varsion control tool..that will be help for we can you make it?
@seemakashyap3471
@seemakashyap3471 2 жыл бұрын
How to format first name to last name Which condition we have to use
@DurgaPrasad-oe7he
@DurgaPrasad-oe7he 4 жыл бұрын
Thank you
@sakshitripathi3179
@sakshitripathi3179 2 жыл бұрын
If i want to print count only in the output file as total no. of records in input file ? trailer formate 'UTRL 00001212022' how can I omit 'UTRL' and '2022' ? I want to print only total no. Of count Could you please guide me.
@rajamahendra8117
@rajamahendra8117 3 жыл бұрын
I want to copy onlylast 10 records of input file. How can I. Usually files will have header and trailer records, can I sort excluding them
@prashanthv197
@prashanthv197 3 жыл бұрын
One way is to use icetool with toolin card SUBSET FROM(INFILE) TO(OUTFILE) KEEP INPUT LAST(10). But again this includes your trailer.so my guess is to remove the trailer by using omit and then pass file to icetool
@vidhisfoodfuntour_channel2729
@vidhisfoodfuntour_channel2729 Жыл бұрын
Can you make a video for overiding a step from proc in jcl.
@KumarITChannel
@KumarITChannel Жыл бұрын
Please do watch out my JCL Playlist. thank you!
@athirapaaru5848
@athirapaaru5848 4 жыл бұрын
Expecting sort Join keys class 😊
@KumarITChannel
@KumarITChannel 4 жыл бұрын
Sure.
@krishnaraddihosamani8392
@krishnaraddihosamani8392 3 жыл бұрын
Wow
@mounikareddy3478
@mounikareddy3478 3 жыл бұрын
How to sort comp-3 values
@monisharaji5686
@monisharaji5686 4 жыл бұрын
Sir can you put programs regarding DB2 concept
@KumarITChannel
@KumarITChannel 4 жыл бұрын
Sure.
@PavanKumar-sq9xj
@PavanKumar-sq9xj 2 жыл бұрын
Followed same but getting errors
@nehavijayvargia1800
@nehavijayvargia1800 3 жыл бұрын
can we write a sort card to write current date in new file?
@KumarITChannel
@KumarITChannel 3 жыл бұрын
Yes you can. Try with DATE //SYSIN DD * SORT FIELDS=COPY OUTREC FIELDS=(5:&DATE1,13:&TIME2)
@NileshChaubey
@NileshChaubey 3 жыл бұрын
Sir can you please make vedioes on assembler.
@KumarITChannel
@KumarITChannel 3 жыл бұрын
Hi Nilesh, thank you! for dropping a message. Sorry it's been a long time I have worked on Assembler, but I will try to make few Videos on it. If you are looking for specific topic , do reply on this.
@NileshChaubey
@NileshChaubey 3 жыл бұрын
@@KumarITChannel I was looking for full tutorial like you have created for COBOL and PL/1. If u can share some link or study material from where I can start ...that will be great help
@KumarITChannel
@KumarITChannel 3 жыл бұрын
@@NileshChaubey Check the below bcs.solano.edu/workarea/kanderso/CIS%2020/Tutorials/David%20Woolbright's%20Assembly%20Tutorial.pdf
@NileshChaubey
@NileshChaubey 3 жыл бұрын
@@KumarITChannel Thanks a lot...I will check this document
@ashokmetha3373
@ashokmetha3373 3 жыл бұрын
Watch it in 3x speed
@ganeshmuthulingam1332
@ganeshmuthulingam1332 Жыл бұрын
Any one have Percentage calculation used by SORT
@rty1955
@rty1955 5 ай бұрын
Ugh. Please change your video title to su kects unde Z/OS ONLY! This will not work under Z/VSE
@saikumarb9382
@saikumarb9382 Жыл бұрын
Super
Mainframe Wednesday Talks#7 -  DB2 Refresher in Just one Hour
1:04:17
Kumar ITChannel
Рет қаралды 64 М.
Mainframe Wednesday Talks# 8  COBOL DB2   COMPILATION PROCESS
33:41
Kumar ITChannel
Рет қаралды 38 М.
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
JCL Refresher in One Hour
1:00:05
Kumar ITChannel
Рет қаралды 180 М.
Mainframe Wednesday Talks# 9    CICS Refresher
52:39
Kumar ITChannel
Рет қаралды 39 М.
VSAM Refresher in 30 Minutes
33:05
Kumar ITChannel
Рет қаралды 72 М.
Python dataclasses will save you HOURS, also featuring attrs
8:50
37C3 -  Breaking "DRM" in Polish trains
1:01:46
media.ccc.de
Рет қаралды 451 М.
What are AI Agents?
12:29
IBM Technology
Рет қаралды 976 М.
Linux File System/Structure Explained!
15:59
DorianDotSlash
Рет қаралды 4,3 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН