Tagged Questions
0
votes
1answer
236 views
Print table documentation with comments?
I have a MySQL database, and I have used MySQL Workbench to insert text into the "comment" fields of many of the columns and tables; the plan was to have the documentation stored in the database.
...
2
votes
1answer
377 views
log_warnings doesn't seem to work for aborted connections in MySQL 5.1
The docs for 5.1 say that I can set log_warnings = 2 to capture Aborted_connects in the error log. This bug report suggests that this was only merged into 5.5 and 6.0 (and maybe 5.2) but not into ...
3
votes
2answers
154 views
Is index_type ignored on MySQL primary keys in create table?
I have seen a create table whose primary key had an identifier where it should have an index_type, something like that:
create table a (foo INTEGER, PRIMARY KEY foo_id (foo));
The thing is that ...
1
vote
1answer
329 views
Can I export a MySQL schema to latex?
I have asked this question on SO before, but did not get a good answer.
I would like to be able to export a MySQL schema to a set of Latex tables.
phpMyAdmin does this, but it is buggy and does not ...