gpt4 book ai didi

oracle-apex - Oracle APEX 中的并发用户数

转载 作者:行者123 更新时间:2023-12-05 05:12:11 25 4
gpt4 key购买 nike

我希望在 Oracle Express 版本上设置 Oracle APEX 应用程序。用户限制为2,并发用户数如何确定?

最佳答案

I am looking to set up an Oracle APEX application on Oracle Express edition.

没关系。


The user limit is 2.

好的;据我了解,将有 2 个用户使用该应用程序。


How is the number of concurrent users determined?

您是否担心这 2 位用户无法同时使用您的应用程序?如果是这样,没问题。 更多用户将能够做到这一点。

据我所知,没有办法说出谁当前正在使用您的应用程序,但您可以检查谁在最近(例如 10 分钟)内登录。您将运行这样的查询(假设它是您工作区中唯一的应用程序):

select apex_user, 
to_char(last_view, 'DD.MM.YYYY HH24:MI:SS') last_view
from apex_workspace_log_summary_usr
where workspace = 'YOUR_WORKSPACE_NAME'
and apex_user <> 'nobody'
and last_view > sysdate - 10 / (24 * 60);
^^
-- last view was within the last 10 minutes

或者,检查这样一个查询:它会显示在过去 10 分钟内访问过您的应用程序的用户,以及从那以后经过了多少秒。

select apex_user, 
min(seconds_ago) min_sec_ago
from apex_workspace_activity_log
where workspace = 'YOUR_WORKSPACE_NAME'
and application_id = YOUR_APPLICATION_ID
and apex_user <> 'nobody'
and seconds_ago < 10 * 60
-- ^^ 10 minutes ago
group by apex_user;

关于oracle-apex - Oracle APEX 中的并发用户数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54836693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com