スキップしてコンテンツを表示

Calling create_passthrough_verify_fcn returns an error

0

Has anybody seen the following problem in calling create_passthrough_verify_fcn?

We're trying to implement a custom password verify function by calling the following from the master user account:

begin
rdsadmin.rdsadmin_password_verify.create_passthrough_verify_fcn(
p_verify_function_name => 'VERIFY_FUNCTION_SYS',
p_target_owner => 'MASTER',
p_target_function_name => 'VERIFY_FUNCTION');
end;

VERIFY_FUNCTION is our custom password verify function and has been compiled successfully.

The follow error is returned:

ORA-20199: Error in rdsadmin_password_verify.create_passthrough_verify_fcn. ORA-20002: Unable to create the unprivileged user. Please contact AWS Support.
ORA-06512: at "RDSADMIN.RDSADMIN_PASSWORD_VERIFY", line 70
ORA-20002: Unable to create the unprivileged user. Please contact AWS Support.
ORA-06512: at line 2

Calling the simpler create_verify_function is OK but we need create_passthrough_verify_fcn to call our own custom function.

質問済み 6年前473ビュー
2回答
0

Hi there,

This can happen in situations where you have defined a restrictive password verification function on the "DEFAULT" profile and then run something that uses automation to create a new user in that profile. You might try setting the password verification function back to null for "DEFAULT", then retry creating the passthrough function, then re-enable password verification for "DEFAULT".

Hope this helps. Thanks!
Michael

AWS
回答済み 6年前
0

After setting the default profile to null, it is now working.

Thanks a lot.

回答済み 6年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

関連するコンテンツ