#author("2019-02-05T16:43:01+09:00","default:kuji","kuji")
#author("2019-05-25T11:01:25+09:00","default:kuji","kuji")
[[MySQL on FreeBSD]]

CONTENTS
#contents
----
Lastmodified &lastmod;
----
*MySQL が起動しない [#g32bf934]
** filesystem full の後起動しない [#vd7ce2c1]

/var/log/httpd-error.log が巨大になって、/ が、-18Gでfilesystem full エラー。

その後、mysql が起動しなくなった。

https://qiita.com/gaogaomango/items/933a1f55004920a4323d

ログ(g7.kuji-clinic.net.err)には、

 2019-05-25T01:42:11.790488Z 0 [ERROR] Unix socket lock file is empty /tmp/mysql.sock.lock.
 2019-05-25T01:42:11.790504Z 0 [ERROR] Unable to setup unix socket lock file.
 2019-05-25T01:42:11.790515Z 0 [ERROR] Aborting

とある。

 #rm /tmp/mysql.sock.lock

で起動!( ̄^ ̄)ゞ


** mysql56 を portupgrade したら起動しなくなった [#oc3d4670]
portのバージョンが更新されたので、
 portupgrade
したら、起動しなくなった。/var/db/mysql/FQDN.err は、

 2017-01-21 08:19:26 29191 [Warning] Buffered warning: Could not increase number of max_open_files to more than 32768 (request: 32929) 
 
 2017-01-21 08:19:26 29191 [Warning] Buffered warning: Changed limits: table_open_cache: 16303 (requested 16384)
 
 2017-01-21 08:19:26 29191 [Note] Plugin 'FEDERATED' is disabled.
 2017-01-21 08:19:26 29191 [Note] InnoDB: Using atomics to ref count buffer pool pages
 2017-01-21 08:19:26 29191 [Note] InnoDB: The InnoDB memory heap is disabled
 2017-01-21 08:19:26 29191 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
 2017-01-21 08:19:26 29191 [Note] InnoDB: Memory barrier is not used
 2017-01-21 08:19:26 29191 [Note] InnoDB: Compressed tables use zlib 1.2.8
 2017-01-21 08:19:26 29191 [Note] InnoDB: Not using CPU crc32 instructions
 2017-01-21 08:19:26 29191 [Note] InnoDB: Initializing buffer pool, size = 1.0G
 2017-01-21 08:19:26 29191 [Note] InnoDB: Completed initialization of buffer pool
 2017-01-21 08:19:26 29191 [ERROR] InnoDB: auto-extending data file /var/db/mysql/ibdata1 is of a different size 4864 pages
 (rounded down to MB) than specified in the .cnf file: initial 8192 pages, max 0 (relevant if non-zero) pages!
 2017-01-21 08:19:26 29191 [ERROR] InnoDB: Could not open or create the system tablespace. If you tried to add new data files
 to the system tablespace, and it failed here, you should now edit innodb_data_file_path in my.cnf back to what it was, and
 remove the new ibdata files InnoDB created in this failed attempt. InnoDB only wrote those files full of zeros, but did not yet
 use them in any way. But be careful: do not remove old data files which contain your precious data!
 2017-01-21 08:19:26 29191 [ERROR] Plugin 'InnoDB' init function returned error.
 2017-01-21 08:19:26 29191 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
 2017-01-21 08:19:26 29191 [ERROR] Unknown/unsupported storage engine: InnoDB
 2017-01-21 08:19:26 29191 [ERROR] Aborting
 
 2017-01-21 08:19:26 29191 [Note] Binlog end
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'partition'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_FT_DELETED'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_METRICS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_CMPMEM'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_CMP_RESET'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_CMP'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_LOCKS'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'INNODB_TRX'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'BLACKHOLE'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'ARCHIVE'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'MRG_MYISAM'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'MyISAM'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'MEMORY'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'CSV'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'sha256_password'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'mysql_old_password'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'mysql_native_password'
 2017-01-21 08:19:26 29191 [Note] Shutting down plugin 'binlog'
 2017-01-21 08:19:26 29191 [Note] /usr/local/libexec/mysqld: Shutdown complete


** 【解決方法】 [#f855ffd4]

/etc/rc.conf 

 mysql_enable="YES"
 mysql_optfile="/usr/local/etc/mysql/my.cnf"

と、今時のmy.cnfの位置を指定したうえで、

/usr/local/etc/mysql/my.cnf

 #innodb_data_file_path           = ibdata1:128M:autoextend

の行をコメントアウトしたら、起動した。

早速、

 # mysql_upgrade -u root -p
 Enter password:
 Looking for 'mysql' as: mysql
 Looking for 'mysqlcheck' as: mysqlcheck
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 mysql.columns_priv                                 OK
 mysql.db                                           OK
 mysql.event                                        OK
 mysql.func                                         OK
 mysql.general_log                                  OK
 mysql.help_category                                OK
 mysql.help_keyword                                 OK
 mysql.help_relation                                OK
 mysql.help_topic                                   OK
 mysql.innodb_index_stats                           OK
 mysql.innodb_table_stats                           OK
 mysql.ndb_binlog_index                             OK
 mysql.plugin                                       OK
 mysql.proc                                         OK
 mysql.procs_priv                                   OK
 mysql.proxies_priv                                 OK
 mysql.servers                                      OK
 mysql.slave_master_info                            OK
 mysql.slave_relay_log_info                         OK
 mysql.slave_worker_info                            OK
 mysql.slow_log                                     OK
 mysql.tables_priv                                  OK
 mysql.time_zone                                    OK
 mysql.time_zone_leap_second                        OK
 mysql.time_zone_name                               OK
 mysql.time_zone_transition                         OK
 mysql.time_zone_transition_type                    OK
 mysql.user                                         OK
 Running 'mysql_fix_privilege_tables'...
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 mysqlcheck: Got error: 1049: Unknown database 'jm3' when selecting the database
 FATAL ERROR: Error during call to mysql_check for fixing the db/tables names on all db(s) except mysql

ありゃ?
 FATAL ERROR: Error during call to mysql_check for fixing the db/tables names on all db(s) except mysql

** 解決策 [#d078e454]

/usr/local/etc/mysql/my.cnf

 #lower_case_table_names          = 1
 lower_case_table_names          = 0       ←これを1から0へ変更

https://dev.mysql.com/doc/refman/5.6/ja/identifier-case-sensitivity.html

これで、

 # mysql_upgrade -u root -p
 Enter password:
 Looking for 'mysql' as: mysql
 Looking for 'mysqlcheck' as: mysqlcheck
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 mysql.columns_priv                                 OK
 mysql.db                                           OK
 mysql.event                                        OK
               :                :
 mysql.time_zone                                    OK
 mysql.time_zone_leap_second                        OK
 mysql.time_zone_name                               OK
 mysql.time_zone_transition                         OK
 mysql.time_zone_transition_type                    OK
 mysql.user                                         OK
 Running 'mysql_fix_privilege_tables'...
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 JM3.vg49r_assets                                   OK
 JM3.vg49r_associations                             OK
 JM3.vg49r_banner_clients                           OK
                  :                    : 
 phpmyadmin.pma__userconfig                         OK
 phpmyadmin.pma__usergroups                         OK
 phpmyadmin.pma__users                              OK
 OK

と、OKになった。

 # mysql_upgrade -u root -p
 Enter password:
 Looking for 'mysql' as: mysql
 Looking for 'mysqlcheck' as: mysqlcheck
 This installation of MySQL is already upgraded to 5.6.35, use --force if you still need to run mysql_upgrade


***エラーが出ていたときは、 [#k0c2228a]

 # mysql -u root -p
 Enter password:
 Welcome to the MySQL monitor.  Commands end with ; or \g.
 Your MySQL connection id is 7
 Server version: 5.6.35-log Source distribution
 
 Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
 
 Oracle is a registered trademark of Oracle Corporation and/or its
 affiliates. Other names may be trademarks of their respective
 owners.
 
 Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
 
 root@localhost [(none)]> show variables like 'lower%';
 +------------------------+-------+
 | Variable_name          | Value |
 +------------------------+-------+
 | lower_case_file_system | OFF   |
 | lower_case_table_names | 1     |
 +------------------------+-------+
 2 rows in set (0.00 sec)

となっていた。
 
* /usr/ports/UPDATING [#mb7b2408]
20170120:
  AFFECTS: users of databases/mysql56-server
  AUTHOR: feld@FreeBSD.org
 
  databases/mysql56-server was updated to 5.6.35 which included backported
  rc script changes from the mysql57-server port. This broke mysql_optfile in
  rc.conf and also forced a sample my.cnf if none existed. MySQL has
  some parameters which cannot be changed after a database has been
  created, so this caused MySQL to fail to start.
 
  This change was reverted in mysql56-server-5.6.35_1


*2019/02/05 [#zba609d7]

 mysql.columns_priv                                 OK
 /usr/local/bin/mysqlcheckmysql.db                                           OK
 : mysql.engine_cost
 Got error: 2013: Lost connection to MySQL server during query when executing 'CHECK TABLE ...  FOR UPGRADE'Error    : Table 'mysql.engine_cost' doesn't exist
 
 status   : Operation failed
 mysql.event                                        OK
 mysql.func                                         OK
 mysql.general_log                                  OK
 mysql.gtid_executed
 Error    : Table 'mysql.gtid_executed' doesn't exist
 status   : Operation failed
 mysql.help_category                                OK
 mysql.help_keyword                                 OK
 mysql.help_relation                                OK
 mysql.help_topic                                   OK
 mysql.host                                         OK
 FATAL ERROR: Error during call to mysql_check for upgrading the tables names on mysql db




 Stopping mysql.
 Waiting for PIDS: 1776.
 Starting mysql.
 Warning: Using a password on the command line interface can be insecure.
 Looking for 'mysql' as: /usr/local/bin/mysql
 Looking for 'mysqlcheck' as: /usr/local/bin/mysqlcheck
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 mysql.columns_priv                                 OK
 mysql.db                                           OK
 mysql.event                                        OK
 mysql.func                                         OK
 mysql.general_log                                  OK
 mysql.help_category                                OK
 mysql.help_keyword                                 OK
 mysql.help_relation                                OK
 mysql.help_topic                                   OK
 mysql.host                                         OK
 mysql.innodb_index_stats                           OK
 mysql.innodb_table_stats                           OK
 mysql.ndb_binlog_index                             OK
 mysql.plugin                                       OK
 mysql.proc                                         OK
 mysql.procs_priv                                   OK
 mysql.proxies_priv                                 OK
 mysql.servers                                      OK
 mysql.slave_master_info                            OK
 mysql.slave_relay_log_info                         OK
 mysql.slave_worker_info                            OK
 mysql.slow_log                                     OK
 mysql.tables_priv                                  OK
 mysql.time_zone                                    OK
 mysql.time_zone_leap_second                        OK
 mysql.time_zone_name                               OK
 mysql.time_zone_transition                         OK
 mysql.time_zone_transition_type                    OK
 mysql.user                                         OK
 Running 'mysql_fix_privilege_tables'...
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=9998' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 Running 'mysqlcheck' with connection arguments: '--port=9998' '--socket=/tmp/mysql.sock'
 Warning: Using a password on the command line interface can be insecure.
 PNE2.activity_data
 Error    : Table 'PNE2.activity_data' doesn't exist
 status   : Operation failed
 PNE2.activity_image
 Error    : Table 'PNE2.activity_image' doesn't exist
 status   : Operation failed
 PNE2.admin_user
 Error    : Table 'PNE2.admin_user' doesn't exist
 status   : Operation failed
 PNE2.banner
 Error    : Table 'PNE2.banner' doesn't exist
 status   : Operation failed
 PNE2.banner_image
 Error    : Table 'PNE2.banner_image' doesn't exist
 status   : Operation failed
 PNE2.banner_translation
 Error    : Table 'PNE2.banner_translation' doesn't exist
 status   : Operation failed
 PNE2.banner_use_image
 Error    : Table 'PNE2.banner_use_image' doesn't exist
 status   : Operation failed
 PNE2.biz_admin_config                              OK
 PNE2.biz_group                                     OK
 PNE2.biz_group_member                              OK
 PNE2.biz_schedule                                  OK
 PNE2.biz_schedule_member                           OK
 PNE2.biz_shisetsu                                  OK
 PNE2.biz_shisetsu_schedule                         OK
 PNE2.biz_todo                                      OK
 PNE2.blacklist
 Error    : Table 'PNE2.blacklist' doesn't exist
 status   : Operation failed
 PNE2.c_access_log                                  OK
 PNE2.c_action                                      OK
 PNE2.c_admin_config                                OK
 PNE2.c_admin_user                                  OK
 PNE2.c_album                                       OK
 PNE2.c_album_image                                 OK
 PNE2.c_api                                         OK
 PNE2.c_api_member                                  OK
 PNE2.c_ashiato                                     OK
 PNE2.c_banner_log                                  OK
 PNE2.c_bookmark                                    OK
 PNE2.c_cmd                                         OK
 PNE2.c_cmd_caster                                  OK
 PNE2.c_commu                                       OK
 PNE2.c_commu_admin_invite                          OK
 PNE2.c_commu_category                              OK
 PNE2.c_commu_category_parent                       OK
 PNE2.c_commu_member                                OK
 PNE2.c_commu_review                                OK
 PNE2.c_commu_sub_admin_confirm                     OK
 PNE2.c_commu_topic                                 OK
 PNE2.c_commu_topic_comment                         OK
 PNE2.c_config_color                                OK
 PNE2.c_config_decoration                           OK
 PNE2.c_diary                                       OK
 PNE2.c_diary_category                              OK
 PNE2.c_diary_category_diary                        OK
 PNE2.c_diary_comment                               OK
 PNE2.c_diary_comment_log                           OK
 PNE2.c_event_member                                OK
 PNE2.c_file                                        OK
 PNE2.c_free_page                                   OK
 PNE2.c_holiday                                     OK
 PNE2.c_image_size                                  OK
 PNE2.c_ktai_address_pre                            OK
 PNE2.c_login_failure                               OK
 PNE2.c_login_reject                                OK
 PNE2.c_member                                      OK
 PNE2.c_member_config                               OK
 PNE2.c_member_ktai_pre                             OK
 PNE2.c_member_pre                                  OK
 PNE2.c_member_pre_profile                          OK
 PNE2.c_member_secure                               OK
 PNE2.c_message                                     OK
 PNE2.c_message_queue                               OK
 PNE2.c_module                                      OK
 PNE2.c_navi                                        OK
 PNE2.c_password_query                              OK
 PNE2.c_pc_address_pre                              OK
 PNE2.c_point_log                                   OK
 PNE2.c_point_log_tag                               OK
 PNE2.c_profile_pref                                OK
 PNE2.c_rank                                        OK
 PNE2.c_review                                      OK
 PNE2.c_review_category                             OK
 PNE2.c_review_clip                                 OK
 PNE2.c_review_comment                              OK
 PNE2.c_rss_cache                                   OK
 PNE2.c_schedule                                    OK
 PNE2.c_searchlog                                   OK
 PNE2.c_send_messages_history                       OK
 PNE2.c_session                                     OK
 PNE2.c_siteadmin                                   OK
 PNE2.c_skin_filename                               OK
 PNE2.c_template                                    OK
 PNE2.c_tmp_file                                    OK
 PNE2.c_tmp_image                                   OK
 PNE2.c_username                                    OK
 PNE2.community
 Error    : Table 'PNE2.community' doesn't exist
 status   : Operation failed
 PNE2.community_category
 Error    : Table 'PNE2.community_category' doesn't exist
 status   : Operation failed
 PNE2.community_config
 Error    : Table 'PNE2.community_config' doesn't exist
 status   : Operation failed
 PNE2.community_member
 Error    : Table 'PNE2.community_member' doesn't exist
 status   : Operation failed
 PNE2.community_member_position
 Error    : Table 'PNE2.community_member_position' doesn't exist
 status   : Operation failed
 PNE2.file
 Error    : Table 'PNE2.file' doesn't exist
 status   : Operation failed
 PNE2.file_bin
 Error    : Table 'PNE2.file_bin' doesn't exist
 status   : Operation failed
 PNE2.gadget
 Error    : Table 'PNE2.gadget' doesn't exist
 status   : Operation failed
 PNE2.gadget_config
 Error    : Table 'PNE2.gadget_config' doesn't exist
 status   : Operation failed
 PNE2.mail_queue                                    OK
 PNE2.mail_queue_seq                                OK
 PNE2.member
 Error    : Table 'PNE2.member' doesn't exist
 status   : Operation failed
 PNE2.member_config
 Error    : Table 'PNE2.member_config' doesn't exist
 status   : Operation failed
 PNE2.member_image
 Error    : Table 'PNE2.member_image' doesn't exist
 status   : Operation failed
 PNE2.member_profile
 Error    : Table 'PNE2.member_profile' doesn't exist
 status   : Operation failed
 PNE2.member_relationship
 Error    : Table 'PNE2.member_relationship' doesn't exist
 status   : Operation failed
 PNE2.navigation
 Error    : Table 'PNE2.navigation' doesn't exist
 status   : Operation failed
 PNE2.navigation_translation
 Error    : Table 'PNE2.navigation_translation' doesn't exist
 status   : Operation failed
 PNE2.notification_mail
 Error    : Table 'PNE2.notification_mail' doesn't exist
 status   : Operation failed
 PNE2.notification_mail_translation
 Error    : Table 'PNE2.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE2.o_auth_admin_token
 Error    : Table 'PNE2.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE2.o_auth_member_token
 Error    : Table 'PNE2.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE2.oauth_consumer
 Error    : Table 'PNE2.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE2.openid_trust_log
 Error    : Table 'PNE2.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE2.plugin
 Error    : Table 'PNE2.plugin' doesn't exist
 status   : Operation failed
 PNE2.portal_config                                 OK
 PNE2.portal_free_area                              OK
 PNE2.portal_free_area_ktai                         OK
 PNE2.portal_image                                  OK
 PNE2.portal_layout                                 OK
 PNE2.portal_layout_ktai                            OK
 PNE2.portal_link                                   OK
 PNE2.portal_rss                                    OK
 PNE2.profile
 Error    : Table 'PNE2.profile' doesn't exist
 status   : Operation failed
 PNE2.profile_option
 Error    : Table 'PNE2.profile_option' doesn't exist
 status   : Operation failed
 PNE2.profile_option_translation
 Error    : Table 'PNE2.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE2.profile_translation
 Error    : Table 'PNE2.profile_translation' doesn't exist
 status   : Operation failed
 PNE2.session
 Error    : Table 'PNE2.session' doesn't exist
 status   : Operation failed
 PNE2.skin_config
 Error    : Table 'PNE2.skin_config' doesn't exist
 status   : Operation failed
 PNE2.sns_config
 Error    : Table 'PNE2.sns_config' doesn't exist
 status   : Operation failed
 PNE2.sns_term
 Error    : Table 'PNE2.sns_term' doesn't exist
 status   : Operation failed
 PNE2.sns_term_translation
 Error    : Table 'PNE2.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE3.activity_data
 Error    : Table 'PNE3.activity_data' doesn't exist
 status   : Operation failed
 PNE3.activity_image
 Error    : Table 'PNE3.activity_image' doesn't exist
 status   : Operation failed
 PNE3.admin_user
 Error    : Table 'PNE3.admin_user' doesn't exist
 status   : Operation failed
 PNE3.album
 Error    : Table 'PNE3.album' doesn't exist
 status   : Operation failed
 PNE3.album_image
 Error    : Table 'PNE3.album_image' doesn't exist
 status   : Operation failed
 PNE3.application
 Error    : Table 'PNE3.application' doesn't exist
 status   : Operation failed
 PNE3.application_invite
 Error    : Table 'PNE3.application_invite' doesn't exist
 status   : Operation failed
 PNE3.application_lifecycle_event_queue
 Error    : Table 'PNE3.application_lifecycle_event_queue' doesn't exist
 status   : Operation failed
 PNE3.application_persistent_data
 Error    : Table 'PNE3.application_persistent_data' doesn't exist
 status   : Operation failed
 PNE3.application_translation
 Error    : Table 'PNE3.application_translation' doesn't exist
 status   : Operation failed
 PNE3.ashiato
 Error    : Table 'PNE3.ashiato' doesn't exist
 status   : Operation failed
 PNE3.banner
 Error    : Table 'PNE3.banner' doesn't exist
 status   : Operation failed
 PNE3.banner_image
 Error    : Table 'PNE3.banner_image' doesn't exist
 status   : Operation failed
 PNE3.banner_translation
 Error    : Table 'PNE3.banner_translation' doesn't exist
 status   : Operation failed
 PNE3.banner_use_image
 Error    : Table 'PNE3.banner_use_image' doesn't exist
 status   : Operation failed
 PNE3.biz_admin_config                              OK
 PNE3.biz_group                                     OK
 PNE3.biz_group_member                              OK
 PNE3.biz_schedule                                  OK
 PNE3.biz_schedule_member                           OK
 PNE3.biz_shisetsu                                  OK
 PNE3.biz_shisetsu_schedule                         OK
 PNE3.biz_todo                                      OK
 PNE3.blacklist
 Error    : Table 'PNE3.blacklist' doesn't exist
 status   : Operation failed
 PNE3.blog_rss_cache
 Error    : Table 'PNE3.blog_rss_cache' doesn't exist
 status   : Operation failed
 PNE3.c_access_log                                  OK
 PNE3.c_action                                      OK
 PNE3.c_admin_config                                OK
 PNE3.c_admin_user                                  OK
 PNE3.c_api                                         OK
 PNE3.c_api_member                                  OK
 PNE3.c_banner_log                                  OK
 PNE3.c_bookmark                                    OK
 PNE3.c_cmd                                         OK
 PNE3.c_cmd_caster                                  OK
 PNE3.c_commu                                       OK
 PNE3.c_commu_admin_invite                          OK
 PNE3.c_commu_category                              OK
 PNE3.c_commu_category_parent                       OK
 PNE3.c_commu_member                                OK
 PNE3.c_commu_review                                OK
 PNE3.c_commu_sub_admin_confirm                     OK
 PNE3.c_config_decoration                           OK
 PNE3.c_diary_category                              OK
 PNE3.c_diary_category_diary                        OK
 PNE3.c_event_member                                OK
 PNE3.c_file                                        OK
 PNE3.c_free_page                                   OK
 PNE3.c_holiday                                     OK
 PNE3.c_image_size                                  OK
 PNE3.c_ktai_address_pre                            OK
 PNE3.c_login_failure                               OK
 PNE3.c_login_reject                                OK
 PNE3.c_member                                      OK
 PNE3.c_member_config                               OK
 PNE3.c_member_ktai_pre                             OK
 PNE3.c_member_pre                                  OK
 PNE3.c_member_pre_profile                          OK
 PNE3.c_member_secure                               OK
 PNE3.c_message_queue                               OK
 PNE3.c_module                                      OK
 PNE3.c_navi                                        OK
 PNE3.c_password_query                              OK
 PNE3.c_pc_address_pre                              OK
 PNE3.c_point_log                                   OK
 PNE3.c_point_log_tag                               OK
 PNE3.c_rank                                        OK
 PNE3.c_review                                      OK
 PNE3.c_review_category                             OK
 PNE3.c_review_clip                                 OK
 PNE3.c_review_comment                              OK
 PNE3.c_rss_cache                                   OK
 PNE3.c_schedule                                    OK
 PNE3.c_searchlog                                   OK
 PNE3.c_send_messages_history                       OK
 PNE3.c_session                                     OK
 PNE3.c_siteadmin                                   OK
 PNE3.c_skin_filename                               OK
 PNE3.c_template                                    OK
 PNE3.c_tmp_file                                    OK
 PNE3.c_tmp_image                                   OK
 PNE3.c_username                                    OK
 PNE3.community
 Error    : Table 'PNE3.community' doesn't exist
 status   : Operation failed
 PNE3.community_category
 Error    : Table 'PNE3.community_category' doesn't exist
 status   : Operation failed
 PNE3.community_config
 Error    : Table 'PNE3.community_config' doesn't exist
 status   : Operation failed
 PNE3.community_event
 Error    : Table 'PNE3.community_event' doesn't exist
 status   : Operation failed
 PNE3.community_event_comment
 Error    : Table 'PNE3.community_event_comment' doesn't exist
 status   : Operation failed
 PNE3.community_event_comment_image
 Error    : Table 'PNE3.community_event_comment_image' doesn't exist
 status   : Operation failed
 PNE3.community_event_image
 Error    : Table 'PNE3.community_event_image' doesn't exist
 status   : Operation failed
 PNE3.community_event_member
 Error    : Table 'PNE3.community_event_member' doesn't exist
 status   : Operation failed
 PNE3.community_member
 Error    : Table 'PNE3.community_member' doesn't exist
 status   : Operation failed
 PNE3.community_member_position
 Error    : Table 'PNE3.community_member_position' doesn't exist
 status   : Operation failed
 PNE3.community_topic
 Error    : Table 'PNE3.community_topic' doesn't exist
 status   : Operation failed
 PNE3.community_topic_comment
 Error    : Table 'PNE3.community_topic_comment' doesn't exist
 status   : Operation failed
 PNE3.community_topic_comment_image
 Error    : Table 'PNE3.community_topic_comment_image' doesn't exist
 status   : Operation failed
 PNE3.community_topic_image
 Error    : Table 'PNE3.community_topic_image' doesn't exist
 status   : Operation failed
 PNE3.deleted_message
 Error    : Table 'PNE3.deleted_message' doesn't exist
 status   : Operation failed
 PNE3.diary
 Error    : Table 'PNE3.diary' doesn't exist
 status   : Operation failed
 PNE3.diary_comment
 Error    : Table 'PNE3.diary_comment' doesn't exist
 status   : Operation failed
 PNE3.diary_comment_image
 Error    : Table 'PNE3.diary_comment_image' doesn't exist
 status   : Operation failed
 PNE3.diary_comment_unread
 Error    : Table 'PNE3.diary_comment_unread' doesn't exist
 status   : Operation failed
 PNE3.diary_comment_update
 Error    : Table 'PNE3.diary_comment_update' doesn't exist
 status   : Operation failed
 PNE3.diary_image
 Error    : Table 'PNE3.diary_image' doesn't exist
 status   : Operation failed
 PNE3.favorite
 Error    : Table 'PNE3.favorite' doesn't exist
 status   : Operation failed
 PNE3.file
 Error    : Table 'PNE3.file' doesn't exist
 status   : Operation failed
 PNE3.file_bin
 Error    : Table 'PNE3.file_bin' doesn't exist
 status   : Operation failed
 PNE3.gadget
 Error    : Table 'PNE3.gadget' doesn't exist
 status   : Operation failed
 PNE3.gadget_config
 Error    : Table 'PNE3.gadget_config' doesn't exist
 status   : Operation failed
 PNE3.intro_friend
 Error    : Table 'PNE3.intro_friend' doesn't exist
 status   : Operation failed
 PNE3.mail_queue                                    OK
 PNE3.mail_queue_seq                                OK
 PNE3.member
 Error    : Table 'PNE3.member' doesn't exist
 status   : Operation failed
 PNE3.member_application
 Error    : Table 'PNE3.member_application' doesn't exist
 status   : Operation failed
 PNE3.member_application_setting
 Error    : Table 'PNE3.member_application_setting' doesn't exist
 status   : Operation failed
 PNE3.member_config
 Error    : Table 'PNE3.member_config' doesn't exist
 status   : Operation failed
 PNE3.member_image
 Error    : Table 'PNE3.member_image' doesn't exist
 status   : Operation failed
 PNE3.member_profile
 Error    : Table 'PNE3.member_profile' doesn't exist
 status   : Operation failed
 PNE3.member_relationship
 Error    : Table 'PNE3.member_relationship' doesn't exist
 status   : Operation failed
 PNE3.message
 Error    : Table 'PNE3.message' doesn't exist
 status   : Operation failed
 PNE3.message_file
 Error    : Table 'PNE3.message_file' doesn't exist
 status   : Operation failed
 PNE3.message_send_list
 Error    : Table 'PNE3.message_send_list' doesn't exist
 status   : Operation failed
 PNE3.message_type
 Error    : Table 'PNE3.message_type' doesn't exist
 status   : Operation failed
 PNE3.message_type_translation
 Error    : Table 'PNE3.message_type_translation' doesn't exist
 status   : Operation failed
 PNE3.migration_version
 Error    : Table 'PNE3.migration_version' doesn't exist
 status   : Operation failed
 PNE3.navigation
 Error    : Table 'PNE3.navigation' doesn't exist
 status   : Operation failed
 PNE3.navigation_translation
 Error    : Table 'PNE3.navigation_translation' doesn't exist
 status   : Operation failed
 PNE3.notification_mail
 Error    : Table 'PNE3.notification_mail' doesn't exist
 status   : Operation failed
 PNE3.notification_mail_translation
 Error    : Table 'PNE3.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE3.o_auth_admin_token
 Error    : Table 'PNE3.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE3.o_auth_member_token
 Error    : Table 'PNE3.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE3.oauth_consumer
 Error    : Table 'PNE3.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE3.openid_trust_log
 Error    : Table 'PNE3.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE3.plugin
 Error    : Table 'PNE3.plugin' doesn't exist
 status   : Operation failed
 PNE3.portal_config                                 OK
 PNE3.portal_free_area                              OK
 PNE3.portal_free_area_ktai                         OK
 PNE3.portal_image                                  OK
 PNE3.portal_layout                                 OK
 PNE3.portal_layout_ktai                            OK
 PNE3.portal_link                                   OK
 PNE3.portal_rss                                    OK
 PNE3.profile
 Error    : Table 'PNE3.profile' doesn't exist
 status   : Operation failed
 PNE3.profile_option
 Error    : Table 'PNE3.profile_option' doesn't exist
 status   : Operation failed
 PNE3.profile_option_translation
 Error    : Table 'PNE3.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE3.profile_translation
 Error    : Table 'PNE3.profile_translation' doesn't exist
 status   : Operation failed
 PNE3.session
 Error    : Table 'PNE3.session' doesn't exist
 status   : Operation failed
 PNE3.skin_config
 Error    : Table 'PNE3.skin_config' doesn't exist
 status   : Operation failed
 PNE3.sns_config
 Error    : Table 'PNE3.sns_config' doesn't exist
 status   : Operation failed
 PNE3.sns_term
 Error    : Table 'PNE3.sns_term' doesn't exist
 status   : Operation failed
 PNE3.sns_term_translation
 Error    : Table 'PNE3.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE34.activity_data
 Error    : Table 'PNE34.activity_data' doesn't exist
 status   : Operation failed
 PNE34.activity_image
 Error    : Table 'PNE34.activity_image' doesn't exist
 status   : Operation failed
 PNE34.admin_user
 Error    : Table 'PNE34.admin_user' doesn't exist
 status   : Operation failed
 PNE34.banner
 Error    : Table 'PNE34.banner' doesn't exist
 status   : Operation failed
 PNE34.banner_image
 Error    : Table 'PNE34.banner_image' doesn't exist
 status   : Operation failed
 PNE34.banner_translation
 Error    : Table 'PNE34.banner_translation' doesn't exist
 status   : Operation failed
 PNE34.banner_use_image
 Error    : Table 'PNE34.banner_use_image' doesn't exist
 status   : Operation failed
 PNE34.biz_admin_config                             OK
 PNE34.biz_group                                    OK
 PNE34.biz_group_member                             OK
 PNE34.biz_schedule                                 OK
 PNE34.biz_schedule_member                          OK
 PNE34.biz_shisetsu                                 OK
 PNE34.biz_shisetsu_schedule                        OK
 PNE34.biz_todo                                     OK
 PNE34.blacklist
 Error    : Table 'PNE34.blacklist' doesn't exist
 status   : Operation failed
 PNE34.c_access_log                                 OK
 PNE34.c_action                                     OK
 PNE34.c_admin_config                               OK
 PNE34.c_admin_user                                 OK
 PNE34.c_album                                      OK
 PNE34.c_album_image                                OK
 PNE34.c_api                                        OK
 PNE34.c_api_member                                 OK
 PNE34.c_ashiato                                    OK
 PNE34.c_banner_log                                 OK
 PNE34.c_bookmark                                   OK
 PNE34.c_cmd                                        OK
 PNE34.c_cmd_caster                                 OK
 PNE34.c_commu                                      OK
 PNE34.c_commu_admin_invite                         OK
 PNE34.c_commu_category                             OK
 PNE34.c_commu_category_parent                      OK
 PNE34.c_commu_member                               OK
 PNE34.c_commu_review                               OK
 PNE34.c_commu_sub_admin_confirm                    OK
 PNE34.c_commu_topic                                OK
 PNE34.c_commu_topic_comment                        OK
 PNE34.c_config_color                               OK
 PNE34.c_config_decoration                          OK
 PNE34.c_diary                                      OK
 PNE34.c_diary_category                             OK
 PNE34.c_diary_category_diary                       OK
 PNE34.c_diary_comment                              OK
 PNE34.c_diary_comment_log                          OK
 PNE34.c_event_member                               OK
 PNE34.c_file                                       OK
 PNE34.c_free_page                                  OK
 PNE34.c_holiday                                    OK
 PNE34.c_image_size                                 OK
 PNE34.c_ktai_address_pre                           OK
 PNE34.c_login_failure                              OK
 PNE34.c_login_reject                               OK
 PNE34.c_member                                     OK
 PNE34.c_member_config                              OK
 PNE34.c_member_ktai_pre                            OK
 PNE34.c_member_pre                                 OK
 PNE34.c_member_pre_profile                         OK
 PNE34.c_member_secure                              OK
 PNE34.c_message                                    OK
 PNE34.c_message_queue                              OK
 PNE34.c_module                                     OK
 PNE34.c_navi                                       OK
 PNE34.c_password_query                             OK
 PNE34.c_pc_address_pre                             OK
 PNE34.c_point_log                                  OK
 PNE34.c_point_log_tag                              OK
 PNE34.c_profile_pref                               OK
 PNE34.c_rank                                       OK
 PNE34.c_review                                     OK
 PNE34.c_review_category                            OK
 PNE34.c_review_clip                                OK
 PNE34.c_review_comment                             OK
 PNE34.c_rss_cache                                  OK
 PNE34.c_schedule                                   OK
 PNE34.c_searchlog                                  OK
 PNE34.c_send_messages_history                      OK
 PNE34.c_session                                    OK
 PNE34.c_siteadmin                                  OK
 PNE34.c_skin_filename                              OK
 PNE34.c_template                                   OK
 PNE34.c_tmp_file                                   OK
 PNE34.c_tmp_image                                  OK
 PNE34.c_username                                   OK
 PNE34.community
 Error    : Table 'PNE34.community' doesn't exist
 status   : Operation failed
 PNE34.community_category
 Error    : Table 'PNE34.community_category' doesn't exist
 status   : Operation failed
 PNE34.community_config
 Error    : Table 'PNE34.community_config' doesn't exist
 status   : Operation failed
 PNE34.community_member
 Error    : Table 'PNE34.community_member' doesn't exist
 status   : Operation failed
 PNE34.community_member_position
 Error    : Table 'PNE34.community_member_position' doesn't exist
 status   : Operation failed
 PNE34.file
 Error    : Table 'PNE34.file' doesn't exist
 status   : Operation failed
 PNE34.file_bin
 Error    : Table 'PNE34.file_bin' doesn't exist
 status   : Operation failed
 PNE34.gadget
 Error    : Table 'PNE34.gadget' doesn't exist
 status   : Operation failed
 PNE34.gadget_config
 Error    : Table 'PNE34.gadget_config' doesn't exist
 status   : Operation failed
 PNE34.mail_queue                                   OK
 PNE34.mail_queue_seq                               OK
 PNE34.member
 Error    : Table 'PNE34.member' doesn't exist
 status   : Operation failed
 PNE34.member_config
 Error    : Table 'PNE34.member_config' doesn't exist
 status   : Operation failed
 PNE34.member_image
 Error    : Table 'PNE34.member_image' doesn't exist
 status   : Operation failed
 PNE34.member_profile
 Error    : Table 'PNE34.member_profile' doesn't exist
 status   : Operation failed
 PNE34.member_relationship
 Error    : Table 'PNE34.member_relationship' doesn't exist
 status   : Operation failed
 PNE34.navigation
 Error    : Table 'PNE34.navigation' doesn't exist
 status   : Operation failed
 PNE34.navigation_translation
 Error    : Table 'PNE34.navigation_translation' doesn't exist
 status   : Operation failed
 PNE34.notification_mail
 Error    : Table 'PNE34.notification_mail' doesn't exist
 status   : Operation failed
 PNE34.notification_mail_translation
 Error    : Table 'PNE34.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE34.o_auth_admin_token
 Error    : Table 'PNE34.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE34.o_auth_member_token
 Error    : Table 'PNE34.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE34.oauth_consumer
 Error    : Table 'PNE34.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE34.openid_trust_log
 Error    : Table 'PNE34.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE34.plugin
 Error    : Table 'PNE34.plugin' doesn't exist
 status   : Operation failed
 PNE34.portal_config                                OK
 PNE34.portal_free_area                             OK
 PNE34.portal_free_area_ktai                        OK
 PNE34.portal_image                                 OK
 PNE34.portal_layout                                OK
 PNE34.portal_layout_ktai                           OK
 PNE34.portal_link                                  OK
 PNE34.portal_rss                                   OK
 PNE34.profile
 Error    : Table 'PNE34.profile' doesn't exist
 status   : Operation failed
 PNE34.profile_option
 Error    : Table 'PNE34.profile_option' doesn't exist
 status   : Operation failed
 PNE34.profile_option_translation
 Error    : Table 'PNE34.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE34.profile_translation
 Error    : Table 'PNE34.profile_translation' doesn't exist
 status   : Operation failed
 PNE34.session
 Error    : Table 'PNE34.session' doesn't exist
 status   : Operation failed
 PNE34.skin_config
 Error    : Table 'PNE34.skin_config' doesn't exist
 status   : Operation failed
 PNE34.sns_config
 Error    : Table 'PNE34.sns_config' doesn't exist
 status   : Operation failed
 PNE34.sns_term
 Error    : Table 'PNE34.sns_term' doesn't exist
 status   : Operation failed
 PNE34.sns_term_translation
 Error    : Table 'PNE34.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE36.activity_data
 Error    : Table 'PNE36.activity_data' doesn't exist
 status   : Operation failed
 PNE36.activity_image
 Error    : Table 'PNE36.activity_image' doesn't exist
 status   : Operation failed
 PNE36.admin_user
 Error    : Table 'PNE36.admin_user' doesn't exist
 status   : Operation failed
 PNE36.album
 Error    : Table 'PNE36.album' doesn't exist
 status   : Operation failed
 PNE36.album_image
 Error    : Table 'PNE36.album_image' doesn't exist
 status   : Operation failed
 PNE36.application
 Error    : Table 'PNE36.application' doesn't exist
 status   : Operation failed
 PNE36.application_invite
 Error    : Table 'PNE36.application_invite' doesn't exist
 status   : Operation failed
 PNE36.application_lifecycle_event_queue
 Error    : Table 'PNE36.application_lifecycle_event_queue' doesn't exist
 status   : Operation failed
 PNE36.application_persistent_data
 Error    : Table 'PNE36.application_persistent_data' doesn't exist
 status   : Operation failed
 PNE36.application_translation
 Error    : Table 'PNE36.application_translation' doesn't exist
 status   : Operation failed
 PNE36.ashiato
 Error    : Table 'PNE36.ashiato' doesn't exist
 status   : Operation failed
 PNE36.banner
 Error    : Table 'PNE36.banner' doesn't exist
 status   : Operation failed
 PNE36.banner_image
 Error    : Table 'PNE36.banner_image' doesn't exist
 status   : Operation failed
 PNE36.banner_translation
 Error    : Table 'PNE36.banner_translation' doesn't exist
 status   : Operation failed
 PNE36.banner_use_image
 Error    : Table 'PNE36.banner_use_image' doesn't exist
 status   : Operation failed
 PNE36.biz_admin_config                             OK
 PNE36.biz_group                                    OK
 PNE36.biz_group_member                             OK
 PNE36.biz_schedule                                 OK
 PNE36.biz_schedule_member                          OK
 PNE36.biz_shisetsu                                 OK
 PNE36.biz_shisetsu_schedule                        OK
 PNE36.biz_todo                                     OK
 PNE36.blacklist
 Error    : Table 'PNE36.blacklist' doesn't exist
 status   : Operation failed
 PNE36.blog_rss_cache
 Error    : Table 'PNE36.blog_rss_cache' doesn't exist
 status   : Operation failed
 PNE36.c_access_log                                 OK
 PNE36.c_action                                     OK
 PNE36.c_admin_config                               OK
 PNE36.c_admin_user                                 OK
 PNE36.c_api                                        OK
 PNE36.c_api_member                                 OK
 PNE36.c_banner_log                                 OK
 PNE36.c_bookmark                                   OK
 PNE36.c_cmd                                        OK
 PNE36.c_cmd_caster                                 OK
 PNE36.c_commu                                      OK
 PNE36.c_commu_admin_invite                         OK
 PNE36.c_commu_category                             OK
 PNE36.c_commu_category_parent                      OK
 PNE36.c_commu_member                               OK
 PNE36.c_commu_review                               OK
 PNE36.c_commu_sub_admin_confirm                    OK
 PNE36.c_config_decoration                          OK
 PNE36.c_diary_category                             OK
 PNE36.c_diary_category_diary                       OK
 PNE36.c_event_member                               OK
 PNE36.c_file                                       OK
 PNE36.c_free_page                                  OK
 PNE36.c_holiday                                    OK
 PNE36.c_image_size                                 OK
 PNE36.c_ktai_address_pre                           OK
 PNE36.c_login_failure                              OK
 PNE36.c_login_reject                               OK
 PNE36.c_member                                     OK
 PNE36.c_member_config                              OK
 PNE36.c_member_ktai_pre                            OK
 PNE36.c_member_pre                                 OK
 PNE36.c_member_pre_profile                         OK
 PNE36.c_member_secure                              OK
 PNE36.c_message_queue                              OK
 PNE36.c_module                                     OK
 PNE36.c_navi                                       OK
 PNE36.c_password_query                             OK
 PNE36.c_pc_address_pre                             OK
 PNE36.c_point_log                                  OK
 PNE36.c_point_log_tag                              OK
 PNE36.c_rank                                       OK
 PNE36.c_review                                     OK
 PNE36.c_review_category                            OK
 PNE36.c_review_clip                                OK
 PNE36.c_review_comment                             OK
 PNE36.c_rss_cache                                  OK
 PNE36.c_schedule                                   OK
 PNE36.c_searchlog                                  OK
 PNE36.c_send_messages_history                      OK
 PNE36.c_session                                    OK
 PNE36.c_siteadmin                                  OK
 PNE36.c_skin_filename                              OK
 PNE36.c_template                                   OK
 PNE36.c_tmp_file                                   OK
 PNE36.c_tmp_image                                  OK
 PNE36.c_username                                   OK
 PNE36.community
 Error    : Table 'PNE36.community' doesn't exist
 status   : Operation failed
 PNE36.community_category
 Error    : Table 'PNE36.community_category' doesn't exist
 status   : Operation failed
 PNE36.community_config
 Error    : Table 'PNE36.community_config' doesn't exist
 status   : Operation failed
 PNE36.community_event
 Error    : Table 'PNE36.community_event' doesn't exist
 status   : Operation failed
 PNE36.community_event_comment
 Error    : Table 'PNE36.community_event_comment' doesn't exist
 status   : Operation failed
 PNE36.community_event_comment_image
 Error    : Table 'PNE36.community_event_comment_image' doesn't exist
 status   : Operation failed
 PNE36.community_event_image
 Error    : Table 'PNE36.community_event_image' doesn't exist
 status   : Operation failed
 PNE36.community_event_member
 Error    : Table 'PNE36.community_event_member' doesn't exist
 status   : Operation failed
 PNE36.community_member
 Error    : Table 'PNE36.community_member' doesn't exist
 status   : Operation failed
 PNE36.community_member_position
 Error    : Table 'PNE36.community_member_position' doesn't exist
 status   : Operation failed
 PNE36.community_topic
 Error    : Table 'PNE36.community_topic' doesn't exist
 status   : Operation failed
 PNE36.community_topic_comment
 Error    : Table 'PNE36.community_topic_comment' doesn't exist
 status   : Operation failed
 PNE36.community_topic_comment_image
 Error    : Table 'PNE36.community_topic_comment_image' doesn't exist
 status   : Operation failed
 PNE36.community_topic_image
 Error    : Table 'PNE36.community_topic_image' doesn't exist
 status   : Operation failed
 PNE36.deleted_message
 Error    : Table 'PNE36.deleted_message' doesn't exist
 status   : Operation failed
 PNE36.diary
 Error    : Table 'PNE36.diary' doesn't exist
 status   : Operation failed
 PNE36.diary_comment
 Error    : Table 'PNE36.diary_comment' doesn't exist
 status   : Operation failed
 PNE36.diary_comment_image
 Error    : Table 'PNE36.diary_comment_image' doesn't exist
 status   : Operation failed
 PNE36.diary_comment_unread
 Error    : Table 'PNE36.diary_comment_unread' doesn't exist
 status   : Operation failed
 PNE36.diary_comment_update
 Error    : Table 'PNE36.diary_comment_update' doesn't exist
 status   : Operation failed
 PNE36.diary_image
 Error    : Table 'PNE36.diary_image' doesn't exist
 status   : Operation failed
 PNE36.favorite
 Error    : Table 'PNE36.favorite' doesn't exist
 status   : Operation failed
 PNE36.file
 Error    : Table 'PNE36.file' doesn't exist
 status   : Operation failed
 PNE36.file_bin
 Error    : Table 'PNE36.file_bin' doesn't exist
 status   : Operation failed
 PNE36.file_bin_back
 Error    : Table 'PNE36.file_bin_back' doesn't exist
 status   : Operation failed
 PNE36.gadget
 Error    : Table 'PNE36.gadget' doesn't exist
 status   : Operation failed
 PNE36.gadget_config
 Error    : Table 'PNE36.gadget_config' doesn't exist
 status   : Operation failed
 PNE36.intro_friend
 Error    : Table 'PNE36.intro_friend' doesn't exist
 status   : Operation failed
 PNE36.mail_queue                                   OK
 PNE36.mail_queue_seq                               OK
 PNE36.member
 Error    : Table 'PNE36.member' doesn't exist
 status   : Operation failed
 PNE36.member_application
 Error    : Table 'PNE36.member_application' doesn't exist
 status   : Operation failed
 PNE36.member_application_setting
 Error    : Table 'PNE36.member_application_setting' doesn't exist
 status   : Operation failed
 PNE36.member_config
 Error    : Table 'PNE36.member_config' doesn't exist
 status   : Operation failed
 PNE36.member_image
 Error    : Table 'PNE36.member_image' doesn't exist
 status   : Operation failed
 PNE36.member_profile
 Error    : Table 'PNE36.member_profile' doesn't exist
 status   : Operation failed
 PNE36.member_relationship
 Error    : Table 'PNE36.member_relationship' doesn't exist
 status   : Operation failed
 PNE36.message
 Error    : Table 'PNE36.message' doesn't exist
 status   : Operation failed
 PNE36.message_file
 Error    : Table 'PNE36.message_file' doesn't exist
 status   : Operation failed
 PNE36.message_send_list
 Error    : Table 'PNE36.message_send_list' doesn't exist
 status   : Operation failed
 PNE36.message_type
 Error    : Table 'PNE36.message_type' doesn't exist
 status   : Operation failed
 PNE36.message_type_translation
 Error    : Table 'PNE36.message_type_translation' doesn't exist
 status   : Operation failed
 PNE36.migration_version
 Error    : Table 'PNE36.migration_version' doesn't exist
 status   : Operation failed
 PNE36.navigation
 Error    : Table 'PNE36.navigation' doesn't exist
 status   : Operation failed
 PNE36.navigation_translation
 Error    : Table 'PNE36.navigation_translation' doesn't exist
 status   : Operation failed
 PNE36.notification_mail
 Error    : Table 'PNE36.notification_mail' doesn't exist
 status   : Operation failed
 PNE36.notification_mail_translation
 Error    : Table 'PNE36.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE36.o_auth_admin_token
 Error    : Table 'PNE36.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE36.o_auth_member_token
 Error    : Table 'PNE36.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE36.oauth_consumer
 Error    : Table 'PNE36.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE36.openid_trust_log
 Error    : Table 'PNE36.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE36.plugin
 Error    : Table 'PNE36.plugin' doesn't exist
 status   : Operation failed
 PNE36.portal_config                                OK
 PNE36.portal_free_area                             OK
 PNE36.portal_free_area_ktai                        OK
 PNE36.portal_image                                 OK
 PNE36.portal_layout                                OK
 PNE36.portal_layout_ktai                           OK
 PNE36.portal_link                                  OK
 PNE36.portal_rss                                   OK
 PNE36.profile
 Error    : Table 'PNE36.profile' doesn't exist
 status   : Operation failed
 PNE36.profile_option
 Error    : Table 'PNE36.profile_option' doesn't exist
 status   : Operation failed
 PNE36.profile_option_translation
 Error    : Table 'PNE36.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE36.profile_translation
 Error    : Table 'PNE36.profile_translation' doesn't exist
 status   : Operation failed
 PNE36.session
 Error    : Table 'PNE36.session' doesn't exist
 status   : Operation failed
 PNE36.skin_config
 Error    : Table 'PNE36.skin_config' doesn't exist
 status   : Operation failed
 PNE36.sns_config
 Error    : Table 'PNE36.sns_config' doesn't exist
 status   : Operation failed
 PNE36.sns_term
 Error    : Table 'PNE36.sns_term' doesn't exist
 status   : Operation failed
 PNE36.sns_term_translation
 Error    : Table 'PNE36.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE3633.activity_data
 Error    : Table 'PNE3633.activity_data' doesn't exist
 status   : Operation failed
 PNE3633.activity_image
 Error    : Table 'PNE3633.activity_image' doesn't exist
 status   : Operation failed
 PNE3633.admin_user
 Error    : Table 'PNE3633.admin_user' doesn't exist
 status   : Operation failed
 PNE3633.album
 Error    : Table 'PNE3633.album' doesn't exist
 status   : Operation failed
 PNE3633.album_image
 Error    : Table 'PNE3633.album_image' doesn't exist
 status   : Operation failed
 PNE3633.application
 Error    : Table 'PNE3633.application' doesn't exist
 status   : Operation failed
 PNE3633.application_invite
 Error    : Table 'PNE3633.application_invite' doesn't exist
 status   : Operation failed
 PNE3633.application_lifecycle_event_queue
 Error    : Table 'PNE3633.application_lifecycle_event_queue' doesn't exist
 status   : Operation failed
 PNE3633.application_persistent_data
 Error    : Table 'PNE3633.application_persistent_data' doesn't exist
 status   : Operation failed
 PNE3633.application_translation
 Error    : Table 'PNE3633.application_translation' doesn't exist
 status   : Operation failed
 PNE3633.ashiato
 Error    : Table 'PNE3633.ashiato' doesn't exist
 status   : Operation failed
 PNE3633.banner
 Error    : Table 'PNE3633.banner' doesn't exist
 status   : Operation failed
 PNE3633.banner_image
 Error    : Table 'PNE3633.banner_image' doesn't exist
 status   : Operation failed
 PNE3633.banner_translation
 Error    : Table 'PNE3633.banner_translation' doesn't exist
 status   : Operation failed
 PNE3633.banner_use_image
 Error    : Table 'PNE3633.banner_use_image' doesn't exist
 status   : Operation failed
 PNE3633.blacklist
 Error    : Table 'PNE3633.blacklist' doesn't exist
 status   : Operation failed
 PNE3633.blog_rss_cache
 Error    : Table 'PNE3633.blog_rss_cache' doesn't exist
 status   : Operation failed
 PNE3633.community
 Error    : Table 'PNE3633.community' doesn't exist
 status   : Operation failed
 PNE3633.community_category
 Error    : Table 'PNE3633.community_category' doesn't exist
 status   : Operation failed
 PNE3633.community_config
 Error    : Table 'PNE3633.community_config' doesn't exist
 status   : Operation failed
 PNE3633.community_event
 Error    : Table 'PNE3633.community_event' doesn't exist
 status   : Operation failed
 PNE3633.community_event_comment
 Error    : Table 'PNE3633.community_event_comment' doesn't exist
 status   : Operation failed
 PNE3633.community_event_comment_image
 Error    : Table 'PNE3633.community_event_comment_image' doesn't exist
 status   : Operation failed
 PNE3633.community_event_image
 Error    : Table 'PNE3633.community_event_image' doesn't exist
 status   : Operation failed
 PNE3633.community_event_member
 Error    : Table 'PNE3633.community_event_member' doesn't exist
 status   : Operation failed
 PNE3633.community_member
 Error    : Table 'PNE3633.community_member' doesn't exist
 status   : Operation failed
 PNE3633.community_member_position
 Error    : Table 'PNE3633.community_member_position' doesn't exist
 status   : Operation failed
 PNE3633.community_topic
 Error    : Table 'PNE3633.community_topic' doesn't exist
 status   : Operation failed
 PNE3633.community_topic_comment
 Error    : Table 'PNE3633.community_topic_comment' doesn't exist
 status   : Operation failed
 PNE3633.community_topic_comment_image
 Error    : Table 'PNE3633.community_topic_comment_image' doesn't exist
 status   : Operation failed
 PNE3633.community_topic_image
 Error    : Table 'PNE3633.community_topic_image' doesn't exist
 status   : Operation failed
 PNE3633.deleted_message
 Error    : Table 'PNE3633.deleted_message' doesn't exist
 status   : Operation failed
 PNE3633.diary
 Error    : Table 'PNE3633.diary' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment
 Error    : Table 'PNE3633.diary_comment' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment_image
 Error    : Table 'PNE3633.diary_comment_image' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment_unread
 Error    : Table 'PNE3633.diary_comment_unread' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment_update
 Error    : Table 'PNE3633.diary_comment_update' doesn't exist
 status   : Operation failed
 PNE3633.diary_image
 Error    : Table 'PNE3633.diary_image' doesn't exist
 status   : Operation failed
 PNE3633.favorite
 Error    : Table 'PNE3633.favorite' doesn't exist
 status   : Operation failed
 PNE3633.file
 Error    : Table 'PNE3633.file' doesn't exist
 status   : Operation failed
 PNE3633.file_bin
 Error    : Table 'PNE3633.file_bin' doesn't exist
 status   : Operation failed
 PNE3633.gadget
 Error    : Table 'PNE3633.gadget' doesn't exist
 status   : Operation failed
 PNE3633.gadget_config
 Error    : Table 'PNE3633.gadget_config' doesn't exist
 status   : Operation failed
 PNE3633.intro_friend
 Error    : Table 'PNE3633.intro_friend' doesn't exist
 status   : Operation failed
 PNE3633.member
 Error    : Table 'PNE3633.member' doesn't exist
 status   : Operation failed
 PNE3633.member_application
 Error    : Table 'PNE3633.member_application' doesn't exist
 status   : Operation failed
 PNE3633.member_application_setting
 Error    : Table 'PNE3633.member_application_setting' doesn't exist
 status   : Operation failed
 PNE3633.member_config
 Error    : Table 'PNE3633.member_config' doesn't exist
 status   : Operation failed
 PNE3633.member_image
 Error    : Table 'PNE3633.member_image' doesn't exist
 status   : Operation failed
 PNE3633.member_profile
 Error    : Table 'PNE3633.member_profile' doesn't exist
 status   : Operation failed
 PNE3633.member_relationship
 Error    : Table 'PNE3633.member_relationship' doesn't exist
 status   : Operation failed
 PNE3633.message
 Error    : Table 'PNE3633.message' doesn't exist
 status   : Operation failed
 PNE3633.message_file
 Error    : Table 'PNE3633.message_file' doesn't exist
 status   : Operation failed
 PNE3633.message_send_list
 Error    : Table 'PNE3633.message_send_list' doesn't exist
 status   : Operation failed
 PNE3633.message_type
 Error    : Table 'PNE3633.message_type' doesn't exist
 status   : Operation failed
 PNE3633.message_type_translation
 Error    : Table 'PNE3633.message_type_translation' doesn't exist
 status   : Operation failed
 PNE3633.navigation
 Error    : Table 'PNE3633.navigation' doesn't exist
 status   : Operation failed
 PNE3633.navigation_translation
 Error    : Table 'PNE3633.navigation_translation' doesn't exist
 status   : Operation failed
 PNE3633.notification_mail
 Error    : Table 'PNE3633.notification_mail' doesn't exist
 status   : Operation failed
 PNE3633.notification_mail_translation
 Error    : Table 'PNE3633.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE3633.o_auth_admin_token
 Error    : Table 'PNE3633.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE3633.o_auth_member_token
 Error    : Table 'PNE3633.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE3633.oauth_consumer
 Error    : Table 'PNE3633.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE3633.openid_trust_log
 Error    : Table 'PNE3633.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE3633.plugin
 Error    : Table 'PNE3633.plugin' doesn't exist
 status   : Operation failed
 PNE3633.profile
 Error    : Table 'PNE3633.profile' doesn't exist
 status   : Operation failed
 PNE3633.profile_option
 Error    : Table 'PNE3633.profile_option' doesn't exist
 status   : Operation failed
 PNE3633.profile_option_translation
 Error    : Table 'PNE3633.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE3633.profile_translation
 Error    : Table 'PNE3633.profile_translation' doesn't exist
 status   : Operation failed
 PNE3633.session
 Error    : Table 'PNE3633.session' doesn't exist
 status   : Operation failed
 PNE3633.skin_config
 Error    : Table 'PNE3633.skin_config' doesn't exist
 status   : Operation failed
 PNE3633.sns_config
 Error    : Table 'PNE3633.sns_config' doesn't exist
 status   : Operation failed
 PNE3633.sns_term
 Error    : Table 'PNE3633.sns_term' doesn't exist
 status   : Operation failed
 PNE3633.sns_term_translation
 Error    : Table 'PNE3633.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE39.activity_data
 Error    : Table 'PNE39.activity_data' doesn't exist
 status   : Operation failed
 PNE39.activity_image
 Error    : Table 'PNE39.activity_image' doesn't exist
 status   : Operation failed
 PNE39.admin_user
 Error    : Table 'PNE39.admin_user' doesn't exist
 status   : Operation failed
 PNE39.banner
 Error    : Table 'PNE39.banner' doesn't exist
 status   : Operation failed
 PNE39.banner_image
 Error    : Table 'PNE39.banner_image' doesn't exist
 status   : Operation failed
 PNE39.banner_translation
 Error    : Table 'PNE39.banner_translation' doesn't exist
 status   : Operation failed
 PNE39.banner_use_image
 Error    : Table 'PNE39.banner_use_image' doesn't exist
 status   : Operation failed
 PNE39.blacklist
 Error    : Table 'PNE39.blacklist' doesn't exist
 status   : Operation failed
 PNE39.community
 Error    : Table 'PNE39.community' doesn't exist
 status   : Operation failed
 PNE39.community_category
 Error    : Table 'PNE39.community_category' doesn't exist
 status   : Operation failed
 PNE39.community_config
 Error    : Table 'PNE39.community_config' doesn't exist
 status   : Operation failed
 PNE39.community_member
 Error    : Table 'PNE39.community_member' doesn't exist
 status   : Operation failed
 PNE39.community_member_position
 Error    : Table 'PNE39.community_member_position' doesn't exist
 status   : Operation failed
 PNE39.file
 Error    : Table 'PNE39.file' doesn't exist
 status   : Operation failed
 PNE39.file_bin
 Error    : Table 'PNE39.file_bin' doesn't exist
 status   : Operation failed
 PNE39.gadget
 Error    : Table 'PNE39.gadget' doesn't exist
 status   : Operation failed
 PNE39.gadget_config
 Error    : Table 'PNE39.gadget_config' doesn't exist
 status   : Operation failed
 PNE39.member
 Error    : Table 'PNE39.member' doesn't exist
 status   : Operation failed
 PNE39.member_config
 Error    : Table 'PNE39.member_config' doesn't exist
 status   : Operation failed
 PNE39.member_image
 Error    : Table 'PNE39.member_image' doesn't exist
 status   : Operation failed
 PNE39.member_profile
 Error    : Table 'PNE39.member_profile' doesn't exist
 status   : Operation failed
 PNE39.member_relationship
 Error    : Table 'PNE39.member_relationship' doesn't exist
 status   : Operation failed
 PNE39.navigation
 Error    : Table 'PNE39.navigation' doesn't exist
 status   : Operation failed
 PNE39.navigation_translation
 Error    : Table 'PNE39.navigation_translation' doesn't exist
 status   : Operation failed
 PNE39.notification_mail
 Error    : Table 'PNE39.notification_mail' doesn't exist
 status   : Operation failed
 PNE39.notification_mail_translation
 Error    : Table 'PNE39.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE39.o_auth_admin_token
 Error    : Table 'PNE39.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE39.o_auth_member_token
 Error    : Table 'PNE39.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE39.oauth_consumer
 Error    : Table 'PNE39.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE39.openid_trust_log
 Error    : Table 'PNE39.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE39.plugin
 Error    : Table 'PNE39.plugin' doesn't exist
 status   : Operation failed
 PNE39.profile
 Error    : Table 'PNE39.profile' doesn't exist
 status   : Operation failed
 PNE39.profile_option
 Error    : Table 'PNE39.profile_option' doesn't exist
 status   : Operation failed
 PNE39.profile_option_translation
 Error    : Table 'PNE39.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE39.profile_translation
 Error    : Table 'PNE39.profile_translation' doesn't exist
 status   : Operation failed
 PNE39.session
 Error    : Table 'PNE39.session' doesn't exist
 status   : Operation failed
 PNE39.skin_config
 Error    : Table 'PNE39.skin_config' doesn't exist
 status   : Operation failed
 PNE39.sns_config
 Error    : Table 'PNE39.sns_config' doesn't exist
 status   : Operation failed
 PNE39.sns_term
 Error    : Table 'PNE39.sns_term' doesn't exist
 status   : Operation failed
 PNE39.sns_term_translation
 Error    : Table 'PNE39.sns_term_translation' doesn't exist
 status   : Operation failed
 mediatest.file_bin
 Error    : Table 'mediatest.file_bin' doesn't exist
 status   : Operation failed
 mediatest.media
 Error    : Table 'mediatest.media' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__bookmark
 Error    : Table 'phpmyadmin.pma__bookmark' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__central_columns
 Error    : Table 'phpmyadmin.pma__central_columns' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__column_info
 Error    : Table 'phpmyadmin.pma__column_info' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__designer_settings
 Error    : Table 'phpmyadmin.pma__designer_settings' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__export_templates
 Error    : Table 'phpmyadmin.pma__export_templates' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__favorite
 Error    : Table 'phpmyadmin.pma__favorite' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__history
 Error    : Table 'phpmyadmin.pma__history' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__navigationhiding
 Error    : Table 'phpmyadmin.pma__navigationhiding' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__pdf_pages
 Error    : Table 'phpmyadmin.pma__pdf_pages' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__recent
 Error    : Table 'phpmyadmin.pma__recent' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__relation
 Error    : Table 'phpmyadmin.pma__relation' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__savedsearches
 Error    : Table 'phpmyadmin.pma__savedsearches' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__table_coords
 Error    : Table 'phpmyadmin.pma__table_coords' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__table_info
 Error    : Table 'phpmyadmin.pma__table_info' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__table_uiprefs
 Error    : Table 'phpmyadmin.pma__table_uiprefs' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__tracking
 Error    : Table 'phpmyadmin.pma__tracking' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__userconfig
 Error    : Table 'phpmyadmin.pma__userconfig' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__usergroups
 Error    : Table 'phpmyadmin.pma__usergroups' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__users
 Error    : Table 'phpmyadmin.pma__users' doesn't exist
 status   : Operation failed

 Repairing tables
 PNE2.activity_data
 Error    : Table 'PNE2.activity_data' doesn't exist
 status   : Operation failed
 PNE2.activity_image
 Error    : Table 'PNE2.activity_image' doesn't exist
 status   : Operation failed
 PNE2.admin_user
 Error    : Table 'PNE2.admin_user' doesn't exist
 status   : Operation failed
 PNE2.banner
 Error    : Table 'PNE2.banner' doesn't exist
 status   : Operation failed
 PNE2.banner_image
 Error    : Table 'PNE2.banner_image' doesn't exist
 status   : Operation failed
 PNE2.banner_translation
 Error    : Table 'PNE2.banner_translation' doesn't exist
 status   : Operation failed
 PNE2.banner_use_image
 Error    : Table 'PNE2.banner_use_image' doesn't exist
 status   : Operation failed
 PNE2.blacklist
 Error    : Table 'PNE2.blacklist' doesn't exist
 status   : Operation failed
 PNE2.community
 Error    : Table 'PNE2.community' doesn't exist
 status   : Operation failed
 PNE2.community_category
 Error    : Table 'PNE2.community_category' doesn't exist
 status   : Operation failed
 PNE2.community_config
 Error    : Table 'PNE2.community_config' doesn't exist
 status   : Operation failed
 PNE2.community_member
 Error    : Table 'PNE2.community_member' doesn't exist
 status   : Operation failed
 PNE2.community_member_position
 Error    : Table 'PNE2.community_member_position' doesn't exist
 status   : Operation failed
 PNE2.file
 Error    : Table 'PNE2.file' doesn't exist
 status   : Operation failed
 PNE2.file_bin
 Error    : Table 'PNE2.file_bin' doesn't exist
 status   : Operation failed
 PNE2.gadget
 Error    : Table 'PNE2.gadget' doesn't exist
 status   : Operation failed
 PNE2.gadget_config
 Error    : Table 'PNE2.gadget_config' doesn't exist
 status   : Operation failed
 PNE2.member
 Error    : Table 'PNE2.member' doesn't exist
 status   : Operation failed
 PNE2.member_config
 Error    : Table 'PNE2.member_config' doesn't exist
 status   : Operation failed
 PNE2.member_image
 Error    : Table 'PNE2.member_image' doesn't exist
 status   : Operation failed
 PNE2.member_profile
 Error    : Table 'PNE2.member_profile' doesn't exist
 status   : Operation failed
 PNE2.member_relationship
 Error    : Table 'PNE2.member_relationship' doesn't exist
 status   : Operation failed
 PNE2.navigation
 Error    : Table 'PNE2.navigation' doesn't exist
 status   : Operation failed
 PNE2.navigation_translation
 Error    : Table 'PNE2.navigation_translation' doesn't exist
 status   : Operation failed
 PNE2.notification_mail
 Error    : Table 'PNE2.notification_mail' doesn't exist
 status   : Operation failed
 PNE2.notification_mail_translation
 Error    : Table 'PNE2.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE2.o_auth_admin_token
 Error    : Table 'PNE2.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE2.o_auth_member_token
 Error    : Table 'PNE2.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE2.oauth_consumer
 Error    : Table 'PNE2.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE2.openid_trust_log
 Error    : Table 'PNE2.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE2.plugin
 Error    : Table 'PNE2.plugin' doesn't exist
 status   : Operation failed
 PNE2.profile
 Error    : Table 'PNE2.profile' doesn't exist
 status   : Operation failed
 PNE2.profile_option
 Error    : Table 'PNE2.profile_option' doesn't exist
 status   : Operation failed
 PNE2.profile_option_translation
 Error    : Table 'PNE2.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE2.profile_translation
 Error    : Table 'PNE2.profile_translation' doesn't exist
 status   : Operation failed
 PNE2.session
 Error    : Table 'PNE2.session' doesn't exist
 status   : Operation failed
 PNE2.skin_config
 Error    : Table 'PNE2.skin_config' doesn't exist
 status   : Operation failed
 PNE2.sns_config
 Error    : Table 'PNE2.sns_config' doesn't exist
 status   : Operation failed
 PNE2.sns_term
 Error    : Table 'PNE2.sns_term' doesn't exist
 status   : Operation failed
 PNE2.sns_term_translation
 Error    : Table 'PNE2.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE3.activity_data
 Error    : Table 'PNE3.activity_data' doesn't exist
 status   : Operation failed
 PNE3.activity_image
 Error    : Table 'PNE3.activity_image' doesn't exist
 status   : Operation failed
 PNE3.admin_user
 Error    : Table 'PNE3.admin_user' doesn't exist
 status   : Operation failed
 PNE3.album
 Error    : Table 'PNE3.album' doesn't exist
 status   : Operation failed
 PNE3.album_image
 Error    : Table 'PNE3.album_image' doesn't exist
 status   : Operation failed
 PNE3.application
 Error    : Table 'PNE3.application' doesn't exist
 status   : Operation failed
 PNE3.application_invite
 Error    : Table 'PNE3.application_invite' doesn't exist
 status   : Operation failed
 PNE3.application_lifecycle_event_queue
 Error    : Table 'PNE3.application_lifecycle_event_queue' doesn't exist
 status   : Operation failed
 PNE3.application_persistent_data
 Error    : Table 'PNE3.application_persistent_data' doesn't exist
 status   : Operation failed
 PNE3.application_translation
 Error    : Table 'PNE3.application_translation' doesn't exist
 status   : Operation failed
 PNE3.ashiato
 Error    : Table 'PNE3.ashiato' doesn't exist
 status   : Operation failed
 PNE3.banner
 Error    : Table 'PNE3.banner' doesn't exist
 status   : Operation failed
 PNE3.banner_image
 Error    : Table 'PNE3.banner_image' doesn't exist
 status   : Operation failed
 PNE3.banner_translation
 Error    : Table 'PNE3.banner_translation' doesn't exist
 status   : Operation failed
 PNE3.banner_use_image
 Error    : Table 'PNE3.banner_use_image' doesn't exist
 status   : Operation failed
 PNE3.blacklist
 Error    : Table 'PNE3.blacklist' doesn't exist
 status   : Operation failed
 PNE3.blog_rss_cache
 Error    : Table 'PNE3.blog_rss_cache' doesn't exist
 status   : Operation failed
 PNE3.community
 Error    : Table 'PNE3.community' doesn't exist
 status   : Operation failed
 PNE3.community_category
 Error    : Table 'PNE3.community_category' doesn't exist
 status   : Operation failed
 PNE3.community_config
 Error    : Table 'PNE3.community_config' doesn't exist
 status   : Operation failed
 PNE3.community_event
 Error    : Table 'PNE3.community_event' doesn't exist
 status   : Operation failed
 PNE3.community_event_comment
 Error    : Table 'PNE3.community_event_comment' doesn't exist
 status   : Operation failed
 PNE3.community_event_comment_image
 Error    : Table 'PNE3.community_event_comment_image' doesn't exist
 status   : Operation failed
 PNE3.community_event_image
 Error    : Table 'PNE3.community_event_image' doesn't exist
 status   : Operation failed
 PNE3.community_event_member
 Error    : Table 'PNE3.community_event_member' doesn't exist
 status   : Operation failed
 PNE3.community_member
 Error    : Table 'PNE3.community_member' doesn't exist
 status   : Operation failed
 PNE3.community_member_position
 Error    : Table 'PNE3.community_member_position' doesn't exist
 status   : Operation failed
 PNE3.community_topic
 Error    : Table 'PNE3.community_topic' doesn't exist
 status   : Operation failed
 PNE3.community_topic_comment
 Error    : Table 'PNE3.community_topic_comment' doesn't exist
 status   : Operation failed
 PNE3.community_topic_comment_image
 Error    : Table 'PNE3.community_topic_comment_image' doesn't exist
 status   : Operation failed
 PNE3.community_topic_image
 Error    : Table 'PNE3.community_topic_image' doesn't exist
 status   : Operation failed
 PNE3.deleted_message
 Error    : Table 'PNE3.deleted_message' doesn't exist
 status   : Operation failed
 PNE3.diary
 Error    : Table 'PNE3.diary' doesn't exist
 status   : Operation failed
 PNE3.diary_comment
 Error    : Table 'PNE3.diary_comment' doesn't exist
 status   : Operation failed
 PNE3.diary_comment_image
 Error    : Table 'PNE3.diary_comment_image' doesn't exist
 status   : Operation failed
 PNE3.diary_comment_unread
 Error    : Table 'PNE3.diary_comment_unread' doesn't exist
 status   : Operation failed
 PNE3.diary_comment_update
 Error    : Table 'PNE3.diary_comment_update' doesn't exist
 status   : Operation failed
 PNE3.diary_image
 Error    : Table 'PNE3.diary_image' doesn't exist
 status   : Operation failed
 PNE3.favorite
 Error    : Table 'PNE3.favorite' doesn't exist
 status   : Operation failed
 PNE3.file
 Error    : Table 'PNE3.file' doesn't exist
 status   : Operation failed
 PNE3.file_bin
 Error    : Table 'PNE3.file_bin' doesn't exist
 status   : Operation failed
 PNE3.gadget
 Error    : Table 'PNE3.gadget' doesn't exist
 status   : Operation failed
 PNE3.gadget_config
 Error    : Table 'PNE3.gadget_config' doesn't exist
 status   : Operation failed
 PNE3.intro_friend
 Error    : Table 'PNE3.intro_friend' doesn't exist
 status   : Operation failed
 PNE3.member
 Error    : Table 'PNE3.member' doesn't exist
 status   : Operation failed
 PNE3.member_application
 Error    : Table 'PNE3.member_application' doesn't exist
 status   : Operation failed
 PNE3.member_application_setting
 Error    : Table 'PNE3.member_application_setting' doesn't exist
 status   : Operation failed
 PNE3.member_config
 Error    : Table 'PNE3.member_config' doesn't exist
 status   : Operation failed
 PNE3.member_image
 Error    : Table 'PNE3.member_image' doesn't exist
 status   : Operation failed
 PNE3.member_profile
 Error    : Table 'PNE3.member_profile' doesn't exist
 status   : Operation failed
 PNE3.member_relationship
 Error    : Table 'PNE3.member_relationship' doesn't exist
 status   : Operation failed
 PNE3.message
 Error    : Table 'PNE3.message' doesn't exist
 status   : Operation failed
 PNE3.message_file
 Error    : Table 'PNE3.message_file' doesn't exist
 status   : Operation failed
 PNE3.message_send_list
 Error    : Table 'PNE3.message_send_list' doesn't exist
 status   : Operation failed
 PNE3.message_type
 Error    : Table 'PNE3.message_type' doesn't exist
 status   : Operation failed
 PNE3.message_type_translation
 Error    : Table 'PNE3.message_type_translation' doesn't exist
 status   : Operation failed
 PNE3.migration_version
 Error    : Table 'PNE3.migration_version' doesn't exist
 status   : Operation failed
 PNE3.navigation
 Error    : Table 'PNE3.navigation' doesn't exist
 status   : Operation failed
 PNE3.navigation_translation
 Error    : Table 'PNE3.navigation_translation' doesn't exist
 status   : Operation failed
 PNE3.notification_mail
 Error    : Table 'PNE3.notification_mail' doesn't exist
 status   : Operation failed
 PNE3.notification_mail_translation
 Error    : Table 'PNE3.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE3.o_auth_admin_token
 Error    : Table 'PNE3.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE3.o_auth_member_token
 Error    : Table 'PNE3.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE3.oauth_consumer
 Error    : Table 'PNE3.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE3.openid_trust_log
 Error    : Table 'PNE3.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE3.plugin
 Error    : Table 'PNE3.plugin' doesn't exist
 status   : Operation failed
 PNE3.profile
 Error    : Table 'PNE3.profile' doesn't exist
 status   : Operation failed
 PNE3.profile_option
 Error    : Table 'PNE3.profile_option' doesn't exist
 status   : Operation failed
 PNE3.profile_option_translation
 Error    : Table 'PNE3.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE3.profile_translation
 Error    : Table 'PNE3.profile_translation' doesn't exist
 status   : Operation failed
 PNE3.session
 Error    : Table 'PNE3.session' doesn't exist
 status   : Operation failed
 PNE3.skin_config
 Error    : Table 'PNE3.skin_config' doesn't exist
 status   : Operation failed
 PNE3.sns_config
 Error    : Table 'PNE3.sns_config' doesn't exist
 status   : Operation failed
 PNE3.sns_term
 Error    : Table 'PNE3.sns_term' doesn't exist
 status   : Operation failed
 PNE3.sns_term_translation
 Error    : Table 'PNE3.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE34.activity_data
 Error    : Table 'PNE34.activity_data' doesn't exist
 status   : Operation failed
 PNE34.activity_image
 Error    : Table 'PNE34.activity_image' doesn't exist
 status   : Operation failed
 PNE34.admin_user
 Error    : Table 'PNE34.admin_user' doesn't exist
 status   : Operation failed
 PNE34.banner
 Error    : Table 'PNE34.banner' doesn't exist
 status   : Operation failed
 PNE34.banner_image
 Error    : Table 'PNE34.banner_image' doesn't exist
 status   : Operation failed
 PNE34.banner_translation
 Error    : Table 'PNE34.banner_translation' doesn't exist
 status   : Operation failed
 PNE34.banner_use_image
 Error    : Table 'PNE34.banner_use_image' doesn't exist
 status   : Operation failed
 PNE34.blacklist
 Error    : Table 'PNE34.blacklist' doesn't exist
 status   : Operation failed
 PNE34.community
 Error    : Table 'PNE34.community' doesn't exist
 status   : Operation failed
 PNE34.community_category
 Error    : Table 'PNE34.community_category' doesn't exist
 status   : Operation failed
 PNE34.community_config
 Error    : Table 'PNE34.community_config' doesn't exist
 status   : Operation failed
 PNE34.community_member
 Error    : Table 'PNE34.community_member' doesn't exist
 status   : Operation failed
 PNE34.community_member_position
 Error    : Table 'PNE34.community_member_position' doesn't exist
 status   : Operation failed
 PNE34.file
 Error    : Table 'PNE34.file' doesn't exist
 status   : Operation failed
 PNE34.file_bin
 Error    : Table 'PNE34.file_bin' doesn't exist
 status   : Operation failed
 PNE34.gadget
 Error    : Table 'PNE34.gadget' doesn't exist
 status   : Operation failed
 PNE34.gadget_config
 Error    : Table 'PNE34.gadget_config' doesn't exist
 status   : Operation failed
 PNE34.member
 Error    : Table 'PNE34.member' doesn't exist
 status   : Operation failed
 PNE34.member_config
 Error    : Table 'PNE34.member_config' doesn't exist
 status   : Operation failed
 PNE34.member_image
 Error    : Table 'PNE34.member_image' doesn't exist
 status   : Operation failed
 PNE34.member_profile
 Error    : Table 'PNE34.member_profile' doesn't exist
 status   : Operation failed
 PNE34.member_relationship
 Error    : Table 'PNE34.member_relationship' doesn't exist
 status   : Operation failed
 PNE34.navigation
 Error    : Table 'PNE34.navigation' doesn't exist
 status   : Operation failed
 PNE34.navigation_translation
 Error    : Table 'PNE34.navigation_translation' doesn't exist
 status   : Operation failed
 PNE34.notification_mail
 Error    : Table 'PNE34.notification_mail' doesn't exist
 status   : Operation failed
 PNE34.notification_mail_translation
 Error    : Table 'PNE34.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE34.o_auth_admin_token
 Error    : Table 'PNE34.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE34.o_auth_member_token
 Error    : Table 'PNE34.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE34.oauth_consumer
 Error    : Table 'PNE34.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE34.openid_trust_log
 Error    : Table 'PNE34.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE34.plugin
 Error    : Table 'PNE34.plugin' doesn't exist
 status   : Operation failed
 PNE34.profile
 Error    : Table 'PNE34.profile' doesn't exist
 status   : Operation failed
 PNE34.profile_option
 Error    : Table 'PNE34.profile_option' doesn't exist
 status   : Operation failed
 PNE34.profile_option_translation
 Error    : Table 'PNE34.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE34.profile_translation
 Error    : Table 'PNE34.profile_translation' doesn't exist
 status   : Operation failed
 PNE34.session
 Error    : Table 'PNE34.session' doesn't exist
 status   : Operation failed
 PNE34.skin_config
 Error    : Table 'PNE34.skin_config' doesn't exist
 status   : Operation failed
 PNE34.sns_config
 Error    : Table 'PNE34.sns_config' doesn't exist
 status   : Operation failed
 PNE34.sns_term
 Error    : Table 'PNE34.sns_term' doesn't exist
 status   : Operation failed
 PNE34.sns_term_translation
 Error    : Table 'PNE34.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE36.activity_data
 Error    : Table 'PNE36.activity_data' doesn't exist
 status   : Operation failed
 PNE36.activity_image
 Error    : Table 'PNE36.activity_image' doesn't exist
 status   : Operation failed
 PNE36.admin_user
 Error    : Table 'PNE36.admin_user' doesn't exist
 status   : Operation failed
 PNE36.album
 Error    : Table 'PNE36.album' doesn't exist
 status   : Operation failed
 PNE36.album_image
 Error    : Table 'PNE36.album_image' doesn't exist
 status   : Operation failed
 PNE36.application
 Error    : Table 'PNE36.application' doesn't exist
 status   : Operation failed
 PNE36.application_invite
 Error    : Table 'PNE36.application_invite' doesn't exist
 status   : Operation failed
 PNE36.application_lifecycle_event_queue
 Error    : Table 'PNE36.application_lifecycle_event_queue' doesn't exist
 status   : Operation failed
 PNE36.application_persistent_data
 Error    : Table 'PNE36.application_persistent_data' doesn't exist
 status   : Operation failed
 PNE36.application_translation
 Error    : Table 'PNE36.application_translation' doesn't exist
 status   : Operation failed
 PNE36.ashiato
 Error    : Table 'PNE36.ashiato' doesn't exist
 status   : Operation failed
 PNE36.banner
 Error    : Table 'PNE36.banner' doesn't exist
 status   : Operation failed
 PNE36.banner_image
 Error    : Table 'PNE36.banner_image' doesn't exist
 status   : Operation failed
 PNE36.banner_translation
 Error    : Table 'PNE36.banner_translation' doesn't exist
 status   : Operation failed
 PNE36.banner_use_image
 Error    : Table 'PNE36.banner_use_image' doesn't exist
 status   : Operation failed
 PNE36.blacklist
 Error    : Table 'PNE36.blacklist' doesn't exist
 status   : Operation failed
 PNE36.blog_rss_cache
 Error    : Table 'PNE36.blog_rss_cache' doesn't exist
 status   : Operation failed
 PNE36.community
 Error    : Table 'PNE36.community' doesn't exist
 status   : Operation failed
 PNE36.community_category
 Error    : Table 'PNE36.community_category' doesn't exist
 status   : Operation failed
 PNE36.community_config
 Error    : Table 'PNE36.community_config' doesn't exist
 status   : Operation failed
 PNE36.community_event
 Error    : Table 'PNE36.community_event' doesn't exist
 status   : Operation failed
 PNE36.community_event_comment
 Error    : Table 'PNE36.community_event_comment' doesn't exist
 status   : Operation failed
 PNE36.community_event_comment_image
 Error    : Table 'PNE36.community_event_comment_image' doesn't exist
 status   : Operation failed
 PNE36.community_event_image
 Error    : Table 'PNE36.community_event_image' doesn't exist
 status   : Operation failed
 PNE36.community_event_member
 Error    : Table 'PNE36.community_event_member' doesn't exist
 status   : Operation failed
 PNE36.community_member
 Error    : Table 'PNE36.community_member' doesn't exist
 status   : Operation failed
 PNE36.community_member_position
 Error    : Table 'PNE36.community_member_position' doesn't exist
 status   : Operation failed
 PNE36.community_topic
 Error    : Table 'PNE36.community_topic' doesn't exist
 status   : Operation failed
 PNE36.community_topic_comment
 Error    : Table 'PNE36.community_topic_comment' doesn't exist
 status   : Operation failed
 PNE36.community_topic_comment_image
 Error    : Table 'PNE36.community_topic_comment_image' doesn't exist
 status   : Operation failed
 PNE36.community_topic_image
 Error    : Table 'PNE36.community_topic_image' doesn't exist
 status   : Operation failed
 PNE36.deleted_message
 Error    : Table 'PNE36.deleted_message' doesn't exist
 status   : Operation failed
 PNE36.diary
 Error    : Table 'PNE36.diary' doesn't exist
 status   : Operation failed
 PNE36.diary_comment
 Error    : Table 'PNE36.diary_comment' doesn't exist
 status   : Operation failed
 PNE36.diary_comment_image
 Error    : Table 'PNE36.diary_comment_image' doesn't exist
 status   : Operation failed
 PNE36.diary_comment_unread
 Error    : Table 'PNE36.diary_comment_unread' doesn't exist
 status   : Operation failed
 PNE36.diary_comment_update
 Error    : Table 'PNE36.diary_comment_update' doesn't exist
 status   : Operation failed
 PNE36.diary_image
 Error    : Table 'PNE36.diary_image' doesn't exist
 status   : Operation failed
 PNE36.favorite
 Error    : Table 'PNE36.favorite' doesn't exist
 status   : Operation failed
 PNE36.file
 Error    : Table 'PNE36.file' doesn't exist
 status   : Operation failed
 PNE36.file_bin
 Error    : Table 'PNE36.file_bin' doesn't exist
 status   : Operation failed
 PNE36.file_bin_back
 Error    : Table 'PNE36.file_bin_back' doesn't exist
 status   : Operation failed
 PNE36.gadget
 Error    : Table 'PNE36.gadget' doesn't exist
 status   : Operation failed
 PNE36.gadget_config
 Error    : Table 'PNE36.gadget_config' doesn't exist
 status   : Operation failed
 PNE36.intro_friend
 Error    : Table 'PNE36.intro_friend' doesn't exist
 status   : Operation failed
 PNE36.member
 Error    : Table 'PNE36.member' doesn't exist
 status   : Operation failed
 PNE36.member_application
 Error    : Table 'PNE36.member_application' doesn't exist
 status   : Operation failed
 PNE36.member_application_setting
 Error    : Table 'PNE36.member_application_setting' doesn't exist
 status   : Operation failed
 PNE36.member_config
 Error    : Table 'PNE36.member_config' doesn't exist
 status   : Operation failed
 PNE36.member_image
 Error    : Table 'PNE36.member_image' doesn't exist
 status   : Operation failed
 PNE36.member_profile
 Error    : Table 'PNE36.member_profile' doesn't exist
 status   : Operation failed
 PNE36.member_relationship
 Error    : Table 'PNE36.member_relationship' doesn't exist
 status   : Operation failed
 PNE36.message
 Error    : Table 'PNE36.message' doesn't exist
 status   : Operation failed
 PNE36.message_file
 Error    : Table 'PNE36.message_file' doesn't exist
 status   : Operation failed
 PNE36.message_send_list
 Error    : Table 'PNE36.message_send_list' doesn't exist
 status   : Operation failed
 PNE36.message_type
 Error    : Table 'PNE36.message_type' doesn't exist
 status   : Operation failed
 PNE36.message_type_translation
 Error    : Table 'PNE36.message_type_translation' doesn't exist
 status   : Operation failed
 PNE36.migration_version
 Error    : Table 'PNE36.migration_version' doesn't exist
 status   : Operation failed
 PNE36.navigation
 Error    : Table 'PNE36.navigation' doesn't exist
 status   : Operation failed
 PNE36.navigation_translation
 Error    : Table 'PNE36.navigation_translation' doesn't exist
 status   : Operation failed
 PNE36.notification_mail
 Error    : Table 'PNE36.notification_mail' doesn't exist
 status   : Operation failed
 PNE36.notification_mail_translation
 Error    : Table 'PNE36.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE36.o_auth_admin_token
 Error    : Table 'PNE36.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE36.o_auth_member_token
 Error    : Table 'PNE36.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE36.oauth_consumer
 Error    : Table 'PNE36.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE36.openid_trust_log
 Error    : Table 'PNE36.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE36.plugin
 Error    : Table 'PNE36.plugin' doesn't exist
 status   : Operation failed
 PNE36.profile
 Error    : Table 'PNE36.profile' doesn't exist
 status   : Operation failed
 PNE36.profile_option
 Error    : Table 'PNE36.profile_option' doesn't exist
 status   : Operation failed
 PNE36.profile_option_translation
 Error    : Table 'PNE36.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE36.profile_translation
 Error    : Table 'PNE36.profile_translation' doesn't exist
 status   : Operation failed
 PNE36.session
 Error    : Table 'PNE36.session' doesn't exist
 status   : Operation failed
 PNE36.skin_config
 Error    : Table 'PNE36.skin_config' doesn't exist
 status   : Operation failed
 PNE36.sns_config
 Error    : Table 'PNE36.sns_config' doesn't exist
 status   : Operation failed
 PNE36.sns_term
 Error    : Table 'PNE36.sns_term' doesn't exist
 status   : Operation failed
 PNE36.sns_term_translation
 Error    : Table 'PNE36.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE3633.activity_data
 Error    : Table 'PNE3633.activity_data' doesn't exist
 status   : Operation failed
 PNE3633.activity_image
 Error    : Table 'PNE3633.activity_image' doesn't exist
 status   : Operation failed
 PNE3633.admin_user
 Error    : Table 'PNE3633.admin_user' doesn't exist
 status   : Operation failed
 PNE3633.album
 Error    : Table 'PNE3633.album' doesn't exist
 status   : Operation failed
 PNE3633.album_image
 Error    : Table 'PNE3633.album_image' doesn't exist
 status   : Operation failed
 PNE3633.application
 Error    : Table 'PNE3633.application' doesn't exist
 status   : Operation failed
 PNE3633.application_invite
 Error    : Table 'PNE3633.application_invite' doesn't exist
 status   : Operation failed
 PNE3633.application_lifecycle_event_queue
 Error    : Table 'PNE3633.application_lifecycle_event_queue' doesn't exist
 status   : Operation failed
 PNE3633.application_persistent_data
 Error    : Table 'PNE3633.application_persistent_data' doesn't exist
 status   : Operation failed
 PNE3633.application_translation
 Error    : Table 'PNE3633.application_translation' doesn't exist
 status   : Operation failed
 PNE3633.ashiato
 Error    : Table 'PNE3633.ashiato' doesn't exist
 status   : Operation failed
 PNE3633.banner
 Error    : Table 'PNE3633.banner' doesn't exist
 status   : Operation failed
 PNE3633.banner_image
 Error    : Table 'PNE3633.banner_image' doesn't exist
 status   : Operation failed
 PNE3633.banner_translation
 Error    : Table 'PNE3633.banner_translation' doesn't exist
 status   : Operation failed
 PNE3633.banner_use_image
 Error    : Table 'PNE3633.banner_use_image' doesn't exist
 status   : Operation failed
 PNE3633.blacklist
 Error    : Table 'PNE3633.blacklist' doesn't exist
 status   : Operation failed
 PNE3633.blog_rss_cache
 Error    : Table 'PNE3633.blog_rss_cache' doesn't exist
 status   : Operation failed
 PNE3633.community
 Error    : Table 'PNE3633.community' doesn't exist
 status   : Operation failed
 PNE3633.community_category
 Error    : Table 'PNE3633.community_category' doesn't exist
 status   : Operation failed
 PNE3633.community_config
 Error    : Table 'PNE3633.community_config' doesn't exist
 status   : Operation failed
 PNE3633.community_event
 Error    : Table 'PNE3633.community_event' doesn't exist
 status   : Operation failed
 PNE3633.community_event_comment
 Error    : Table 'PNE3633.community_event_comment' doesn't exist
 status   : Operation failed
 PNE3633.community_event_comment_image
 Error    : Table 'PNE3633.community_event_comment_image' doesn't exist
 status   : Operation failed
 PNE3633.community_event_image
 Error    : Table 'PNE3633.community_event_image' doesn't exist
 status   : Operation failed
 PNE3633.community_event_member
 Error    : Table 'PNE3633.community_event_member' doesn't exist
 status   : Operation failed
 PNE3633.community_member
 Error    : Table 'PNE3633.community_member' doesn't exist
 status   : Operation failed
 PNE3633.community_member_position
 Error    : Table 'PNE3633.community_member_position' doesn't exist
 status   : Operation failed
 PNE3633.community_topic
 Error    : Table 'PNE3633.community_topic' doesn't exist
 status   : Operation failed
 PNE3633.community_topic_comment
 Error    : Table 'PNE3633.community_topic_comment' doesn't exist
 status   : Operation failed
 PNE3633.community_topic_comment_image
 Error    : Table 'PNE3633.community_topic_comment_image' doesn't exist
 status   : Operation failed
 PNE3633.community_topic_image
 Error    : Table 'PNE3633.community_topic_image' doesn't exist
 status   : Operation failed
 PNE3633.deleted_message
 Error    : Table 'PNE3633.deleted_message' doesn't exist
 status   : Operation failed
 PNE3633.diary
 Error    : Table 'PNE3633.diary' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment
 Error    : Table 'PNE3633.diary_comment' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment_image
 Error    : Table 'PNE3633.diary_comment_image' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment_unread
 Error    : Table 'PNE3633.diary_comment_unread' doesn't exist
 status   : Operation failed
 PNE3633.diary_comment_update
 Error    : Table 'PNE3633.diary_comment_update' doesn't exist
 status   : Operation failed
 PNE3633.diary_image
 Error    : Table 'PNE3633.diary_image' doesn't exist
 status   : Operation failed
 PNE3633.favorite
 Error    : Table 'PNE3633.favorite' doesn't exist
 status   : Operation failed
 PNE3633.file
 Error    : Table 'PNE3633.file' doesn't exist
 status   : Operation failed
 PNE3633.file_bin
 Error    : Table 'PNE3633.file_bin' doesn't exist
 status   : Operation failed
 PNE3633.gadget
 Error    : Table 'PNE3633.gadget' doesn't exist
 status   : Operation failed
 PNE3633.gadget_config
 Error    : Table 'PNE3633.gadget_config' doesn't exist
 status   : Operation failed
 PNE3633.intro_friend
 Error    : Table 'PNE3633.intro_friend' doesn't exist
 status   : Operation failed
 PNE3633.member
 Error    : Table 'PNE3633.member' doesn't exist
 status   : Operation failed
 PNE3633.member_application
 Error    : Table 'PNE3633.member_application' doesn't exist
 status   : Operation failed
 PNE3633.member_application_setting
 Error    : Table 'PNE3633.member_application_setting' doesn't exist
 status   : Operation failed
 PNE3633.member_config
 Error    : Table 'PNE3633.member_config' doesn't exist
 status   : Operation failed
 PNE3633.member_image
 Error    : Table 'PNE3633.member_image' doesn't exist
 status   : Operation failed
 PNE3633.member_profile
 Error    : Table 'PNE3633.member_profile' doesn't exist
 status   : Operation failed
 PNE3633.member_relationship
 Error    : Table 'PNE3633.member_relationship' doesn't exist
 status   : Operation failed
 PNE3633.message
 Error    : Table 'PNE3633.message' doesn't exist
 status   : Operation failed
 PNE3633.message_file
 Error    : Table 'PNE3633.message_file' doesn't exist
 status   : Operation failed
 PNE3633.message_send_list
 Error    : Table 'PNE3633.message_send_list' doesn't exist
 status   : Operation failed
 PNE3633.message_type
 Error    : Table 'PNE3633.message_type' doesn't exist
 status   : Operation failed
 PNE3633.message_type_translation
 Error    : Table 'PNE3633.message_type_translation' doesn't exist
 status   : Operation failed
 PNE3633.navigation
 Error    : Table 'PNE3633.navigation' doesn't exist
 status   : Operation failed
 PNE3633.navigation_translation
 Error    : Table 'PNE3633.navigation_translation' doesn't exist
 status   : Operation failed
 PNE3633.notification_mail
 Error    : Table 'PNE3633.notification_mail' doesn't exist
 status   : Operation failed
 PNE3633.notification_mail_translation
 Error    : Table 'PNE3633.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE3633.o_auth_admin_token
 Error    : Table 'PNE3633.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE3633.o_auth_member_token
 Error    : Table 'PNE3633.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE3633.oauth_consumer
 Error    : Table 'PNE3633.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE3633.openid_trust_log
 Error    : Table 'PNE3633.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE3633.plugin
 Error    : Table 'PNE3633.plugin' doesn't exist
 status   : Operation failed
 PNE3633.profile
 Error    : Table 'PNE3633.profile' doesn't exist
 status   : Operation failed
 PNE3633.profile_option
 Error    : Table 'PNE3633.profile_option' doesn't exist
 status   : Operation failed
 PNE3633.profile_option_translation
 Error    : Table 'PNE3633.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE3633.profile_translation
 Error    : Table 'PNE3633.profile_translation' doesn't exist
 status   : Operation failed
 PNE3633.session
 Error    : Table 'PNE3633.session' doesn't exist
 status   : Operation failed
 PNE3633.skin_config
 Error    : Table 'PNE3633.skin_config' doesn't exist
 status   : Operation failed
 PNE3633.sns_config
 Error    : Table 'PNE3633.sns_config' doesn't exist
 status   : Operation failed
 PNE3633.sns_term
 Error    : Table 'PNE3633.sns_term' doesn't exist
 status   : Operation failed
 PNE3633.sns_term_translation
 Error    : Table 'PNE3633.sns_term_translation' doesn't exist
 status   : Operation failed
 PNE39.activity_data
 Error    : Table 'PNE39.activity_data' doesn't exist
 status   : Operation failed
 PNE39.activity_image
 Error    : Table 'PNE39.activity_image' doesn't exist
 status   : Operation failed
 PNE39.admin_user
 Error    : Table 'PNE39.admin_user' doesn't exist
 status   : Operation failed
 PNE39.banner
 Error    : Table 'PNE39.banner' doesn't exist
 status   : Operation failed
 PNE39.banner_image
 Error    : Table 'PNE39.banner_image' doesn't exist
 status   : Operation failed
 PNE39.banner_translation
 Error    : Table 'PNE39.banner_translation' doesn't exist
 status   : Operation failed
 PNE39.banner_use_image
 Error    : Table 'PNE39.banner_use_image' doesn't exist
 status   : Operation failed
 PNE39.blacklist
 Error    : Table 'PNE39.blacklist' doesn't exist
 status   : Operation failed
 PNE39.community
 Error    : Table 'PNE39.community' doesn't exist
 status   : Operation failed
 PNE39.community_category
 Error    : Table 'PNE39.community_category' doesn't exist
 status   : Operation failed
 PNE39.community_config
 Error    : Table 'PNE39.community_config' doesn't exist
 status   : Operation failed
 PNE39.community_member
 Error    : Table 'PNE39.community_member' doesn't exist
 status   : Operation failed
 PNE39.community_member_position
 Error    : Table 'PNE39.community_member_position' doesn't exist
 status   : Operation failed
 PNE39.file
 Error    : Table 'PNE39.file' doesn't exist
 status   : Operation failed
 PNE39.file_bin
 Error    : Table 'PNE39.file_bin' doesn't exist
 status   : Operation failed
 PNE39.gadget
 Error    : Table 'PNE39.gadget' doesn't exist
 status   : Operation failed
 PNE39.gadget_config
 Error    : Table 'PNE39.gadget_config' doesn't exist
 status   : Operation failed
 PNE39.member
 Error    : Table 'PNE39.member' doesn't exist
 status   : Operation failed
 PNE39.member_config
 Error    : Table 'PNE39.member_config' doesn't exist
 status   : Operation failed
 PNE39.member_image
 Error    : Table 'PNE39.member_image' doesn't exist
 status   : Operation failed
 PNE39.member_profile
 Error    : Table 'PNE39.member_profile' doesn't exist
 status   : Operation failed
 PNE39.member_relationship
 Error    : Table 'PNE39.member_relationship' doesn't exist
 status   : Operation failed
 PNE39.navigation
 Error    : Table 'PNE39.navigation' doesn't exist
 status   : Operation failed
 PNE39.navigation_translation
 Error    : Table 'PNE39.navigation_translation' doesn't exist
 status   : Operation failed
 PNE39.notification_mail
 Error    : Table 'PNE39.notification_mail' doesn't exist
 status   : Operation failed
 PNE39.notification_mail_translation
 Error    : Table 'PNE39.notification_mail_translation' doesn't exist
 status   : Operation failed
 PNE39.o_auth_admin_token
 Error    : Table 'PNE39.o_auth_admin_token' doesn't exist
 status   : Operation failed
 PNE39.o_auth_member_token
 Error    : Table 'PNE39.o_auth_member_token' doesn't exist
 status   : Operation failed
 PNE39.oauth_consumer
 Error    : Table 'PNE39.oauth_consumer' doesn't exist
 status   : Operation failed
 PNE39.openid_trust_log
 Error    : Table 'PNE39.openid_trust_log' doesn't exist
 status   : Operation failed
 PNE39.plugin
 Error    : Table 'PNE39.plugin' doesn't exist
 status   : Operation failed
 PNE39.profile
 Error    : Table 'PNE39.profile' doesn't exist
 status   : Operation failed
 PNE39.profile_option
 Error    : Table 'PNE39.profile_option' doesn't exist
 status   : Operation failed
 PNE39.profile_option_translation
 Error    : Table 'PNE39.profile_option_translation' doesn't exist
 status   : Operation failed
 PNE39.profile_translation
 Error    : Table 'PNE39.profile_translation' doesn't exist
 status   : Operation failed
 PNE39.session
 Error    : Table 'PNE39.session' doesn't exist
 status   : Operation failed
 PNE39.skin_config
 Error    : Table 'PNE39.skin_config' doesn't exist
 status   : Operation failed
 PNE39.sns_config
 Error    : Table 'PNE39.sns_config' doesn't exist
 status   : Operation failed
 PNE39.sns_term
 Error    : Table 'PNE39.sns_term' doesn't exist
 status   : Operation failed
 PNE39.sns_term_translation
 Error    : Table 'PNE39.sns_term_translation' doesn't exist
 status   : Operation failed
 mediatest.file_bin
 Error    : Table 'mediatest.file_bin' doesn't exist
 status   : Operation failed
 mediatest.media
 Error    : Table 'mediatest.media' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__bookmark
 Error    : Table 'phpmyadmin.pma__bookmark' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__central_columns
 Error    : Table 'phpmyadmin.pma__central_columns' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__column_info
 Error    : Table 'phpmyadmin.pma__column_info' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__designer_settings
 Error    : Table 'phpmyadmin.pma__designer_settings' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__export_templates
 Error    : Table 'phpmyadmin.pma__export_templates' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__favorite
 Error    : Table 'phpmyadmin.pma__favorite' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__history
 Error    : Table 'phpmyadmin.pma__history' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__navigationhiding
 Error    : Table 'phpmyadmin.pma__navigationhiding' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__pdf_pages
 Error    : Table 'phpmyadmin.pma__pdf_pages' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__recent
 Error    : Table 'phpmyadmin.pma__recent' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__relation
 Error    : Table 'phpmyadmin.pma__relation' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__savedsearches
 Error    : Table 'phpmyadmin.pma__savedsearches' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__table_coords
 Error    : Table 'phpmyadmin.pma__table_coords' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__table_info
 Error    : Table 'phpmyadmin.pma__table_info' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__table_uiprefs
 Error    : Table 'phpmyadmin.pma__table_uiprefs' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__tracking
 Error    : Table 'phpmyadmin.pma__tracking' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__userconfig
 Error    : Table 'phpmyadmin.pma__userconfig' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__usergroups
 Error    : Table 'phpmyadmin.pma__usergroups' doesn't exist
 status   : Operation failed
 phpmyadmin.pma__users
 Error    : Table 'phpmyadmin.pma__users' doesn't exist
 status   : Operation failed
 OK
 root@hotshot:~ # /root/bin/check.sh
 src component not installed, skipped
 Looking up update.FreeBSD.org mirrors... 3 mirrors found.
 Fetching metadata signature for 11.2-RELEASE from update2.freebsd.org... done.
 Fetching metadata index... done.
 Inspecting system... done.
 Preparing to download files... done.

 No updates needed to update system to 11.2-RELEASE-p8.
 src component not installed, skipped
 No updates are available to install.
 Run '/usr/sbin/freebsd-update fetch' first.
 Looking up portsnap.FreeBSD.org mirrors... 6 mirrors found.
 Fetching snapshot tag from ec2-ap-northeast-1.portsnap.freebsd.org... done.
 Latest snapshot on server matches what we already have.
 No updates needed.
 Ports tree is already up to date.
 [Reading data from pkg(8) ... - 295 packages found - done]
 vulnxml file up-to-date
 0 problem(s) in the installed packages found.
 Stopping mysql.
 Waiting for PIDS: 4629.
 Starting mysql.
 Warning: Using a password on the command line interface can be insecure.
 Looking for 'mysql' as: /usr/local/bin/mysql
 Looking for 'mysqlcheck' as: /usr/local/bin/mysqlcheck
 This installation of MySQL is already upgraded to 5.6.43, use --force if you still need to run mysql_upgrade


----
Total access &counter(total);:本日 &counter(today);:昨日 &counter(yesterday);
#counter([total|today|yesterday]);

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS