为什么将连接到Oracle的clickonce程序列为defaultdamain?

时间:2019-07-10 22:14:21

标签: c# oracle clickonce

我的oracle客户端应用程序在oracle会话中正确列出为app.exe 从可执行文件“正常”启动但以clickonce应用程序启动时,在程序列中列为“默认域”。可能是什么原因?

select
       substr(a.spid,1,9) pid,
       substr(b.sid,1,5) sid,
       substr(b.serial#,1,5) ser#,
       substr(b.machine,1,6) box,
       substr(b.username,1,10) username,
       substr(b.osuser,1,8) os_user,
       substr(b.program,1,30) program
from v$session b, v$process a
where b.paddr = a.addr and type='USER'
order by spid;

0 个答案:

没有答案