2016年10月31日月曜日

eコミュニティ・プラットフォーム - 8 災害アーカイブシステム インストールg

8-1 災害アーカイブシステムのインストール
8-1-7 テーブル作成
「2php版 インストールマニュアル.pdf」の「6 テーブル作成」を参考にします。

SQL文の記述されたファイルは次の方法での読み込みます。

$ mysql -u ユーザー名 -p データベース名 < ファイル名
Enter password: パスワード

または、データベースに接続した後、

$ mysql -u ユーザー名 -p データベース名
Enter password: パスワード

次のように実行します。

(mysql> USE データベース名;)
mysql> SOURCE ファイル名;
[root@centos6 Config]# pwd
/var/www/html/marugoto/app/Config
[root@centos6 ~]# cd  ../../marugoto-sql/
[root@centos6 marugoto-sql]# ls
README.TXT
marugoto-01-structure.sql <- テーブル構造
marugoto-02-master.sql    <- マスタデータ
marugoto-03-sequence.sql  <- シーケンス
marugoto-04-admin.sql     <- 管理者ユーザ
marugoto-05-demo.sql      <- デモデータ
update

[root@centos6 marugoto-sql]# mysql -u archive -p ecomarchive < marugoto-01-structure.sql
Enter password:
ERROR 1227 (42000) at line 27: Access denied; you need the SUPER privilege for this operation
[root@centos6 marugoto-sql]# mysql -u root -p ecomarchive < marugoto-01-structure.sql
Enter password:
[root@centos6 marugoto-sql]# mysql -u root -p ecomarchive < marugoto-02-master.sql
Enter password:
[root@centos6 marugoto-sql]# mysql -u root -p ecomarchive < marugoto-03-sequence.sql
Enter password:
[root@centos6 marugoto-sql]# mysql -u root -p ecomarchive < marugoto-04-admin.sql
Enter password:
[root@centos6 marugoto-sql]# mysql -u root -p ecomarchive < marugoto-05-demo.sql
Enter password:

0 件のコメント: