ORA-01017: invalid username/password; logon denied with container DOCKER - oracle

good morning I am writing because I am trying to connect to an oracle 12c database that is in an oracle container, the question is what I am doing with a user that created but I get the error ORA-01017:
On the other hand, if I try the system user with his password that can be obtained at the following link: https://hub.docker.com/_/oracle-database-enterprise-edition?tab=reviews, everything works fine and the connection it's correct:
As you can see below the user is already created and I can even connect from the server to the database:
Try applying what you say in this question: ORA-01017 Invalid Username/Password when connecting to 11g database from 9i client but no change my problem
Update: for some reason the changes I am making through the console I am not seeing with the SQL Developer client, I do not understand why this happens, attached evidence, where you can see that the user cesar created through the console is not visible on the server

Related

Unable to create new connection in Oracle SQL Developer

I'm new and just started Oracle. I installed Oracle SQL Developer[Version: 19.2.1.247] and now I want create new connection but I'm not able to create and found an error like :
Status : Failure -Test failed: ORA-01017: invalid username/password; logon denied.
I am sure about I didn't made a mistake into entered wrong or incorrect credential. if I am so please tell me about that and also tell me the solution to solve this error.
check attachment below.
Well your error message is straight forward. The connection details (username & password) are incorrect. The solution for this error is simple --> enter the correct credentials.
Now, you said that you have installed SQL-Developer. SQL-Developer is just a tool (program/software) used for accessing a Database. In this case, my question would be: do you have a database to which you want to connect to? Based on your screenshot, I see that you are using the default HOSTNAME/SID/PORT, meaning that you either forgot to enter your Database details or you created a username on your local Database (created when you have installed ORACLE Client and followed all those instructions).
If you are trying to connect to an already created Database, make sure that the HOSTNAME/PORT/SID are the ones belonging to the Database and not the standard one.
If you created a username on your local database, then you either forgot your password or you used some invalid characters which can no longer be used right now. Try resetting the password of that user, using another user (via ALTER USER) or using the SQL Developer (right click - Reset Password) with your old password.

How to connect to an Oracle database (in Azure Data Factory) using proxy user authentication / connect through?

I'm looking for some help in figuring out the correct syntax to connect to Oracle from ADF using a proxy user authentication.
The setup is:
An integration runtime has been setup to connect to an on-premise Oracle instance
The connection type is on Oracle Service Name
User name and Password are provided.
When simply using the user name / password combination the connection can be established, and the tables in the (proxy) user schema can be viewed.
However, these are not the correct tables as the setup in the Oracle instance is using connect through / proxy user authentication. Usually, the syntax for login is username[schema-you-want-to-work-with] for this but this does not work in Azure Data Factory for me.
I have tried various syntax attempts in the connection JSON, using additional connection properties but not luck. The error message, when logging in with the proxy user authentication, is always
ERROR [28000] [Microsoft][ODBC Oracle Wire Protocol driver][Oracle]ORA-01017: invalid username/password; logon denied ERROR [28000] [Microsoft][ODBC Oracle Wire Protocol driver][Oracle]ORA-01017: invalid username/password; logon denied Activity ID: da224af9-16ad-4674-a4c9-4811be8f726c.
Logging in with SQL Plus or SQL Developer works with the same connection string.
Does anyone have an idea how I can log in with the proxy user and see the normal schema content? I'm thinking it may just be a syntax issue but I'm out of ideas.
Basic successful connection
Unsuccessful connection with connect through

Oracle SQL Developer fails to connect to Oracle Database while SQL*Plus works

I'm trying to connect to a Oracle database on a development server with my local Oracle SQL developer (17.4.1.054).
When I try to connect I get the following error: ORA-0107: invalid username/password; logon denied
Using the very same credentials on the sqlplus (after connection via ssh to the server) works perfectly fine.
The credentials are like: ORA/ora.
After thinking about it, I've other connections on same database with credentials like ora123/ora123 and ORA123/ORA123 that are working fine.
Is there any issue with case sensitive passwords in SQL developer?
Is there any way to overcome this issue?
Trying changing database parameter SEC_CASE_SENSITIVE_LOGON to false and they try login.
I think the clue is
after connection via ssh to the server
Sounds to me like the problem is the network connection from your local machine to the database server, and not SQL Developer or SQL*Plus.
You can verify that by installing an instant client with the SQL*Plus package on your local machine.

Restrict JDBC connection to Oracle server

I have a oracle server which is our disaster recovery server. When I failover my application from primary site to secondary site, we have a downtime window during which we have to bring up the secondary site. When bringing up the application on the secondary site I am getting below error
java.sql.SQLException: ORA-01017: invalid username/password; logon denied
However, when I try to connect from the SQLPLUS it connects successfully with same username and password but it does not work with JDBC. In order to zero on the issue I tried connecting with SQL Developer with same username and password and it shows the same error.
Can somebody please advice what could the setting be on the oracle server which restricts the JDBC connections?
There is the below setting in the oracle database in sqlnet.ora file
SQLNET.ALLOWED_LOGON_VERSION=12
after commenting the above it worked.

Pentaho error-Error connecting to database: (using class oracle.jdbc.driver.OracleDriver)

While using an SQL select query in a table input step in pentaho DI CE version 4.3, though following error pops up:
Error connecting to database: (using class oracle.jdbc.driver.OracleDriver)
ORA-01017: invalid username/password; logon denied
On rechecking, both the username and password are correct. All connection details like host name, database name, port, etc. are also set correct. The database to be connected to is an Oracle 10g via native access (JDBC). The drivers are also matching, but this error still arises randomly. Sometimes it does, sometimes not. Any ideas?

Resources