I need some test data for a MySQL utility that I am creating. Does anybody know where I can find one that has a similiar (if not more) amount of data as Northwind for SQL Server?

link|improve this question

And yes... I tried Googling for "mysql test database"... (rolls eyes) – Josh Stodola Jan 10 '10 at 7:07
I use a WordPress database and populate with dummy instead. – rockacola Jan 10 '10 at 7:09
@rock I would prefer a more business-related schema, with dollar amounts, percentages, averages, etc. And of course, I don't have the time (nor the patience) to manually populate. – Josh Stodola Jan 10 '10 at 8:19
feedback

4 Answers

up vote 6 down vote accepted

1- Northwind (schema+data, as provided by mnk below)

2- FlightStats

3- MySql Version of NW schema (InnoDB)

4- MySql Version of NW schema (MyISAM)

5- more info

link|improve this answer
feedback

One option would be to export the actual Northwind DB to MySQL. http://www.geeksengine.com/article/export-access-to-mysql.html

FlightStats seems to be another one you could use: http://flightstats.us/about.php

The purpose of this application is to demonstrate MySQL 4.1 and some of its new and more advanced features. As MySQL matures, it is the hope that this application will also mature. Currently, the following features are used in some meaningful way:

  • Joins
  • Subqueries
  • Subqueries in the FROM clause
  • Query cache
link|improve this answer
feedback

http://marakana.com/download/sql/northwind.sql

link|improve this answer
also useful is this diagram of the database – mindplay.dk Apr 30 at 1:25
feedback

There's a link at the beginning of the article where you can grab a SQL script with structure and data:

http://www.geeksengine.com/article/export-access-to-mysql.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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