Link to home
Start Free TrialLog in
Avatar of bcp5190
bcp5190

asked on

How can i upload 5 mb mdb file to my web server?

How can i upload mydb.mdb file to web server everytime user click on upload from there client vb application. i want to create same mdb file on server when user upload then mdb file. how can i do this so the upload time will me the minimum.

Hint: how about if i convert all of the table into text file and upload the text file then on my webserver i can convert back to mdb file or somehow generate mdb file from text file. Is it possible? Or is there any better solution?
I just want to minimize the upload time.
In future On webserver i may went to store all information into sql sever if needed.
Now i'm using access2000. Is access2002 will be helpful in this kind of upload transaction?

Any help or hint will be apriciated.
Avatar of rspahitz
rspahitz
Flag of United States of America image

If you want to minimize the upload time, simply upload the parts that you want changed, then have a serverside process that handles the updates to the DB.
ASKER CERTIFIED SOLUTION
Avatar of Richie_Simonetti
Richie_Simonetti
Flag of Argentina image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bcp5190
bcp5190

ASKER

can you provide some code i'll increase my point.
Just a reminder that you have several open questions. Please maintain them before proceeding:

http://devx.experts-exchange.com/jsp/memberProfile.jsp?mbr=bcp5190&showQHistory=true

Questions Asked 76
Last 10 Grades Given A B A A A A A A A A  
Question Grading Record 52 Answers Graded / 57 Answers Received

Thanks,
Anthony
Avatar of bcp5190

ASKER

i have answered some of the questions, thanks
Well, do you need my example?
bcp5190,

Some of these questions have been open for some time, and our records show you logged in as recently as Jan 23, 2002. Please resolve them appropriately as soon as possible.

https://www.experts-exchange.com/jsp/qShow.jsp?ta=osgen&qid=20250789
https://www.experts-exchange.com/jsp/qShow.jsp?ta=win2k&qid=20224108
https://www.experts-exchange.com/jsp/qShow.jsp?ta=win2k&qid=20224027
https://www.experts-exchange.com/jsp/qShow.jsp?ta=win2k&qid=20218730
https://www.experts-exchange.com/jsp/qShow.jsp?ta=msoffice&qid=20249772
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=20255121
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=20250781
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=20248828
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=20247239
https://www.experts-exchange.com/jsp/qShow.jsp?ta=mssql&qid=20244374
https://www.experts-exchange.com/jsp/qShow.jsp?ta=java&qid=20189160
https://www.experts-exchange.com/jsp/qShow.jsp?ta=javascript&qid=20241876
https://www.experts-exchange.com/jsp/qShow.jsp?ta=javascript&qid=20187022
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20249686
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20248047
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20246855
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20246318
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20244409
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20242375
https://www.experts-exchange.com/jsp/qShow.jsp?ta=visualbasic&qid=20093765
https://www.experts-exchange.com/jsp/qShow.jsp?ta=asp&qid=20249476
https://www.experts-exchange.com/jsp/qShow.jsp?ta=asp&qid=20158800
https://www.experts-exchange.com/jsp/qShow.jsp?ta=html&qid=20235587
https://www.experts-exchange.com/jsp/qShow.jsp?ta=iis&qid=20186130

Thanks,

Netminder
Community Support Moderator
Experts Exchange
Avatar of bcp5190

ASKER

Thanks for an idea but can you please give me some examples
Thanks
Yes. You need to send text files with SQL inside it and store them in a specific folder. After that, you need to read each file, create a querydef(DAO) or a Command (ADO) that executes it and is almost done.