Generate mysql erd with connections [closed] - mysql

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 8 years ago.
Improve this question
I need to generate er diagram from dump of mysql database. I tryed a lot of tools like MySQL WorkBench and they generate only tables, but not connections between them. I need something like this http://www.cacti.net/downloads/docs/sql/database_schema.pdf (last page). Which software could make it? Thanks.

SchemaCrawler for MySQL is a free tool that generates diagrams. SchemaCrawler can infer relationships between tables, based on commonly used naming conventions, and display these with dotted lines. Here is an example diagram:
Sualeh Fatehi, SchemaCrawler

Related

Can I create a DACPAC for installing DDL against a mySQL database [closed]

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 6 years ago.
Improve this question
Currently we are planning on releasing database changes using DACPAC's for SQL Server. We are planning on building applications for mySQL and we need a way to build releases for code that will get checked into TFS. Is it possible to create a DACPAC and run it against a mySQL database? If DACPAC's won't work, does anyone have a better suggestion? Thanks.
Dacpac files are SQL Server specific and the tools do not support any other RDBMS.

Best way to visualize mysql database [closed]

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 7 years ago.
Improve this question
I need a software so I can visualize a mysql database and see data entries. I need to be able edit entries/moderate. Any suggestions? I can log into the mysql in terminal but can't see any of the data; only the tables. Thank you!
Why not MySQL itself? The Community Edition, for example. It includes MySQL Workbench, which has a visual environment. You can get it from here.
You could take a look at phpMyAdmin

Is there a good batch Migration tool for migration from Firebird to MySQL? [closed]

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 8 years ago.
Improve this question
We have a lot of Firebird databases that we want to convert to MySQL. Is there any good tool out there to automate the conversion?
All databases have the same structure, and each FireBird Database should be converted into its own MySQL database.
The tools should at least be able to migrate the data (since we could copy the blank db), but creation of the MySQL db would be a plus.
you can test Database Comparer

Any way to automatically generate a UML diagram? [closed]

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 7 years ago.
Improve this question
I have a MySQL DB and I would like to generate its relational diagram. Is there a tool that can connect to the DB and automatically generate it for me?
Yes, DEVART's DBForge for MySQL will do this.
There is a free Express edition, I'm not sure it has this functionality, but have a look at: http://www.devart.com/dbforge/mysql/studio/
If you are a happy owner of IntelliJ IDEA Ultimate Edition, you can use its database tools. IDEA is able to connect to databases and build UML diagrams.

Simple Database Viewer and Search Tool [closed]

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 7 years ago.
Improve this question
I've exported all the old orders out of our old store into a mySQL DB.
Anyone know of a simple project or web based app that will let you search all fields with a wildcard?
So if I type in sha automatically any results with those letters would popup.
This would be similar to dbman but with mysql and some ajax. And preferably free and open source.
If you can use a "fat" client you can download the MySQL GUI tools from http://dev.mysql.com/downloads/gui-tools/5.0.html
Also look at http://www.mysqlajaxtableeditor.com/
PHPMyAdmin seems to be the most popular my man.