TOP 35 IMS DB Multiple Choice Questions and Answers pdf fresher and experienced

Read the most frequently asked 35 top IMS DB  multiple choice questions and answers PDF for freshers and experienced. IMS DB  objective questions and answers pdf download free..

IMS DB  Multiple Choice Questions and Answers PDF Experienced Freshers
1. What is an IMS Database?
A Database is a collection of related data items organized in a way that can be processed by application programs.

2. What is DBMS in IMS?
A Database Management System is used to define and maintain the structure of the database.

3. What are the objectives of DBMS in IMS?
? Increases data independence
? Reduces data redundancy
? Provides data communication facilities
? Reduces data maintenance
? Provides data integrity and security
? Provides indexing capabilities

4. What is IMS (DB/DC)?
IMS (Information Management System) is IBM’s hierarchical database management system. It has mainly two components: IMS DB and IMS DC (also know as IMS TM)
IMS DB - IMS/Database Manager as the name implies manages the IMS databases. It is used for physical storage creation and management and data retrieval.
IMS DC / IMS TM - IMS/Data Communications or IMS/Transaction Manager handles online transaction processing system.

5. What do you mean by Hierarchical Database?
? Follows inverted tree structure
? Data relationship is predefined by it's structure
? Program accesses the data through predefined paths.

6. What are the advantages and disadvantages of a Hierarchical Database?
Advantages:
? Speed of access is faster because of the predefined data paths.
Disadvantages:
? Complex implementation
? Predefined tree structure reduces flexibility.
? Difficult to manage

7. What is DL/I?
DL/I is a command-level language to manipulate IMS databases. DL/I forms a bridge between application program and IMS database. It is used in batch and online programs to access data stored in IMS databases.
Every access to an IMS database is through DL/I. The DL/I interface must be called to update or read a IMS database. DL/I allows both sequential and random processing of a database.

8. Explain IMS Software Environment?
IMS Software Environment consists of the below five main components:
? IMS DB
? DL/I
? DL/I Control Blocks
? IMS DC
? Application Programs

9. What are the main control blocks available in IMS DB?
There are three control blocks (also known as DL/I control blocks)
? Database Description (DBD)
? Program Specification Block (PSB)
? Application Control Block (ACB)

10. What is DBD?
DBD (Database Definition) is used to define the physical structure of the database.
? One DBD for each database
? Created by a series of control statements - by a process called DBDGEN
? Used by DL/I whenever database is used

11. What is PSB?
Program Specification Block defines the programs view of the database and application programs access authority to database. It defines the logical data structure. A PSB is made up of one or more PCBs (Program communication blocks).

12. What is ACB?
Application Control Block is an internal control block consisting of combined information from the DBD and PSB.

13. What is PCB?
Program Communication Block defines which database the program will access and the type of access allowed. It is defines the programmer's view of the database.

14. What information does a DBD contain?
DBD information includes:
? Database name, Access method
? Dataset name
? Segment name, length, parent
? Key field name, length, location, type
? Search field name, length, location, type

15. Explain DBDGEN process?
DBDGEN control statements consists of Assembler Language macro statements. The macros are supplied by IBM in a library named IMSVS.MACLIB. DBDGEN control statements are normally coded by the DBA and submitted to the system with JCL. That invokes a cataloged procedure usually called DBDGEN. The DBDGEN procedure causes the DBDGEN control statements to the processed by the assembler producing the object module. The object module is then passed to the linkage editor which, in turn, stores a load module in another IMS Library called as IMS.DBDLIB or IMSVS.DBDLIB.
The DBD process is normally preformed only once for a database. All applications use the DBD in accessing the information on the database. A new DBD is normally created only if the physical nature of the database changes.

16. Which languages does IMS support / application program languages?
COBOL, PL/1, C, VS Pascal, REXX, Ada and Assembler.

