How to connect to the containerized DB #11
-
Hi, How do you connect to the containerized DB using SQL Developer or VS Code? |
Beta Was this translation helpful? Give feedback.
Answered by
phartenfeller
Apr 1, 2025
Replies: 1 comment 1 reply
-
If all the scripts ran without errros you can use SQLcl: Note that this only works for schemas created with the create user command. If you need something else to connect: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
orachard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If all the scripts ran without errros you can use SQLcl:
sql -name local-23ai-{schema_name}
. Likesql -name local-23ai-sys
forsys
. The connections are also available from the VS Code SQLdev extension (you might need to click refresh).Note that this only works for schemas created with the create user command.
If you need something else to connect:
username/pw@localhost:1521/FREEPDB1
. Passwords are stored in the.env
.