Advantage数据库如何检索连接名称
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下 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.