2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWS RDSのMariaDBにおいて、データベース名にハイフン使いたい場合の対処

Last updated at Posted at 2019-09-19

tl; dr

MariaDB(Mysql)のデータベース名にハイフンを入れたい場合は、CREATE DATABASEを直接たたこう。
その際に、データベース名はバッククォートでくくろう。
AWS RDSのGUIでは「-」が禁止文字になっている。

説明

AWS RDSのGUIでは、データベース名にハイフンが許可されていない。
キャプチャ.PNG

じゃあ直接、CREATE DATABASEを直接たたいてみようと思ったが、構文エラーとなった。

MariaDB [(none)]> create database test-test;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '-test' at line 1

調べてみた結果、ハイフンを含める場合はバッククォートが必要だった模様。
修正して書き直してみるとうまくいった。

MariaDB [(none)]> create database `test-test`;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> show databases like 'test%';
+------------------+
| Database (test%) |
+------------------+
| test-test        |
+------------------+
2 rows in set (0.00 sec)

環境差異がある場合

解消のために、データベース名変更対応をを行った。
RENAME DATABASEは使えない(はず)なので、以下のように対応しました。

  1. 正しい名前でCREATE DATABASE を実行
  2. mysqldumpにて、誤ったデータベースから、データをエクスポート
  3. mysqldumpにて、正しいデータベースに、2.のデータをインポート
  4. 誤ったデータベースをDROPする

備考

確信はないが、昔はAWS RDSのGUIでは「-」は許可されていたように思う。
根拠は、同じ手順でRDBを作っていたのに、データベース名に環境差異が出ていたため。
途中で「-」を禁止文字にしたため、こうなったという考察。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?