Application Development and Automation 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: 
Read only

99Mb File upload.

Former Member
0 Likes
1,787

Hello Experts,

I have a file which contains data which needs to be uploaded to a table.The file extension is .csv and file size is 99Mb.

The problem I am facing is that when I try to upload the file in foreground it gives me a 'malloc' error and when I try putting it on the application server using SXDA,this too results in a dump.

Is there any special techniques we need to use to upload heavy files.Please give me pointers in this direction.

Thank you.

Gaurav.

Hello Experts,

I have a file which contains data which needs to be uploaded to a table.The file extension is .csv and file size is 99Mb.

The problem I am facing is that when I try to upload the file in foreground it gives me a 'malloc' error and when I try putting it on the application server using SXDA,this too results in a dump.

Is there any special techniques we need to use to upload heavy files.Please give me pointers in this direction.

Thank you.

Gaurav.

5 REPLIES 5
Read only

Former Member
0 Likes
1,715

try to do a parital load. In the sense try to upload the first half of the file and once it is done then load the second half of the file. In SXDA you have the option to give the from and to row numbers to load.

- Guru

Read only

0 Likes
1,715

Hello Guru,

Thank you for the reply.

The problem is that this is a scenario which has headers in a file and items in another,so I cannot go for the partial load option.

Regards,

Gaurav.

Read only

0 Likes
1,715

Then you may have to contact your Basis guys and ask them to allocate more memory space temporarly so that it will allow you to upload this file. Once you are done with the data load they can pull back the additional memory they have provided.

- Guru

Read only

0 Likes
1,714

Hi Guru,

Thanks I think that this wud be the only solution.

Regards,

Gaurav.

Read only

Former Member
0 Likes
1,714

Have your basis people FTP it to the application server.

Rob