Exporting my database data dictionaries using MySQL Workbench CE?

I have a database on a server with about 60 tables, and now I want to export the Data Dictionary database (including table structures).

I can do this on my local machine that has PHPMyAdmin , however I cannot find a way to export it to the server using Workbench .

Who can help?

+4
source share
1 answer

You can install db_doc.lua, the Lua script plugin for MySQL Workbench, which generates data dictionaries similar to those created by DBDoc on MySQL Workbench Enterprise.

Download it from: https://docs.google.com/file/d/0BxXM2ftdUPGeNkM4OGpiYmFxdFk/edit?pli=1

Plugin developer site http://tmsanchezdev.blogspot.mx/2013/11/reporte-actualizado-del-modelo-de-la.html

[Changed]

It seems that support for the LUA plugin has been discontinued. So I wrote a plugin in Python to create data dictionaries. It is available at: https://github.com/rsn86/MWB-DBDocPy

+4
source

Source: https://habr.com/ru/post/1335559/


All Articles