0

php myadmin を使用して古いホストから新しいホストにデータベースをインポートすると、エラー 1064 が発生しました。

これを解決するのを手伝ってもらえますか?

SQL クエリ:

 forum_hrhokej1.sql100777 0 0 1635074240 12165000252 10020 0-- -- Database: `bmikic_hrhokej` -- -- -------------------------------------------------------- -- -- Table structure for table `phpbb_acl_groups` -- CREATE TABLE IF NOT EXISTS `phpbb_acl_groups` ( `group_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `forum_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `auth_option_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `auth_role_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `auth_setting` tinyint(2) NOT NULL DEFAULT '0',[...]

MySQL は次のように述べています。

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'forum_hrhokej1.sql' at line 1 

完全なクエリ

--
-- Database: `bmikic_hrhokej.sql`
--

-- --------------------------------------------------------

--
-- Table structure for table `phpbb_acl_groups`
--

CREATE TABLE IF NOT EXISTS `phpbb_acl_groups` (
 `group_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
 `forum_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
 `auth_option_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
 `auth_role_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
 `auth_setting` tinyint(2) NOT NULL DEFAULT '0',
  KEY `group_id` (`group_id`),
KEY `auth_opt_id` (`auth_option_id`),
KEY `auth_role_id` (`auth_role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

--
-- Dumping data for table `phpbb_acl_groups`
4

1 に答える 1

0

皆さんにお知らせしたいのですが、問題は phpmyadmin にありました。

データベースが大きすぎたので、問題なく ssh 経由でインポートできました。

于 2013-07-04T08:30:08.903 に答える