This question already has answers here:
How to fix possible db corruption?
(5 answers)
Closed 6 years ago.
I have a MDB file that can't be opened. It seems like it's corrupted. Is there a best practice how to fix that?
I've already tried this tool
StellarPhoenixAccessDatabaseRepair
but it didn't help.
I need to make this file works again...
Thanks
You can try these methods for repairing corrupted database. If database cannot be opened at all, even with pressed Shift, try to import database objects to new database.
This question already has answers here:
Is it possible to store pictures,sounds,videos in SQL Database? [closed]
(2 answers)
Closed 7 years ago.
Is it possible to upload videos to mysql database(or another database) and then store them in this database but not on my own computer?
Technically, yes. But you would almost certainly never do this (unless the files were very small), preferring instead to store the files in a file server, and only their paths and meta data in the database.
This question already has answers here:
MySql to PostgreSql migration
(8 answers)
Closed 9 years ago.
I have a file .sql and I can't open it with pgadmin.
How do I import it?
The PostgreSQL wiki has a lot of interesting links for exactly this: http://wiki.postgresql.org/wiki/Converting_from_other_Databases_to_PostgreSQL#MySQL
This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
Full complete MySQL database replication? Ideas? What do people do?
Yo,
I got some data spread out on various servers (dont ask, it just have to be that way) and i really want them all in a master - slave relation so that i can update through one server but they are all on shared VPS webhosts.
So, is there a ninja way of doing this?
The real ninja way is to read replication documentation
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
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?
UPDATE:
This is an answer for about 4 years ago and links were dead because of time, I'll put new links as soon as I find some.
1- FlightStats
2- MySql Version of NW schema (InnoDB)
3- MySql Version of NW schema (MyISAM)
4- more info
and a suggestion from mindplay.dk:
5- Northwind (schema+data, as provided by mnk below)
Here's a version of Northwind for MySQL on GitHub. The column names have been slightly altered to fit the MySQL standard.
https://github.com/dalers/mywind
You may download it from here:
http://dev.wavemaker.com/forums/?q=node/4721
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
I have tested quite all the dumps available in this thread with latest MariaDB but all of them were returning warnings or errors
searching out there I have found this
http://www.dotnettwitter.com/2011/05/northwind-database-scripts-for-sql.html
UPDATED LINK https://www.zentut.com/sql-tutorial/sql-sample-database/ (see at bottom)
ANOTHER LINK https://www.sourcecodester.com/sql/12809/3-sql-version-northwind-database.html (use blue download button in the page)
so far this is the unique Northwind for MariaDB MySQL that works like a charm
no errors, no warnings,
I link it since it is not listed in this thread
Yes. Can be found here, for instance.
There is a sample database provided by MySQL: https://dev.mysql.com/doc/employee/en/index.html
There's a link at the beginning of the article where you can grab an SQL script with structure and data:
http://www.geeksengine.com/article/export-access-to-mysql.html
I know this question is from a long time ago, but I needed specifically Northwind on MySQL a while ago. So I migrated the structure and data on the current version of Northwind in Codeplex to MySQL.
In case anyone else needs it, it can be found here