|
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
What is the difference between local and central version operating modes?
Added on Mon, Dec 7, 2009
In local there is no IDMS System running above the DBMS. It’s the more efficient mode but lacks the recovery and integrity facilities of the central version (CV) control program. In CV many application programs access the database through a... Read More
How does IDMS communicate with CICS?
Added on Mon, Dec 7, 2009
They communicate via service MVS request calls. Read More
What is a page?
Added on Mon, Dec 7, 2009
A page is the smallest unit of storage in an IDMS database Read More
What is an OOK-Rec?
Added on Mon, Dec 7, 2009
An OOK-Rec is a one of a kind record set, used to get to another record set . Read More
Name and explain the three location modes?
Added on Mon, Dec 7, 2009
Calc is based on a symbolic value which is used to determine the target page. Via mode is for members only. Via records are stored near to their owners. In direct mode the target is specified by the user and is stored as close as possible to that... Read More
What is a set?What pointers are required, what are possible? How may sets be ordered?
Added on Mon, Dec 7, 2009
A set is an owner record and, optionally, its member records. There are three types of pointers: next, prior and owner, but only next is required. There are five possible orders for arrangements of sets; they are: first - insert at beginning, last -... Read More
What is the purpose of a READY?
Added on Mon, Dec 7, 2009
The READY prepares a database area for access by DML functions. Read More
What is a run unit?
Added on Mon, Dec 7, 2009
A run-unit is a logical unit of work; it is analogous to a CICS task. Read More
What is currency?
Added on Mon, Dec 7, 2009
Currency is the location within the database during run-unit execution. There are four levels of currency: current of run-unit is the record occurrence of the last successful find or obtain; current of record type is for the most recent of each... Read More
What is the difference between a schema and a subschema?
Added on Mon, Dec 7, 2009
The schema is the physical arrangement of the data as it appears in the DBMS. The subschema is the logical view of the data as it appears to the application program. Read More
What is the IDD?
Added on Mon, Dec 7, 2009
IDD is the Integrated Data Dictionary. It contains information about the elements, record types, sets, maps and dialogues within the database. Read More
What is the meaning of ’Copy IDMS Subschema-Binds’?
Added on Mon, Dec 7, 2009
It generates a bind run-unit and binds all the records for the sub-schema the program is referencing. Read More
What is a region?
Added on Mon, Dec 7, 2009
Region is used synonymously with area. It is a group of logically contiguous pages. Read More
Explain the difference between record occurrence and record type?
Added on Mon, Dec 7, 2009
A record occurrence is the instances of a record; it is the smallest addressable unit of data. A type is the description of a record; there needn’t be any occurrences. Read More
What is a junction record?
Added on Mon, Dec 7, 2009
A junction record is a member record type that allows for many-to-many relationship between its two owner records. Read More
What does a COMMIT statement do?
Added on Mon, Dec 7, 2009
It writes a checkpoint to the Journal File and releases any record locks. Read More
What does a ROLLBACK do?
Added on Mon, Dec 7, 2009
It rolls back (reverses) all database updates to the point of the last rollback or to the beginning of the run-unit. Read More
What is the meaning of the return codes 0307 and 0326?
Added on Mon, Dec 7, 2009
0307 is end-of-set and 0326 is record not found. Read More
What is autostatus?
Added on Mon, Dec 7, 2009
Autostatus is a protocol mode which causes the expansion of each DML statement to include a ’perform IDMS-Status’ statement. Read More
What does a store statement do?
Added on Mon, Dec 7, 2009
It places a record in the database based on the location mode specified. Read More
What sets will the stored record connect to?
Added on Mon, Dec 7, 2009
It will connect to all sets where it is defined as an automatic member. The store requires that currency be established for all these set occurrences. Read More
How does IDMS insure data integrity?
Added on Mon, Dec 7, 2009
IDMS uses record locks to prevent another run-unit from updating the same record. Read More
What are the types of record locks and how are they set?
Added on Mon, Dec 7, 2009
Locks may be shared or exclusive. Shared means that other run units can retrieve the record but can not modify it. Exclusive means that other run units can neither retrieve nor modify it. Recordlocks may be implicit or explicit. Implicit locks are... Read More
How are record locks released?
Added on Mon, Dec 7, 2009
Locks are released by a change in currency or by a commit, rollback or finish command. Read More
What does a status return code of nn29 mean in relation to record locks?
Added on Mon, Dec 7, 2009
nn29 means that two run units are waiting to set locks on the same record and are in deadlock. Read More
What is an area sweep and when is it used?
Added on Mon, Dec 7, 2009
An area sweep accesses records on the basis of the physical location in a database area. It can be total, meaning a record by record search of the area, or it can be of occurrences of records of a specific type. Read More
If you are current on the owner of a set, what is the difference between an obtain next and obtain first?
Added on Mon, Dec 7, 2009
No difference. There is a difference between obtain first and obtain next for an area sweep, but not when current on the owner in a set. Read More
What does a FINISH do?
Added on Mon, Dec 7, 2009
It releases all database resources, terminates database processes, writes statistical information to IDMS and logs the checkpoint. Read More
Why would you use find and get rather than an obtain?
Added on Mon, Dec 7, 2009
Find tells you whether the record is actually in the database. If it is not found you save the overhead of an obtain. Read More
What is a bind?
Added on Mon, Dec 7, 2009
A bind associates record types with the program work area; for run unit and records it is the first command issued in the program. Read More
Question : Distinguish among erase, erase permanent, erase selective and erase all? Category IDMS Interview Questions Rating (0.0) By 0 users Added on 3/3/2008 Views 317 Rate it!
Added on Mon, Dec 7, 2009
Erase cancels the membership of a record in specific set occurrences and removes only the named record. Erase permanent removes the specific record and all mandatory occurrences it owns. It disconnects all optional members. Erase selective... Read More
|