OVRDBF FILE(xxx) TOFILE(libl/filename) share(*yes)
In which scenario is share(*yes) used?
could any one explain with an example?
Answers were Sorted based on User's Feedback
Answer / shruti tayal
Suppose you define override on a physical file with
SHARE(*YES) in a CL program, and you call HLL programs from
CL program, by defining SHARE(*yes) all programs who use the
overridden file, will use the same data path, on the
contrary if we dont specify share(*yes), each program will
create its own data path. This is very useful when we use
OPNQRYF, if we dont specify SHARE(*YES) for the file, the
data path created by OPNQRYF will not be of any effect in a
HLL program, as HLL program will create its own data path in
absence of SHARE(*YES).
| Is This Answer Correct ? | 30 Yes | 0 No |
Answer / suju
when we use share(*yes) ODP(open data path) will be shared.
other wise each time system wl create new ODP.its an
overhead.
| Is This Answer Correct ? | 28 Yes | 1 No |
Answer / shobhit
Share(*yes) means Sharing the access path of a fileā¦.
For example
Suppose Physical file have 5 members and you want to access
the records of 3rd member in your program. So OVRDBF
command will be like this.
OVRDBF (File Name) TOFILENAME (File Name) MEMBER (3rd)
SHARE (*YES)
CALL RPG
The RPG program now point to 3rd member of the file and if
you dont use SHARE(*YES) the program will point to 1st
member of the file.
| Is This Answer Correct ? | 11 Yes | 31 No |
what are the different types of arrays?
If i change any file through application after entering data , how to check which file is updated through applications . For call stack we takes esc 3 then we chose 11..But What is answer of below qtn..?
what is the syntax for plist?
how to insert the data in pf by using cl program
whare we can use IN AND OUT AND UNLCK opcodes?please can any body tell me in real time senario with example
What is the use purpose of CRTCMD?
Difference Between Ca & Cf?
how many printer files maximum can be used in single rpg program?
What is a Member?
If I want to execute Sftp commands(LS & GET) stored in Physical file from CL program automatically...Can u Plz tell me how can I do this?...How the script will look?? THANX FOR NY HELP...
which single rpg opcode performs both setll and reade?
can a indexed file be accessed in arrival sequence in rpg program?