OVRDBF AT DIFFERENT CALL LEVELS
HI , I am using the command ovrdbf file(file1) tofile(file2) in the CL program and i am calling an RPG program again in that i want to override the same file(file2) to different members(using qcmdexe). how to do that?
HI , I am using the command ovrdbf file(file1) tofile(file2) in the CL program and i am calling an RPG program again in that i want to override the same file(file2) to different members(using qcmdexe). how to do that?
AS/400 records
Suppose i have 3 members. how to read the records from all the members without using OVRDBF
Suppose i have 3 members. how to read the records from all the members without using OVRDBF
OVRDBF
In a single CL/400 program, is it possible to declare physical file File1, then read a record and later writing the record value onto the DSPF using OVRDBF with in a same CLP? Software/Hardware used: Iseries
In a single CL/400 program, is it possible to declare physical file File1, then read a record and later writing the record value onto the DSPF using OVRDBF with in a same CLP? Software/Hardware used: Iseries
OVRDBF
In CL program, declared a file FILE01 and read some records, later using OVRDBF accessed another file FILE02. Still I'm getting records of FILE01 only but not FILE02. Why? Thanks Venkat
In CL program, declared a file FILE01 and read some records, later using OVRDBF accessed another file FILE02. Still I'm getting records of FILE01 only but not FILE02. Why? Thanks Venkat
OVRDBF Not working as supposed to
Here's the program flow CL1 calls RPG1 RPG1 calls CL2 CL2 has OVRDBF on fileA that is being used in RPG1 When the control gies back to RPG1, the file is not overriden. So I thought it might have ended at call level and I tried to do OVRDBF in RPG1 after the control come back from CL2 but still no...
Here's the program flow CL1 calls RPG1 RPG1 calls CL2 CL2 has OVRDBF on fileA that is being used in RPG1 When the control gies back to RPG1, the file is not overriden. So I thought it might have ended at call level and I tried to do OVRDBF in RPG1 after the control come back from CL2 but still no...
WRKOBJ System Physical File (QSYS)
Hi guys, Do u guys know what is the name for the physical file of WRKOBJ in Qsys? I need to OVRDBF with this file. Do u have the reference for the System Physical file for AS400??? Thanks!!!
Hi guys, Do u guys know what is the name for the physical file of WRKOBJ in Qsys? I need to OVRDBF with this file. Do u have the reference for the System Physical file for AS400??? Thanks!!!
ovrdbf doesn't get deleted with a dltovr
I've got a cl that copies a PF file to qtemp then I use CRTDUPOBJ to get a LF attached to the qtemp PF file. Then ovrdbf of LF to qtemp/LF with OVRSCOPE(*JOB). After calling 2 programs to update the qtemp/LF I DLTOVR FILE(*ALL) LVL(*JOB). But the override stays doesn't get deleted. I can't figure...
I've got a cl that copies a PF file to qtemp then I use CRTDUPOBJ to get a LF attached to the qtemp PF file. Then ovrdbf of LF to qtemp/LF with OVRSCOPE(*JOB). After calling 2 programs to update the qtemp/LF I DLTOVR FILE(*ALL) LVL(*JOB). But the override stays doesn't get deleted. I can't figure...
Unable to override a PF member
Hi, I am trying to override a physical file using CL. The CL program is being called by a CBLLE program. In the CBLLE program, I want to process the overridden member.But,all the processing is going on the first member only.It looks like as soon as the CL program terminates DLTOVR gets executed...
Hi, I am trying to override a physical file using CL. The CL program is being called by a CBLLE program. In the CBLLE program, I want to process the overridden member.But,all the processing is going on the first member only.It looks like as soon as the CL program terminates DLTOVR gets executed...
Not able to override a database file in CL
Hi, I am trying to override a physical file using CL. But,when I go and delete the override, I get an exception that it was never overriden. :( Any help will be highly appreciated
Hi, I am trying to override a physical file using CL. But,when I go and delete the override, I get an exception that it was never overriden. :( Any help will be highly appreciated
I have an OVRDBF command that quit working.
I added 3 fields to each of the files referenced in the OVRDBF command and then recompiled all 5 CLP's that have the same OVRDBF command in them. Here is a copy of the CLP.... CHGVAR VAR(&TITLE) VALUE('SETLMAST' *CAT &YEARC) CPYF ...
I added 3 fields to each of the files referenced in the OVRDBF command and then recompiled all 5 CLP's that have the same OVRDBF command in them. Here is a copy of the CLP.... CHGVAR VAR(&TITLE) VALUE('SETLMAST' *CAT &YEARC) CPYF ...
Embedded SQL over multiple physical file members
Hi, I'm writing a program to process all the members in a physical file. I've done this using embedded SQL because the selection criteria is quite complex. The physical file belongs to an application which I can't change, so I will always have to deal with multiple members. I also don't have...
Hi, I'm writing a program to process all the members in a physical file. I've done this using embedded SQL because the selection criteria is quite complex. The physical file belongs to an application which I can't change, so I will always have to deal with multiple members. I also don't have...
Embedded SQL to process ALL members
Hi, I'm trying to get an RPG with embedded SQL to read all the members in a file. I know I used to be able to do this with an OVRDBF command with *ALL specified for the member, but this doesn't seem to work anymore. In the joblog I get a CPF4268 message which says the file has no members or is...
Hi, I'm trying to get an RPG with embedded SQL to read all the members in a file. I know I used to be able to do this with an OVRDBF command with *ALL specified for the member, but this doesn't seem to work anymore. In the joblog I get a CPF4268 message which says the file has no members or is...
File access in Rpg
Hi All, Suppose you have 3 members in a database file. How to read records from all the members without using CL (OVRDBF) ie it should be handled exclusively in an RPG program? Thanks Venkat
Hi All, Suppose you have 3 members in a database file. How to read records from all the members without using CL (OVRDBF) ie it should be handled exclusively in an RPG program? Thanks Venkat
Override to file in QTEMP deleted on its own?
We have a job that is run each night during our batch, that has the following functionality: 1. A utility is called, to create a flat file in QTEMP (32766 characters). I'll call this "File A" 2. An OVRDBF command then overrides to this file ("File A") 3. A program is then run, which processes...
We have a job that is run each night during our batch, that has the following functionality: 1. A utility is called, to create a flat file in QTEMP (32766 characters). I'll call this "File A" 2. An OVRDBF command then overrides to this file ("File A") 3. A program is then run, which processes...
SQL File Member Can SQL on i allows users to select a specific member to be processed without using a OVRDBF command
Cqn SQL on i allows users to select a specific member to be processed without using a OVRDBF command
Cqn SQL on i allows users to select a specific member to be processed without using a OVRDBF command
SQP file members
Does SQL on AS400/iSeries allow selecting a specific member to be prcesssed without using a OVRDBF command?
Does SQL on AS400/iSeries allow selecting a specific member to be prcesssed without using a OVRDBF command?
OVRDSPF and OVRDBF
Hi, Good afternoon.Can you tell me what is difference beteween ovrdspf and ovrdpf?
Hi, Good afternoon.Can you tell me what is difference beteween ovrdspf and ovrdpf?


