whats the disadvantage of search all over search?
Answers were Sorted based on User's Feedback
Answer / sharath
1)Search all is applied only for single dimensional array.
However Search can be applied against single or
multidimensional arrays.
2)Only one WHEN condition is coded in Search all.
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / snehatechm
computation speed is fast in search all.
disadvange is file should be in sorted order to be searched.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / animesh
In search all,
in when condition we can give only = condition
but in search we can give any conditional operator.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / venkat
search is a normal search so it takes a less time to search
the related information but search all first,it will divide
the table and then it will search depends on the
imp.statements like bottom up or up down statments so,for
that one search all will take sme time to search the
contents. for a large no records also search is
sufficient..
correct me ...if wrong..venkat
| Is This Answer Correct ? | 2 Yes | 2 No |
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290
i have the job which has written updated 100 records into the table and for 101th record it got abended and i want to start the job again and should wirte from 101th record not from 1st record..how to do it..?
If I want to increase the Limit in GDG. What should I do?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
What is tne need to use sub programs in Cobol?
How do you code Cobol to access a parameter that has been defined in JCL?
A LESS 1200 IF B GREATER 25 MOVE 47 TOC ELSE MOVE 57 TO C IF A GREATER 249 MOVE 67 TO C ELSE NEXT SENTENCE ELSE IF B LESS 67 MOVE 27 TO C What will be the value of C, when A is 137 and b is 25
What is the difference between Call and a Link?
Hai friends why we need to read a file before re-write a record?
What is the Purpose of POINTER Phrase in STRING command
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.