I have a PSB which contains 3 PCB, how to write it ?
please..
Answers were Sorted based on User's Feedback
Answer / ranjeet
PCB TYPE=DB,
DBDNAME=SAMPLDBD,
PROCOPT=GOT,
KEYLEN=99
SENSEG NAME=PARENT1
SENSEG NAME=CHILD1,PARENT=PARENT1
.
.
.
.
.
.
PSBGEN PSBNAME=PSB00001,
LANG=COBOL
END
Is This Answer Correct ? | 12 Yes | 7 No |
Answer / jahan
*WE HAD 3 PCB
1. ORGN(ORGANIZATION)
2.DEPT(DEPARTMENT)
3.EMP(EMPLOYEE)
--------------------
PRINT NOGEN
PCB TYPE=DB,
NAME=ORGNDBD,
PROCOPT=GOT,
KEYLEN=10,
POS=S,
PCBNAME=PCB0001
SENSEG NAME=ORGNSEG, PARENT=0
SENSEG NAME=DEPTSENG, PARENT=ORGNSEG,PROCOPT=G
SENSEG NAME=SEMPSEG, PARENT=DEPTSENG
PSBGEN PSBNAME=ORGNPROG,
LANG=COBOL,
CMPAT=YES,
IOEROPN=(451,WTOR)
END
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vijay
*WE HAD 3 PCB
1. ORGN(ORGANIZATION)
2.DEPT(DEPARTMENT)
3.EMP(EMPLOYEE)
SYNTAX:-
PRINT NOGEN
PCB TYPE=DB,
DBDNAME=ORGNDBD,
PROCOPT=A,
KEYLEN=18,
POS=S
SENSEG NAME=ORGNSEG,PARENT=0
SENSEG NAME=DEPTSEG,PARENT=ORGNSEG
SENSEG NAME=EMPSEG,PARENT=DEPTSEG
PSBGEN PSBNAME=ORGNPROG,LANG=COBOL,CMPAT=Y
END
Is This Answer Correct ? | 9 Yes | 11 No |
Answer / kiran
PCB TYPE=DB,DBDGEN= SAMPDBD,KEYLEN=15,PROCOPT=G,
SENSEG NAME = ACCACCP1
SENSEG NAME = ACCDETP1,PARENT= ACCACCP1
.
.
.
PSBGEN
Is This Answer Correct ? | 3 Yes | 10 No |
Explain the maximum number of levels allowed in ims db?
What is a Segment type?
In the RECON, what always sets the IC NEEDED flag on for a registered DB?
What are the special considerations of the PROCOPT field based on the type of operation your program performs
Static & Dynamic PSB
What is the difference between HDAM & HIDAM DB types and when would you use each?
What is the maximum of key fields and search fields allowed in a segment?
What is the disadvantage of dynamic generation of acb?
What is bmp mode?
Explain the maximum of key fields and search fields allowed in a segment?
DLI Vs BMP
13 Answers CTS, IBM,
Can we use procopt on pcb and segment field (senseg)?