vijay kumar
vijay kumar

Reputation: 283

Oracle sql developer connection

I am trying to connect to oracle DB using Oracle SQL Developer (Version 3.0.04) Connection parameters follows,

host : port : user : xxxx password : sssss service name : asdf.somedomain.com

When connecting I am getting the following error

Unsupported verifier type.

I am able to ping the host so no network problem. I have another server in the same network which works perfectly fine.

Upvotes: 1

Views: 6820

Answers (2)

suman
suman

Reputation: 407

For me adding the below line in sqldeveloper.conf works fine.You can find this conf file inside \sqldeveloper\bin directory.

AddVMOption -Doracle.jdbc.thinLogonCapability=o3

Upvotes: 1

Dba
Dba

Reputation: 6649

It might be the issue with the thin Java driver. Try checking Tools-Preferences-Database-Advanced-Use OCI/Thick driver.

Upvotes: 3

Related Questions