首页 > 解决方案 > 创建有 apex_util.create_user 问题的用户

问题描述

我想从 db(在 oracle 中)在 apex 中创建一个用户。这是我的代码:

declare
   l_workspace_id number;
   l_group_id     number;
begin
   l_workspace_id := apex_util.find_security_group_id('MS');

   apex_util.set_security_group_id(l_workspace_id);

   l_group_id := apex_util.get_group_id('Developer');

   apex_util.create_user(p_user_name           => 'MS',
                      p_first_name          => 'Mona',
                      p_last_name           => 'Sh',
                      p_email_address       => 'ms@...',
                      p_group_ids           => l_group_id,  
                      p_web_password        => 'MS',
                      p_default_schema      => 'MS',
                      p_change_password_on_first_use  => 'N');

end;

它运行成功,但我在 web 的 apex 应用程序中看不到用户。(工作区名称、模式名称和用户名是 MS)有什么问题?

标签: oracle-apexcreateuser

解决方案


推荐阅读