4

I'm searching for a tool to dump a database including DDL and content as plain SQL-Sсript, so that it can be archived in a plain text format. I know e.g. the Oracle dump tools or MySQL dump, but is there a tool which can connect to different data sources and get the job done? GUI would be great.

Christian Waidner
  • 1,324
  • 1
  • 13
  • 22
  • By different data sources do you mean different database implementations (Oracle, SQL Server, etc.)? Or do you mean two different connections to the same kind of database? – Rob H Jan 15 '10 at 16:04

2 Answers2

2

Look at set of SSMA Microsft's free tools (Oracle, Sybase, MySQL..) http://www.microsoft.com/sqlserver/2005/en/us/Migration-oracle.aspx

Dewfy
  • 23,277
  • 13
  • 73
  • 121
1

Check out http://squirrel-sql.sourceforge.net/. Gui, cross-platform and supports any database with jdbc driver.

Peter Lynch
  • 525
  • 5
  • 9
  • 1
    Include an automatic DBCopy plugin too... might let a user omit the need for SQL Script entirely! – BobMcGee Jan 15 '10 at 16:06