How to rename a VSAM file as well as it's index file?
Answers were Sorted based on User's Feedback
Answer / sai
I think by using IDCAMS-ALTER command we can rename VSAM
dataset
| Is This Answer Correct ? | 26 Yes | 2 No |
Answer / santy
we can rename the VSAM file as well as it's INDEX file
using the ALTER command under IDCAMS utility.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / mlaj
use this jcl below
//M052RPAR JOB ('comment',F7),'comment ',
// MSGLEVEL=(1,1),MSGCLASS=H,CLASS=A,REGION=0M,
// PRTY=15
//*******************************************************
//STEP10 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
ALTER M054.TEXT NEWNAME(M052.TEXT)
ALTER M054.TEXT.* NEWNAME(M052.TEXT.*)
/*
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / giri
Sai, using File Master tool we can rename the VSAM file.
Option 3.2 in File Master tool.
| Is This Answer Correct ? | 2 Yes | 5 No |
describe the job statement, its meaning,syntax and significant keywords?
A job has 90 steps i want to execute only step7 and step15
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
what happens if job falls in loop ? how to resolve it ?
once we submitted the job to the operating system, how can we cancel the job before execution?
how do u define a file in cobol and jcl ?
I need exexution process for JCL programs
How does jcl act on a cobol code?
When will we need to specify Space parameter ?
define cond parameter in jcl?
What are hierarchy levels in jcl?