Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to import data from mssql, run it through some sort of regexp to fitler out stuff, and import it into mysql. I then, for each query, wish to display a relevant image from a third database. What would be the easiest way to do this, importing and linking wise?

Thankyou

Clarification: It is a php application to filter data from another database, and then for each record show an associated image froma 3rd database. It is from scratch...

share|improve this question
Hi, re-tagged this to merge mssql tags into sqlserver. – ConcernedOfTunbridgeWells Oct 8 '08 at 15:06
hrm why would you have to even import the data into mysql then? just query whatever database and display the image... – Shawn Oct 10 '08 at 2:33

3 Answers

You can try the MySQL Migration Toolkit. http://dev.mysql.com/downloads/gui-tools/5.0.html

Now archived at http://downloads.mysql.com/archives.php?p=mysql-migration-toolkit

share|improve this answer
Note that the migration toolkit reports that it requires JRE 1.4.2 or 5.0. The toolkit is end-of-life, but a migration plugin is on the cards for MySQL Workbench as noted at dev.mysql.com/support/eol-notice.html (in the section headed EOL of MySQL Query Browser, MySQL Administrator, MySQL Migration Toolkit). – jah Dec 28 '12 at 20:28

use SQL Management Studio (or Enterprise Manager depending on version) with the SQL Server import wizerd to get it into MS SQL.

From there you can export it to Mysql using the MySQL connector drivers.

As for as displaying an image from a third database, that is completely up to the code you have written in your application.

share|improve this answer

I would use the Microsoft SQL Server Data Publishing Wizard (free). You can use it to script your entire database (including insert statements.) You'll have to edit this script a little bit probably to get it to run in MySQL. Now you just have a regex problem. You can try:

  • Manipulating the data in MS SQL via a query, or from code (using regex) the transfer.
  • Running your regexes on the script file itself, maybe try some macros, find and replace, etc.
  • Manipulating the data in MySQL via a query, or from code (using regex) after the transfer.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.