在Windows上使用mysql 5.5.2(Wamp)我正在编写一个使用多个数据库的Java应用程序。我想列出数据库名称及其创建日期。数据库具有相同的表,只有数据不同(Archives)。 Java的任何技巧?
编辑:
mysql> show databases;
+-------------------------+
| Database |
+-------------------------+
| information_schema |
| formaction_archive_test |
| mysql |
| performance_schema |
| sw_formaction |
| test |
+-------------------------+
6 rows in set (0.00 sec)
“formaction_archive_test”和“sw_formaction”都是由我创建的“root”,它们具有相同的表格。我的问题是如何获得各自的创作日期。
我找到了这个解决方案:
mysql> use information_schema;
Database changed
mysql> SELECT table_name, create_time
-> FROM tables
-> WHERE table_schema NOT IN('mysql', 'information_schema') ;
+----------------------------------------------+---------------------+
| table_name | create_time |
+----------------------------------------------+---------------------+
| cond_instances | NULL |
| events_waits_current | NULL |
| events_waits_history | NULL |
| events_waits_history_long | NULL |
| events_waits_summary_by_instance | NULL |
| events_waits_summary_by_thread_by_event_name | NULL |
| events_waits_summary_global_by_event_name | NULL |
| file_instances | NULL |
| file_summary_by_event_name | NULL |
| file_summary_by_instance | NULL |
| mutex_instances | NULL |
| performance_timers | NULL |
| rwlock_instances | NULL |
| setup_consumers | NULL |
| setup_instruments | NULL |
| setup_timers | NULL |
| threads | NULL |
| annee | 2012-06-06 16:19:04 |
| categorie | 2012-06-06 16:19:04 |
| certification | 2012-06-06 16:19:04 |
| client | 2012-06-06 16:19:04 |
| clientold | 2012-06-06 16:19:04 |
| connaisance_ecole | 2012-06-06 16:19:04 |
| duree | 2012-06-06 16:19:04 |
| eleve | 2012-06-06 16:19:04 |
| famille | 2012-06-06 16:19:04 |
| formateur | 2012-06-06 16:19:04 |
| formation | 2012-06-06 16:19:04 |
| inscription | 2012-06-06 16:19:04 |
| lieux | 2012-06-06 16:19:05 |
| lst_formation | 2012-06-06 16:19:05 |
| moyen_paiement | 2012-06-06 16:19:05 |
| paiement | 2012-06-06 16:19:05 |
| session | 2012-06-06 16:19:05 |
| souhait | 2012-06-06 16:19:05 |
| souhaits | 2012-06-06 16:19:05 |
| type_certification | 2012-06-06 16:19:05 |
+----------------------------------------------+---------------------+
37 rows in set (0.01 sec)
但它只显示了最后创建的数据库信息。可能解决方法是查看文件创建日期吗?
答案 0 :(得分:4)
应该是这个要求得到它:
SELECT table_name, create_time
FROM information_schema.tables
您可以删除information_schema
和mysql
架构以获取您创建的架构:
SELECT table_name, create_time
FROM information_schema.tables
WHERE table_schema NOT IN('mysql', 'information_schema')
编辑:
要获得数据库创建时间,唯一的方法是检查最旧的表:
SELECT MIN(create_time)
FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = 'my_database'
如果需要,可以在数据库中插入一个无用的(或不是)表,如_config
,这些表永远不会丢弃。
答案 1 :(得分:1)
我不确定Java中是否有特定技巧可以提供帮助,但检查此处引用的INFORMATION_SCHEMA_TABLES
表:http://dev.mysql.com/doc/refman/5.0/en/tables-table.html可能有所帮助。可能需要所有表的最小创建时间,并将其用作数据库创建时间?
AFAIK,无法检查何时使用纯SQL创建数据库。