Firebird SQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesFirebird SQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old September 28th, 2004, 08:14 AM
CeBepuH CeBepuH is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Posts: 1 CeBepuH User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Cool convert fdb to mysql

I need a tool which can confert fdb files to a mysql sql file or something which can be imported into mysql.

As a note - I have never worked with Firebird until today.

Any help would be appreciated

Reply With Quote
  #2  
Old September 29th, 2004, 03:44 AM
fikret fikret is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2004
Location: Sarajevo, Bosnia
Posts: 111 fikret User rank is Corporal (100 - 500 Reputation Level)fikret User rank is Corporal (100 - 500 Reputation Level)fikret User rank is Corporal (100 - 500 Reputation Level)fikret User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 5 h 17 m 43 sec
Reputation Power: 8
If you need REAL DATABASE, stay with Firebird

I think that you can use some tool to insert data into MySQL from ODBC source. If you find one, just install Firebird ODBC driver and move into MySQL.
But I think that Firebird is better option.

--
Best regards,
Fikret Hasovic http://fikret.fbtalk.net
TAMP R&D Team
FirebirdSQL Foundation member.
- Join today at http://www.firebirdsql.org/ff/foundation
JEDI VCS contributor
http://jedivcs.sourceforge.net/

Reply With Quote
  #3  
Old November 24th, 2004, 10:20 AM
jacobds jacobds is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 5 jacobds User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 23 sec
Reputation Power: 0
Other direction?

Is there any way to go the other direction? Say take a MySql DataBase and import it into FireBird? Or for that matter, a SQL Server database?

Thanks

Reply With Quote
  #4  
Old November 24th, 2004, 12:23 PM
mariuz's Avatar
mariuz mariuz is offline
Bug Hunter
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2003
Location: Transylvania (Romania)
Posts: 274 mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level)mariuz User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 20 h 12 m 34 sec
Reputation Power: 9
you can do it the hard way
I dump the database structure from mysql then create the database in firebird (table by table) , after that you could dump tables in csv format and import them in fb

ps: there are better tools for data pump (do a search on google and this forum )
__________________
My home page: http://www.firebirdsql.org and work place :http://www.reea.net

Reply With Quote
  #5  
Old November 30th, 2004, 08:43 AM
fikret fikret is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2004
Location: Sarajevo, Bosnia
Posts: 111 fikret User rank is Corporal (100 - 500 Reputation Level)fikret User rank is Corporal (100 - 500 Reputation Level)fikret User rank is Corporal (100 - 500 Reputation Level)fikret User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 5 h 17 m 43 sec
Reputation Power: 8
Quote:
Originally Posted by jacobds
Is there any way to go the other direction? Say take a MySql DataBase and import it into FireBird? Or for that matter, a SQL Server database?

Thanks

I would recommend
http://www.clevercomponents.com/pro.../ibdatapump.asp
or
http://www.ibphoenix.com/main.nfs?a...ql2gdb&o=Search

Enjoy

--
Best regards,
Fikret Hasovic http://fikret.fbtalk.net
TAMP R&D Team
FirebirdSQL Foundation member.
- Join today at http://www.firebirdsql.org/ff/foundation
JEDI VCS contributor
http://jedivcs.sourceforge.net/

Reply With Quote
  #6  
Old January 14th, 2005, 10:16 AM
ramajana ramajana is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 1 ramajana User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Full Convert does the job

Quote:
Originally Posted by CeBepuH
I need a tool which can confert fdb files to a mysql sql file or something which can be imported into mysql.

As a note - I have never worked with Firebird until today.

Any help would be appreciated


Please take a look at FullConvert application. It can convert many database formats, with closest possible structure preserved. It transforms indexes, too, and is very fast. There are also some advanced functions which enable you to edit target database and store your actions in session file for easy reuse.

URL: URL

Damir Bulic
Spectral Core
URL

Reply With Quote
  #7  
Old January 27th, 2005, 09:30 PM
dtremblay dtremblay is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Posts: 4 dtremblay User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 46 m 58 sec
Reputation Power: 0
Convert from MySQL to/from Firebird

Firebird has a tool called qli which exists on all platforms (windows, linux, etc). You can view the documentation here:
QLI Syntax

It supports GDML (if you know it) so that you can export/import all you data into separate files.

In MySQL, you can do things like the following to export
SELECT a,b,a+b INTO OUTFILE '/tmp/result.text'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM test_table;


and you can use the mysqlimport utility to import.

So, you don't have to buy anything, and you'll have a whole lot of fun migrating databases.

Dan.

Reply With Quote
  #8  
Old February 2nd, 2005, 02:27 AM
upscene upscene is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2003
Posts: 223 upscene User rank is Corporal (100 - 500 Reputation Level)upscene User rank is Corporal (100 - 500 Reputation Level)upscene User rank is Corporal (100 - 500 Reputation Level)upscene User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 7 h 14 m 50 sec
Reputation Power: 8
Take a look at Database Workbench: www.upscene.com - it has both schema converters (tables, indices etc) and a DataPump tool.
__________________
Martijn Tonies
Database Workbench: developer IDE for Firebird, MySQL, InterBase, MSSQL Server and Oracle
Upscene Productions
http://www.upscene.com

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesFirebird SQL Development > convert fdb to mysql


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway