Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Large file upload

Former Member
0 Kudos
205

Hi all,

Is there a way to upload a large file.

The problem:

1 file with fixed length records (59 bytes wide)

Over 17million lines available (actually a download from an extreme old system), making a total of almost 1Gb.

I have a database table that exactly machtes the record data.

So the question is: How to upload this amount of data. The normal upload functions do not apply because i run out of memory space (system I-MODE too large).

Regards,

Rob.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
140

Hi Rob,

I'm not too sure if this solution will be acceptable in your case, but here's one way that I can think of -

You can FTP this file to the Application Server and then process this file through a simple ABAP program and update the file's data to the desired database table.

Regards,

Anand Mandalika.

2 REPLIES 2

Former Member
0 Kudos
141

Hi Rob,

I'm not too sure if this solution will be acceptable in your case, but here's one way that I can think of -

You can FTP this file to the Application Server and then process this file through a simple ABAP program and update the file's data to the desired database table.

Regards,

Anand Mandalika.

Former Member
0 Kudos
140

Hi Rob,

with open dataset and read dataset, you can apply some logic to limit the number of records read into memory to a number you like and process the data in small packages.

regards

Siggi