2017-06-13 17 views
-1

役割に読み取り権限と作成権限を与える方法を教えてください。役割 "CUSTOM_ROLE" へOracle:ロールに読取り権限と作成権限を付与する方法

  1. grant文​​:

    ここで私がやった手順は次のとおりです

    CUSTOM_ROLEへ

    GRANT SELECT ONのMY_VIEW_1。

  2. ユーザーIDへの役割の割り当て:USERID_123 TO

    GRANT CUSTOM_ROLEを。

エラー:

01924. 00000 - "role '%s' not granted or does not exist" 

*Cause: Either the role was not granted to the user, or the role did not exist. 

*Action: Create the role or grant the role to the user and retry 
      the operation. 

親切に助けてください。ありがとうございました。

答えて

1

付与する前にロールを作成します。メッセージには、役割は存在しないと言われています。

私はあなたが使用して役割の存在をチェックすることをお勧め:このクエリが行を返さない場合は、それを作成するために

CREATE ROLE custom_role; 

を使用

select role from dba_roles where role = 'CUSTOM_ROLE'; 

はこの参照:詳細

については

https://www.techonthenet.com/oracle/roles.php

関連する問題