0

I create user with

CREATE USER "C##XXXXX" IDENTIFIED BY "PasWordorSomthingLikeThat"  
DEFAULT TABLESPACE "XXX_TABLE_SPACE"
TEMPORARY TABLESPACE "XXX_TABLE_SPACE_TEMP";

but from oracleSqlDeveloper I can't login into my user And find ORA-01017 Invalid Username/Password when connecting to 11g database from 9i client but he said to change security! is that oracle set this option for the access database useless? what can i do to login my oracle database without change security parameters?

error:

ora-01017 invalid username/password
Farhood Naqizade
  • 102
  • 1
  • 12

1 Answers1

1

The parameter mentioned in your link is not valid for 19c. Try not using quotation marks in your create user command:

CREATE USER C##XXXXX IDENTIFIED BY PasWordorSomthingLikeThat  
DEFAULT TABLESPACE XXX_TABLE_SPACE
TEMPORARY TABLESPACE XXX_TABLE_SPACE_TEMP;

And double-check your connect string to make sure you're connecting to the right CDB or PDB for the account.

pmdba
  • 6,457
  • 2
  • 6
  • 16