Look at these two links. It will give you some idea.
http://www.aspalliance.com
http://www.aspalliance.com
I am with mgfranz, why not use ADO getchunk,appendchunk. With any damn technics you will defintely have issues with very large data. File upload/download, CDO, XML everything would be slower/might break in between with very large data. But in the past I have worked with ADO Getchunk/appenchunk with SQL text field and it worked very well. I even stored large Crystal reports in a text field without any problems. Of course I had performance issues. Therefore I developed a small VB Client-server application to do Upsizing/downsizing.
My suggestion is to build a separate stand alone apps in VB to do those transfers. If more than 300k is a issue, do not waste time how to do it with all ASP technolgies, instead go back couple of years back and give them a tool which will do the job.
Right now I run a batch everynight to upload 30,000 rows from one db to another and I have a VB script scheduled in windows NT.
So one idea is : You can write a VB program which will read the files from the specified directory and update the you SQL db text columns (appenchunk) and the location,name of the file will be updated by your user from your web apps.
How does it sound ?
Main Topics
Browse All Topics





by: mgfranzPosted on 2002-06-25 at 17:55:46ID: 7109416
Can't you just create a session variable out of the data string?
How about using GetChunks() to post the data... I guess I'm not following what you are doing...