Oracle - password for each scheme
Answered
Hello! Now PL/SQL Developer is used to work with Oracle, we want to switch to Datagrip to work. Problem: there are more than 2000 schemes on the server, for each scheme a unique login/password is stored in the *.connections file. How can I implement an entrance for each scheme with a separate password in Datagrip? (without Kerberos)
Please sign in to leave a comment.
Hi,
There is a trick that you can use:
After you've finished with credentials, copy all data from that XML file and press Plus icon in Database Explorer, choose Import from Clipboard.
To specify username and password, please use the following syntax: `jdbc:oracle:thin:[USER/PASSWORD]@//[HOST][:PORT]/SERVICE`
For example, `<jdbc-url>jdbc:oracle:thin:user/pass@localhost:1521:XE</jdbc-url>`.
I hope it helps.