what is the difference between start and startbr?
Answers were Sorted based on User's Feedback
Answer / rookie
Start is used start(initiate) a transaction in CICS environment.
While coding in COBOL, it is used to set the pointer in a ksds
file based on a key value.
Startbr is used to set the pointer in a DB2 table(CICS
environment),although startbr sets the pointer but to browse
the table element you need to follow it with readnext or
readprev command.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ananta bajpai
start is used in cobole cics &cobol relative file concernts
& startbr is use in cobol cics program onle. in relative
files start is used as
start file-name{key{is equal or is=,is<,is not} key data-
name] invalid-key }end-start
| Is This Answer Correct ? | 1 Yes | 2 No |
Explain the difference between an internal and an external sort, the pros and cons, internal sort syntax etc.
1)what is use of linkage section? 2)what is difference between comp and comp-3
What is Alternate Index ? How is it different from regular index ?
If my file contains 100,000 records and job abended at 55,000th records processing then how can i restart job from that record onward by ignoring that record. I can not edit the file as file size is big and it is getting browse substituted?
what are the error codes in cobol, db2, cics, vsam , and jcl
how can we get current dat and time thru cobol pgm
When is a scope terminator mandatory?
How to display string in the reverse order using occurs clause?
Difference between ps, esds
What is "Call by content" and "call by reference"?
wht r the advantages of 77 level number ?
study the data discriptions and answer the questions given below i)01 ORDER RECORD 05 OUT-HEADER PIC X(50) 05 ITEM-COUNT PIC 99 05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING ON ITEM-COUNT ii)01 NAME-AND-ADDRESS 05 N-AND-A-LINE OCCURES 5 05 LINE-LENGTH PIC P9 05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON LINE-LENGTH iii)01 SALES-LIST 05 SALESMAN-COUNT PIC 99 05 SALES PIC 9(6) OCCURS 1 TO 100 DEPENDING ON SALESMAN-COUNT iv)01 ORDER-RECORD 05 NO-OF-BRANDS PIC 99 05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON NO-OF-BRANDS which of the following is true? a.i) and iii) are valid b.i) and iv) are valid c.i) and iii) are not valid d.all are valid