Data Warehousing (1107) Databases (3004) JAVA Related 2673) MainFrames (975) Microsoft Related (2296) Networking (553)
Operating Systems (919) Programming (3254) SAP (2318) Testing FAQS (1674) Testing Material (252) Web Related (994)
Custom Search

What is 1000Projects

'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc

how it works?

Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!

Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!


Category Articles
How do you compile a program in Endevor?
Added on Mon, Dec 7, 2009
To compile a program through Endeavor. We need tp prepare aan ADDSCL to compile a program through Endeavor.The following points to be noted while preparing ADDSCL. 1.In which environment are we going to add a program.?As you all know there are... Read More
Would you specify FREESPACE for an ESDS? ss
Added on Mon, Dec 7, 2009
No. Because you cannot insert records in an ESDS, also when you rewrite a record, it must be of the same length. Thus putting any value forfreespace does not make any sense. Read More
How do you initialize a VSAM file before any operation? a VSAM with alternate index?
Added on Mon, Dec 7, 2009
Can write a dummy program that just opens the file for output & then closes it. Read More
What is the maximum record length for the VSAM dataset?
Added on Mon, Dec 7, 2009
Max size of a record in VSAM is cylinder = 2880 bytes approx. Read More
What is the difference between CI( CONTROL INTERVAL)and CA(CONTROL AREA). I refereed SAB A ZAMIR JCL book in that he said collection of CI is called CA but in next page (286) he explained this with showing one CI as a CA. Can you please let me knowth
Added on Mon, Dec 7, 2009
CONTROL INTERVAL :- It is same as Blocks are in JCL. It is the storage unit. Control Area : - It is collection of CI. Combination of ci is known as ca. one or more no of ci will be in a ca. Read More
How do you convert flat files to VSAM files
Added on Mon, Dec 7, 2009
Let’s be a little more precise.We will take the tack that you will be creating a KSDS file.First, you need to know which field/s you will be using as the primary key and if you need, alternate keys. Sort the records by that field/s.Use IDCAMS... Read More
What do you mean by dirty read?
Added on Mon, Dec 7, 2009
The "dirty read" technique can be used to provide a high degree of concurrent access to VSAM files while avoiding the complications associated with CI and CA splits. The dirty read protocol can be summarized as follows: The VSAM file must be... Read More
How vsam datasets are cataloged?
Added on Mon, Dec 7, 2009
When you allocate the vsam cluster at that time you have the option to catlog the dataset using the idcam utility. Apart from this tools like file aid also gives you an option to catalog a vsam dataset. Read More
What is IDCAMS ?
Added on Mon, Dec 7, 2009
IDCAMS is the Access Method Services program. You run the IDCAMS program and supply AMS commands thru SYSIN. (examples of AMS commands are DELETE, DEFINE, REPRO etc..). Read More
In vsam why we use export-import utility?
Added on Mon, Dec 7, 2009
It is used for the back-up purpose.Whenever there is a loss of data by accidental then we can restore it from the Exported/Imported data. Read More
Can AMS commands be run from the TSO prompt ?
Added on Mon, Dec 7, 2009
Suppose a generation of GDG gets created in a particular step of a proc. How would you refer the current generation in a subsequent step? What would be the disposition of this generation now?
Added on Mon, Dec 7, 2009
Relative generation numbers are updated only at the end of the job, not at the end of a step. To allocate a new generation, we would be using (+1) with a DISP of (NEW,CATLG,DELETE). To refer to this in a subsequent step in the same job, we would... Read More
What is the procedure for running the batch job in mainframe?
Added on Mon, Dec 7, 2009
Prepare a RUNJCL and submit it. Read More
What is the maximum no. of records that can be allowed in VSAM?
Added on Mon, Dec 7, 2009
Its depand upon the CA. Every vsam file allocate record differently. so, its tuff to tell the answer. Read More
What do you mean by RDW in VSAM?
Added on Mon, Dec 7, 2009
VSAM Stands for Virtual Storage Acess Method...An Acess method is the component of operating system....it is the interface between Application Program and the physical opertaion of storage device.What is a VSAM? VSAM Stands for Virtual Storage Acess... Read More
Under IDCAMS , multiple functions can be executed, each of which returns a cond code. What will be the condition code returned to the operating system ? ss
Added on Mon, Dec 7, 2009
The maximum condition code generated is returned as the condition code of the IDCAMS step. Read More
How do you decide on optimum values for CI, FREESPACE etc..?
Added on Mon, Dec 7, 2009
CI size should be based on record length, type of processing. Usually CI is 4K. If record length is larger(>1K), chose 6K or 8K. FREESPACE should be large if more number of insertions are envisaged. Usual values are (20 20) when heavy updates... Read More
What is SHAREOPTS ?
Added on Mon, Dec 7, 2009
SHAREOPTS is a parameter in the DEFINE and specifies how an object can be shared among users. It is coded as SHAREOPTS(a b), where a is the cross region share option ie how two or more jobs on a single system can share the file, while b is the cross... Read More
What is the meaning of each of the values in SHAREOPTS(2 3)?
Added on Mon, Dec 7, 2009
Value of 2 for cross region means that the file can be processed simultaneously by multiple users provided only one of them is an updater. Value of 3 for cross system means that any number of jobs can process the file for input or output (VSAM does... Read More
How do you define an ALTINDX ? How do you use ALTINDXs in batch, CICS pgms ? ss
Added on Mon, Dec 7, 2009
DEFINE ALTERNATEINDEX. Important paramters are RELATE where you specify the base cluster name, KEYS, RECORDSIZE,SHAREOPTIONS,UNIQUEKEY(or NONUNIQUEKEY), DATA(ds name for the data component), INDEX(ds name for the index component). Then DEFINE PATH... Read More
What happens when you open an empty VSAM file in a COBOL program for input?
Added on Mon, Dec 7, 2009
A VSAM file that has never contained a record is treated as unavailable. Attempting to open for input will fail. An empty file can be opened for output only. When you open for output, COBOL will write a dummy record to the file & then delete it... Read More
How do you calculate record size of an alternate cluster? Give your values for both unique and non-unique?
Added on Mon, Dec 7, 2009
Unique Case: 5 + ( alt-key-length + primary-key ) Nonunique Case: 5 + ( alt-key-length + n * primary-key ) where n = # of duplicate records for the alternate key ????Any one who knows - can you explain ? Read More
What is the difference between sequential files and ESDS files?
Added on Mon, Dec 7, 2009
Sequential(QSAM) files can be created on tape while ESDS files cannot. Also, you can have ALTINDEX for an ESDS while no such facility exists for QSAM files. Read More
Do all versions of the GDG have to be of the same record length ?
Added on Mon, Dec 7, 2009
No, the DCB of the model dataset can be overridden when you allocate new versions. Read More
How are different versions of GDG named ?
Added on Mon, Dec 7, 2009
base-file-name.GnnnnnV00 where nnnn= generation number (upto 255). nnnn will be 0000 for the 1st generation. Read More
What more info you should give in the DD statement while defining the next generation of a GDG?
Added on Mon, Dec 7, 2009
Give (+1) as the generation number, give (new,catlg) for disp, give space parameter, can give the dcb parameter if you want to override the dcb of the model dataset. Read More
What is averange record legth in KSDS?
Added on Mon, Dec 7, 2009
The average record length must be less than or equal to the maximum record length. The Maximum Record Length is 2046. Read More
What are the different types of VSAM files available?
Added on Mon, Dec 7, 2009
ESDS: Entry Sequence Data Set KSDS: Key Sequence Data Set RRDS: Relative Data Set Read More
While designing vsam files,what’s the best way to choose control interval size for the data and the index?s
Added on Mon, Dec 7, 2009
Well, it depends on whether the data will be accessed directly or sequentially. for direct access use small ci for sequential access use larger ci. Read More
What is Control Interval, Control Area ?
Added on Mon, Dec 7, 2009
Control Interval is analogous to a physical block for QSAM files. It is the unit of i/o. Must be between 512 bytes to 32 k. Usually either 2K or 4K. A larger control interval increases performance for sequential processing while the reverse is true... Read More
How do you load a VSAM data set with records ?
Added on Mon, Dec 7, 2009
Using the REPRO command. Read More
How do you define a GDG ?
Added on Mon, Dec 7, 2009
Use the DEFINE GENERATIONDATAGROUP command. In the same IDCAMS step, another dataset must be defined whose DCB parameters are used when new generations of the GDG are created. This dataset is known as the model dataset. The ds name of this model... Read More
Assuming that the DEFINE jcl is not available, how do you get info about a VSAM file?s organisation ?
Added on Mon, Dec 7, 2009
Use the LISTCAT command. Read More
During processing of a VSAM file, some system error occurs and it is subsequently unusable . What do you do ?
Added on Mon, Dec 7, 2009
Run VERIFY. Read More
What is FREESPACE ?
Added on Mon, Dec 7, 2009
Coded in the DEFINE as FREESPACE(ci ca) where ci is the percentage of each control interval to be left free for insertions, ca is the percentage of control intervals in each control area to be left empty. Read More
How do you define a KSDS ?
Added on Mon, Dec 7, 2009
DEFINE CLUSTER(cluster name) with the INDEXED parameter. Also specify the ds name for the DATA component & the ds INDEX component. Other important parms are RECORDSIZE, KEYS, SHAREOPTIONS. Read More
What does a file status of 02 on a VSAM indicate?
Added on Mon, Dec 7, 2009
Duplicate alternate key . Happens on both input and output operation Read More
Suppose 3 generations of a GDG exist. How would you reference the 1 st generation in the JCL?
Added on Mon, Dec 7, 2009
Use GDG name(-2). Read More





©2007, 1000projects.com, Only For Educational Purpose, Non Commercial use!