Search Results

1
vote

How do I restore a MySQL .dump file?

You simply need to run this: mysql -p -u[user] [database] < db_backup.dump If the dump contains multiple databases you should obmit the …
2
votes

Is there a simple tool to convert mysql to postgresql syntax?

There's a mysqldump option which makes it output PostgreSQL code: mysqldump --compatible=postgresql ... …
0
votes

Flags in a database rows, best practices.

If the flags have very different meanings and are used directly in SQL queries or VIEWS, then using multiple columns of type BOOLEAN might be a good idea. Put each flag …