Advantage数据库如何检索连接名称

发布于 2024-10-15 23:56:56 字数 212 浏览 2 评论 0原文

我正在使用 Sybase Advantage,我有 2 个表:

  • 第一个表包含数据记录
  • 第二个表存储第一个表的历史记录

第一个表具有触发器,可根据更改的字段填充第二个表中的记录。

我想存储连接名称(发出请求的 PC)、活动查询页面(服务器信息对话框)中显示的名称,而不是用户名。有谁知道这是否可能?

谢谢

I am using Sybase Advantage, I have 2 tables:

  • The first table has the data records
  • The second table stores a history of the first

The first table has triggers to populate records in the second table depending on which fields get changed.

I would like to store the connection name (PC which made the request), the name that is displayed in the active queries page (Server Info dialog) and not the username. Does anyone know if this is possible?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月棠 2024-10-22 23:56:56

以下 SQL 语句可用于检索计算机名而不是用户名。

<代码>
选择 *

( 执行过程 sp_mgGetConnectedUsers() ) ConnUsers
在哪里
ConnUsers.DictionaryUser = USER();

存储过程 sp_mgGetConnectedUsers 记录在此处。

The following SQL statement can be used to retrieve the computer name instead of the user name.


SELECT *
FROM
( EXECUTE PROCEDURE sp_mgGetConnectedUsers() ) ConnUsers
WHERE
ConnUsers.DictionaryUser = USER();

The stored procedure sp_mgGetConnectedUsers is documented here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文