How to insert more than one record to a pf at a time?(Bulk
insert to a pf)

Answers were Sorted based on User's Feedback



How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / ram

how about using SUBFILES...?

Is This Answer Correct ?    10 Yes 2 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / kolla ravi

There is not a thing like a "Bulk insert" or "many records
in one go". No matter what method you adopt the record
action on file is done one at a time.
Now the method you use again depends on Data you have.
If you have data in one or more files CPYF can be used. SQL
may be used when more conditioning and calculation is
needed.Manual entry may be thro UPDDTA or Programs supplied
by 3rd party or tailor made to suit the need.

Is This Answer Correct ?    8 Yes 2 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / swetha p rao

You need to do programming again to handle that subfile
rite?

Is This Answer Correct ?    4 Yes 0 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / zhang

Swetha is right, for additional you can use CPYF or
use SQL
"insert into destable select column1,column2,'123' from
srctable"

Is This Answer Correct ?    4 Yes 0 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / swetha p rao

Bulk insert can be done in ways

1. Using SQL we can runa query
insert into table1 values('a','b','c'),('x','y','z')

2. Using STRDFU we insert records into PF

3. Using DBU (Database utility )also we can insert records

Is This Answer Correct ?    4 Yes 1 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / jp

The question is ambiguous. But still one answer is that you
can enter do bulk insert by the command INZPFM FILE(PF1)
RECORDS(*DFT).Hence the member will be written with data of
maximum records the member can hold.

Is This Answer Correct ?    2 Yes 0 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / subba reddy

more than one record to a pf at a time

1. Using SQL we can runa query
insert into table1 values('a','b','c'),('x','y','z')

2. Using DBU (Database utility )also we can insert records

But using STRDFU we can insert one record at a time

correct me if i am wrong.....

Is This Answer Correct ?    1 Yes 0 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / sharath

an ovrdbf can be used to define blocking factor..individual inserts go to the buffer and get physically inserted into the file when the blocking factor limit is reached.

Is This Answer Correct ?    0 Yes 0 No

How to insert more than one record to a pf at a time?(Bulk insert to a pf)..

Answer / sethu 400

using STRSQL + f4
STRFA + F4

STRFA - START FIELD AID
ENTER SEQUENCE NO
SELECT MODE(F6)
ADD

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More DB400 Interview Questions

Last statement of any RPG pgm is LR?

5 Answers  


How to update physical file using logical file with example?

1 Answers  


can we concate fileds in physical file? If yes how can we do?

5 Answers   Patni,


There are six records in a file and we are going to update that records and used commit operation when it complete the update but suppose when it updating the third record,a error occured and operation failed.Is previously two records will be update or whole operation will be rollback? Please confirm it.

2 Answers  


Suppose if a physical file is having 1000 records, but i deleted 500 records from it. Here the concern is can the size of the file changes or it remains the same... kindly help me out with thorough xplanation.... Thanks in-advance...

6 Answers   ABC, TCS,


How to read a PF in reverse(from last rec to first) using CL?

3 Answers   HCL,


how to eliminate the level check error

2 Answers   TCS,


Which keyword is used both in subfile and subfile control record format of a DSPF?

8 Answers  


wirte a simple program for read file in cl

2 Answers   Active Brains,


what is exception and how many types of exception

1 Answers   Active Brains,


What is the interactive job? What is the batch job?

1 Answers  


How to read a pf in reverse(from last record to first) using cl?

1 Answers  


Categories