up vote 2 down vote favorite
1
share [g+] share [fb]

I have a problem, and was hoping I could rely on some of the experience here for advice and a push in the right direction. I have an MS Access file made by propietary software. I only want to take half the columns from this table, and import into new(not yet setup)mysql database.

I have no idea how to do this or what the best way is. New data will be obtained each night, and again imported, as an automatic task.

One of the columns in the access database is a url to a jpeg file, I want to download this file and import into the database as a BLOB type automatically.

Is there a way to do this automatically? This will be on a windows machine, so perhaps it could be scripted with WSH?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

This is a bash script linux example using mdbtools for automatic extraction and import from a mdb file to mysql.

#!/bin/bash

MDBFILE="Data.mdb"

OPTIONS="-H -D %y-%m-%d"
mdb-export $OPTIONS $MDBFILE  TableName_1 >  output_1.txt
mdb-export $OPTIONS $MDBFILE  TableName_2 >  output_2.txt

mdb-export $OPTIONS $MDBFILE  TableName_n >  output_n.txt

MYSQLOPTIONS=' --fields-optionally-enclosed-by=" --fields-terminated-by=, -r '
mysqlimport $MYSQLOPTIONS -L -uuser -ppasword database output_1.txt
mysqlimport $MYSQLOPTIONS -L -uuser -ppasword database output_2.txt
mysqlimport $MYSQLOPTIONS -L -uuser -ppasword database output_n.txt

You can use some others mysqlimport options: --delete: to delete previous Data from the target mysql table. --ignore: ignore duplicates --replace: replace if a duplicate is found

It's not a windows solution but i Hope it helps.

link|improve this answer
Thankyou for your answer, Can you clarify a bit more, would I replace TableName with all the tablenames I want? Would it make sure that data would not be imported twice? – Joshxtothe4 Oct 28 '08 at 12:33
I've edit my post. But yes, you need to replace TableName_n with all the tablenames you want. You have some mysqlimport options to prevent duplicate data. – Luis Melgratti Oct 28 '08 at 12:58
Why would you use MDBTools on a Windows box when you've already got genuine Jet installed on it (Jet is a component of Windows, because it's used as the data store for Active Directory)? – David-W-Fenton Oct 31 '08 at 1:36
As I said before this is a bash script LINUX example. I'm in a LINUX box. "It's not a windows solution but i Hope it helps." – Luis Melgratti Oct 31 '08 at 18:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.