17. What is a segment in IMS?
Segment is the smallest unit of information that IMS transfers to and from database. Segment may contain one or more fields.

18. What are the two types of fields available in IMS DB?
Key Fields - (PROCOPT=K)
? Used to sequence the database and can't be changed
? It’s the field within a segment, used to identify the occurrence of the segment
? used to maintain the IMS segments in ascending sequence.
Search Fields - (PROCOPT=G)
? Used to search for a segment, without the segment being sequenced on that field
? A segment need not have a key or search field.
Both types of fields can be used to search the database.

19. What information does a PSB contain?
PSB information includes:
? PCB - defines the database to be accessed by the application program.
? SENSEG - defines the segment types to which the application program will be sensitive.
? SENFLD - defines the fields in the segment type to which the application program will be sensitive.
? PROCOPT - defines the types of access to the database or segment.

20. Explain PSBGEN process?
PSBGEN control statements consists of Assembler Language macro statements. The macros are supplied by IBM in a library named IMSVS.MACLIB. That invokes a cataloged procedure usually called PSBGEN and stored in PSBLIB. Each PSB consists of one or more control blocks called Program Control Block (PCB). Each PCB within a PSB defines one logical structure. All the PCBs within a PSB are collectively knows as an Application Data Structure.
IMS allows a PSB to define more than one logical data structure because a program is allowed to access to more than one database. A program us also allowed to concurrently access different parts of the same database. IMS allows the DBA to define any number of logical data structure in a single PSB.

21. Explain ACBGEN process?
ACB is a consolidation of PSB and DBD information.
? For online programs
ACBs must be prebuilt using the ACBGEN utility i.e., ACBGEN must be run which will merge DBD and PSB and generate ACB.
? For batch programs
ACBs can be generated either at execution time (dynamically using IMS.DBDLIB and IMS.PSBLIB as input (PARM=DL/I)) or ahead of time (prebuilt ACB from IMS.ACBLIB can be used (PARM=DBB)).

22. What is the advantage of dynamic generation of ACB?
It can be made sure that the ACB generated incorporates all the latest changes to the PSB and DBD.

23. What is the disadvantage of dynamic generation of ACB?
Everytime the program is run., the ACB needs to be built.

24. What is the advantage of creating the ACBs well ahead of time?
? Application program's scheduling consumes less time
? Less storage

25. What are the processing modes available in IMS DB?
? Batch DL/I
? MPP Mode - (Message Processing Program)
? BMP Mode - (Batch Message Processing)

26. What is meant by Batch DL/I mode?
? True Batch processing.
? No data communication services are used.
? Databases accessed must be offline.

27. What is meant by MPP mode?
? True Online processing.
? Transaction are entered at terminal and stored in message queue.
? Databases accessed must be offline.

28. What is meant by BMP mode?
It is of two types:
Transaction oriented
? Can read and write to online message queues.
? Can process online files and databases.
Batch oriented
? Can only read message queues.
? Access online databases in Batch mode

29. Can we use PROCOPT on PCB and Segment field (SENSEG)?
Yes, we can use the PROCOPT on PCB macro (at database level) or sensitive segment macro (at segment level).

30. What are the retrieval sequences in IMS DB?
? Top to Bottom
? Front to Back
? Left to Right

31. What is the maximum number of levels allowed in IMS DB?
15 Levels

32. What is the maximum number of segment types allowed for a single database?
255 Segment types

33. What is the maximum number of fields allowed per segment and what is the maximum number of fields per database?
Max. number of fields per segment = 255
Max. number of fields per database = 1000

34. How many root segments do we have per database record?
Only 1

35. What are the two ways in which DL/I interface can be invoked?
? By making a call to IBM supplied program CBLTDLI / ASMTDLI / PLITDLI
(most commonly used method) by - Passing a PCB, or Passing an AIB
? By invoking the EXEC-DLI CICS interface by Passing a PCB, or Passing an AIB

0 comments:

Post a Comment