i had a few questions:
Q1.If I have an input file in which i have 1000 observations and I write the following code in the sort card
SORT FIELDS=COPY,STOPAFT=100
then i want to know will it simply copy the first 100 observations in my output file or will it also sort each observation and then copy the first 100 sorted observations or something else.
Q2.and also please tell me what the following code will do
SORT FIELDS=(1,10,CH,A),STOPAFT=100
in this case will it sort the 1st 10 characters of all the 1000 observations and then copy the first 100 sorted obs or will it copy the top 100 obs and then sort the 1st 10 characters of these 100 observations.
Thanks in advance to anyone who helps me in understanding these.