Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有参考 sqlnet.ora 文件进行查找,并且几乎提供了以下 TNS URL 用于连接,我需要在以下连接 URL 中挤入 SDU 设置我想知道它会去哪里以及新的网址会是什么样子?
这是我正在使用的:jdbc:oracle:thin:@192.168.191.231:1521:naladomain
jdbc:oracle:thin:@192.168.191.231:1521:naladomain
我现在需要在上面的 TNS 字符串中压缩自定义 sdu 设置。我该怎么做?:-)
谢谢!
您需要使用长 TNS 格式(根据tnsnames.ora文件)。像这样:
tnsnames.ora
jdbc:oracle:thin:@(DESCRIPTION=(SDU=32767)(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.191.231)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=naladomain))
更改值以满足您的需要。