如何使我的Java应用程序在连接时向Oracle标识自己? [英] How do I make my Java application identify itself to Oracle on connection?

查看:216
本文介绍了如何使我的Java应用程序在连接时向Oracle标识自己?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我的应用程序连接到Oracle数据库时,我希望能够通过查看数据库中与其连接的活动会话来查看。目前,它将自己标识为JDBC瘦客户端,因为这是我正在使用的驱动程序,但是我拥有的其他基于Java的应用程序能以某种方式将此值设置为更有意义的东西,如SQL Developer。我认为这是 Connection OracleDataSource 的属性,但我没有设法找到一个诀窍。这可能吗?在这种情况下,我使用Java 1.5,使用Oracle 10g和10g瘦驱动程序。

When my application connects to an Oracle database I want to be able to see by looking at the active sessions in the database that it is connected. Currently it identifies itself as "JDBC Thin Client" because that's the driver that I'm using, but other Java based applications that I have are somehow able to set this value to something more meaningful, like "SQL Developer". I thought it was a property of the Connection or the OracleDataSource, but I've not managed to find one that does the trick. Is this possible? In case it matters, I'm using Java 1.5, with Oracle 10g and the 10g thin driver.

推荐答案

java.util.Properties props = new java.util.Properties();
props.setProperty("password","mypassword");
props.setProperty("user","myusername");
props.put("v$session.osuser", System.getProperty("user.name").toString());
props.put("v$session.machine", InetAddress.getLocalHost().getCanonicalHostName());
props.put("v$session.program", "My Program Name");
DriverManager.registerDriver (new oracle.jdbc.OracleDriver());
Connection conn=
    DriverManager.getConnection("jdbc:oracle:thin:@myhostname:1521:mysid", props);

SQL>select username,osuser,program,machine
from v$session
where username = 'ROB'; 

USERNAME  OSUSER       PROGRAM             MACHINE
--------- -----------  ------------------  -----------
ROB       rmerkw       My Program Name     machine

在应用层,您可以使用以下方法在 v $ session 中设置 client_info em>

At application level you can use the following methods to set client_info, module and action in v$session:

dbms_application_info.set_client_info
dbms_application_info.set_module
dbms_application_info.set_action

这篇关于如何使我的Java应用程序在连接时向Oracle标识自己?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