ページの先頭行へ戻る
Interstage Application Server/Interstage Web Server メッセージ集
Interstage

73.15.43 irep13550

IREP: ERROR: irep13550: In the rule file, the name of 'unique' overlaps.
IREP: エラー: irep13550: ルールファイル中の unique の値が重複しています

意味

指定されたルールファイル中に、値が重複するuniqueタグが指定されています。uniqueタグは値を重複して指定することができません。

指定が誤っている例

・・・・
    <Csv2Directory>
        <Rule>
        ・・・・
            <unique>uid</unique>
            <unique>3</unique>
        ・・・・
            <CSV>
                <Attribute>
                    <cn>1</cn>
                    <sn>2</sn>
                    <uid>3</uid>
                    <mail>4</mail>
                </Attribute>
            </CSV>
・・・・

正しい例

・・・・
    <Csv2Directory>
        <Rule>
        ・・・・
            <unique>uid</unique>
        ・・・・
            <CSV>
                <Attribute>
                    <cn>1</cn>
                    <sn>2</sn>
                    <uid>3</uid>
                    <mail>4</mail>
                </Attribute>
            </CSV>
・・・・

ユーザの対処

uniqueタグは値を重複して指定することができません。ルールファイルを編集し、uniqueタグに指定している値を変更、または重複するuniqueタグを削除したうえで、再度コマンドを実行してください。
ルールファイルの詳細については、“ディレクトリサービス運用ガイド”の“データの作成”-“データベースから抽出したCSVファイルを使う”を参照してください。