Oracle SQL Developer Create new connection Error message: Test failed: ORA-01017: invalid username/password; logon denied - oracle

I'm trying to create a new connection in SQL Developer (following homework's instructions), as requested I have filled in the information, but it keep reporting error message when I tried Test and Status shows this error message:
Status : Failure -Test failed: ORA-01017: invalid username/password;
logon denied
enter image description here
I searched and some people said should go to TNSNAMES.ORA file look for names and password, but I don't see my TNSNAMES.ORA file has these information
enter image description here
enter image description here
Below is what the instruction asks:
enter image description here
I have tried to just come up with the name at the beginning and getting the message, and also search names and password in the TNSNAMES.ORA file but find nothing, not sure how I can get the correct username and password here.
Please indicate the steps of how to find the correct username and password if you know, and it has to be tested and show status success.
Thank you

This is a not a tnsnames.ora problem.
If you get ORA-1017 it means you successfully made contact with the database, ie, the database is open, it is responding to requests via the listener. Everything is working fine.
However, your username or password is incorrect which is why you cannot get onto the database.
One cause might be because you have chosen SYSDBA as the connection type - I suspect that GENUSER is a normal user not a SYSDBA, so change that.
Also, passwords are case sensitive so double check that as well.

Related

Run Fetch xml report in borowser shows the Following Error

Check Report in Browser show the following error:
In Plugin show this Error:
System.Data.SqlClient.SqlException: Cannot open database "MSCRM_CONFIG" requested by the login. The login failed.
Login failed for user 'NT AUTHORITY\SYSTEM'. ---> Microsoft.Crm.Reporting.DataExtensionShim.Common.ReportExecutionException: Cannot open database "MSCRM_CONFIG" requested by the login. The login failed.
Login failed for user 'NT AUTHORITY\SYSTEM'.
It looks like credentials mismatch. Check your reporting service, it should run on behalf of the user who has access to Dynmaics CRM instance it is supposed to work with.

OrderCloud.io - Change Password issues

I'm developing a app where I need to change the password of the logged in user. where I don't need OrderCloud.PasswordResets() which will send email to my mail. I need to change the password without triggering email.
I followed below approach but I'm getting error:
OrderCloud.Me.Patch({"Password": "1234567889"});
Response:
{"Errors":[ {"ErrorCode":"IdExists","Message":"User already
exists.","Data":null} , {"ErrorCode":"InvalidRequest","Message":"User
already exists.","Data":null} ,
{"ErrorCode":"ServerError","Message":"An unknown error has occurred on
the server.","Data":null} ]}
Request URL:https://api.ordercloud.io/v1/me
Edit: Upon further investigation, this error would be thrown if somehow you have users with duplicate usernames under the same organization. If you remove the duplicate usernames and try again, your issue should be resolved.
You should format your request like this, without the quotes on Password:
OrderCloud.Me.Patch({Password: "1234567889"});

Detect invalid login error for Parse user?

Is there any way to tell on the client side if a users credentials are invalid? When I intentionally break a users credentials (change username), they are getting an generic error 101 (kPFErrorObjectNotFound). How can I prompt a user to resolve a a legitimate account issue?
I get the security implications of oversharing with error codes, but even a general "something is wrong with authentication" would help. Maybe there's no harm is prompting after error 101, but I'm not when else that error is used.
You could add a cloud function that you call and it checks if it has a user. If the user is correctly logged in then the passed token is converted into a user for the cloud code to access. Your cloud code can then return a simple response code which indicates if the login is valid or not.

Can't access Windows 2000 UNC path anymore

For a long time, we've been able to access our Windows 2000 server using this method:
\10.0.0.18\d$ (typed in winexplorer) ... and here we enter an adminusers username/password and gain access..
But all of a sudden, we can no longer access it. Ive checked the users on the server, they are not locked out or anything. I've tried restarting the server, but It didn't help.
Event viewer on server gives 2 eventid 529s:
Login Failure:
Reason: Unknown user name or bad password
and
The logon to account: administrator
by: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
from workstation: blabla
failed. The error code was: 3221225578
Ive checked the errorcode, it means the user does not exist.. weird!! :-(
... I can't understand why it says this - even if I create a new user for the occation, this is what it says.. It's like the server can't find any of the users.
Anyone seen this before?
Seems it was because of the clock on the server ... This post helped me:
https://serverfault.com/questions/249434/access-denied-error-3221225578-with-file-sharing-to-windows-server

SSIS and Oracle Error code: 0x80040E4D

I always get this error: 0x80040E4D. Invalid username/password; logon denied.
I've set the username and password in the package with EncryptSensitiveWithPassword protection level.
I've tried to put the package into the SSIS package store and I've created a config file, but all was useless.
I should have a bit of help, please.
EncryptSensitiveWithPassword is a option to save the package's encrypted data (like the oracle's user name and password) so If someone tries to execute the package without providing the password, package execution fails.
I think you have issues on your config file, maybe the information sensitive information is not being loaded from it.

Resources