Upload Access DB then convert to SQL

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139