简体   繁体   中英

How to find Oracle APEX WORKSPACE NAME and USERNAME?

大家好,我有用来练习Oracle APEX 5.0 VMware,目前无法登录Oracle APEX因为我不知道我的工作worksapce name和登录顶点的username ,我仍然可以通过以下方式访问Oracle数据库作为system用户,我只需要一个query就可以检索Oracle APEX用户名和工作区名称?

As of workspaces: when you query list of users:

SQL> select * From all_users;

USERNAME                          USER_ID CREATED
------------------------------ ---------- ----------
XS$NULL                        2147483638 29.05.2014
MIKE                                   71 30.03.2018
SCOTT                                  66 03.03.2018
APEX_040000                            47 29.05.2014   --> this
APEX_PUBLIC_USER                       45 29.05.2014

you'll see the APEX user; on my XE database, it is Apex 4.0 that installs by default.

Once you find the APEX_ username, find all workspaces as

SQL> select workspace from apex_040000.apex_workspaces;

WORKSPACE
---------------------------------------------------------

HR
INTERNAL

SQL>

As of usernames, try with

SQL> select user_name from apex_040000.wwv_flow_fnd_user;

USER_NAME
---------------------------------------------------------
ADMIN
HR

SQL>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM