TED]
Subject: Re: print database schema
Hello
more of a visual tool. The program I did see had views of all the tables
as if you had done a "describe table_name" for each table, then had lines
linking the relationships between tables (similar to what you can view in
Access , even th
You can run mysqldump from the command line, if you only want the schema you
can do:
mysqldump -u username databasename -d -p > my.dump
man mysqldump to see more options.
or if you want you can try phpmyadmin at
http://www.phpwizard.net/projects/phpMyAdmin/ it is a web based admin tool
for mysq
Hello
more of a visual tool. The program I did see had views of all the tables
as if you had done a "describe table_name" for each table, then had lines
linking the relationships between tables (similar to what you can view in
Access , even though i hate to admit I have used it :)
would just be
At 14:42 +1000 1/29/02, Steven Wren wrote:
>Hello
>
>I was wondering if anyone knew of a program that would allow you to print
>out a complete database. I have seen it on a PostGre DB, so I am sure
>MySQL should have something...
You mean mysqldump --no-data db_name ?
>
>cheers!
>
>Regards,
>
>