Ask a Question related to Coldfusion Database Access, Design and Development.
-
mach10 #1
Upload Access DB then convert to SQL
I need to be able to take my Access Database and upload it to my website (this
will happen every work day). After it is uploaded I need to take the Access
table and insert it into my SQL database. The SQL table will need to be dropped
and then recreated again with the new information, or all of the rows will need
to be deleted before inserting the new data. I'm uploading all the records not
just new records, so that is why everything in that table needs to be deleted
first.
Does anyone know how to do this? I'm not sure what I need to do after I upload
the Access database to my server. Any help in taking the Access table and
inserting it into my SQL database would be greatly appreciated!!!!!
Thanks in advance!!!!
mach10 Guest
-
upload and convert video files
I am trying to allow my users to upload any video file format to my server, where i want to convert it and save it as an flv. I have found a couple... -
Upload File into Access
I have a Dreamweaver Page which is attached to a MS Access Database in Cold Fusion. In the page is a browse button which opens the select file... -
upload a jpg to an access database?
Is it possible to upload a jpg file into a access database or is there a better method for diplaying user uploaded pictures? I want registered users... -
Convert Sql to Ms access
I got this oracle sql. How do I CONVERT IT TO MSACCESS strSQL = "select 'TRUE' ADD_RIGHT,'TRUE' MODIFY_RIGHT,'TRUE' DELETE_RIGHT,0 IS_REPORT... -
How do I convert & upload brochure to web page
I have created a 12 page brochure in Publisher 2003. How do I upload that to a website? help much appreciated - billhowe@cox.net -
Dan Bracuk #2
Re: Upload Access DB then convert to SQL
Is there a reason you can't simply use your Access database?
If not, can you access the sql db from outside the web server? If so, put a
linked table into your Access db and run your queries from it.
Originally posted by: mach10
I need to be able to take my Access Database and upload it to my website (this
will happen every work day). After it is uploaded I need to take the Access
table and insert it into my SQL database. The SQL table will need to be dropped
and then recreated again with the new information, or all of the rows will need
to be deleted before inserting the new data. I'm uploading all the records not
just new records, so that is why everything in that table needs to be deleted
first.
Does anyone know how to do this? I'm not sure what I need to do after I upload
the Access database to my server. Any help in taking the Access table and
inserting it into my SQL database would be greatly appreciated!!!!!
Thanks in advance!!!!
Dan Bracuk Guest
-
paross1 #3
Re: Upload Access DB then convert to SQL
You might want to look into using DTS (Data Transformation Services) in your
SQL Server for this. You can write packages to drop and create tables, then
import the data, etc. You can then schedule this package to be run as a job at
whatever time you see fit.
Phil
paross1 Guest
-
ksmith #4
Re: Upload Access DB then convert to SQL
Hi,
It sounds like some of the alternatives mentioned may make more sense than
what you have described. But to do what you want:
Upload the access file to a location you want.
Create a DSN in the cfadmin for it. (Make sure maintain connections is not
checked.)
Upload your new file as needed.
Do a drop table or truncate in a cfquery.
Recreate the table and add your data
ksmith Guest



Reply With Quote

