MySQL ドキュメントから
In MySQL 5.0 CREATE TRIGGER requires the SUPER privilege.
そのため、ユーザーに SUPER 権限を付与する必要があります。インポート中に、エラーをスローしている「Create Trigger...」のようなコマンドがあります。
インポート ファイルのトリガーについて、MySQL のバージョンと定義者の値を確認します。
編集:
バージョン 5.1 の場合は、MySQL のドキュメントに従ってください。
CREATE TRIGGER requires the TRIGGER privilege for the table associated with the
trigger. The statement might also require the SUPER privilege, depending on
the DEFINER value, as described later in this section. If binary logging is
enabled, CREATE TRIGGER might require the SUPER privilege, as described in
Section 19.7, “Binary Logging of Stored Programs”. (Before MySQL 5.1.6, there is
no TRIGGER privilege and this statement requires the SUPER privilege in all cases)
The DEFINER clause determines the security context to be used when checking access
privileges at trigger activation time.
そのため、トリガーをインポートするための定義者の値を確認する必要があります。のようなものがあるかもしれません: DEFINER = root
. 定義者を削除してから、インポートしてみてください。それがうまくいくことを願っています...