ORA-28000: the account is locked error getting frequently

One of the reasons of your problem could be the password policy you are using. And if there is no such policy of yours then check your settings for the password properties in the DEFAULT profile with the following query: SELECT resource_name, limit FROM dba_profiles WHERE profile=”DEFAULT” AND resource_type=”PASSWORD”; And If required, you just need … Read more

How to import an Oracle database from dmp file and log file?

How was the database exported? If it was exported using exp and a full schema was exported, then Create the user: create user <username> identified by <password> default tablespace <tablespacename> quota unlimited on <tablespacename>; Grant the rights: grant connect, create session, imp_full_database to <username>; Start the import with imp: imp <username>/<password>@<hostname> file=<filename>.dmp log=<filename>.log full=y; If … Read more