When search all is used in cobol program without sorted
input data
Answers were Sorted based on User's Feedback
Answer / geeta
SEARCH ALL wont give correct output if the data is not in
sorted order.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / reena
SEARCH ALL is a binary search. So, the data needs to be in
sorted order and the array used for search all operation
should have index by.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / srinivasareddy
If the table is loaded in a sorted order, then no need to
sort it explicitly and then Search all can be performed..
| Is This Answer Correct ? | 7 Yes | 0 No |
Explain the syntax of redefine?
Explain the output procedure?
When search all is used in cobol program without sorted input data
Explain the input procedure and output procedure?
Explain how to convert 2010/02/11 to m/dd/yyy.. With string and without string if any other method... Code?
Trying to help a friend... How do you code screen I/O without a DDS? I know it can be done, because for a short time, I worked for a company that did it. It was just too long ago for me to remember what was involved.
What are the types of perform?
Explain the syntax of sort?
How to Convert 2010/02/11 to m/dd/yyy.. with string and without string if any other method... code
Define redefine?
How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC
Explain the input procedure?