OEM 10G and ORA-28000: the account is locked

windows xp 2; 10G base
Get ORA-28000: the account is locked when starting database from the browser?
TIA

first open the account and change password
in sql plus conn / as sysdba
SQL> alter user scott indentified by tiger account unlock;
then try to login

Similar Messages

  • SQL*Loader-128: unable to begin a session ORA-28000: the account is locked

    Hi everyone,
    I am migrating from a SQL Server 2000 DB to Oracle 10g. I followed the migration tutorial and got all the way till the data migration process. The DB data capture scripts capture the data from the SQL Server successfully but i encounter the following error while i run the oracle_ctl.bat file on the Oracle side:
    SQL*Loader: Release 10.2.0.1.0 - Production on Tue Jun 9 14:08:27 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL*Loader-128: unable to begin a session
    ORA-28000: the account is locked
    I checked the account and its unlocked and the user name/password combination is the correct one. All the log files have the same error messages. The user has all the required privileges.
    Any ideas why this might be happening ?
    Thanks,
    Amo.

    Hello,
    there may be several causes for this:
    1) account in grace period, it can login to sqlplus but could not logn with sqlldr
    2) kind of user being specified (sys as sysdba for example)
    Could you please paste first lines of modified batch file and
    output from select user and status in dba_users ?
    Try anyway to run the unlock command
    ALTER USER username ACCOUNT UNLOCK;
    Thanks
    Regards,
    Marcello
    Edited by: MGILIBER on Jun 12, 2009 3:02 AM

  • ORA-28000: the account is locked Error

    Hello ---
    I'm trying to set up a data source to an 11g DB from WLS 11gR1. When I go to test it I get the following error even though the account is definitely not locked :
    weblogic.application.ModuleException:
    at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:290)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:507)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:149)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: ORA-28000: the account is locked
    at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(XAConnectionEnvFactory.java:479)
    at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(XAConnectionEnvFactory.java:173)
    at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1193)
    at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1117)
    at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.java:244)
    Truncated. see log file for complete stacktrace
    Any ideas? Thanks!

    Hi. Please add your details to this program and run it in that environment.
    Thanks,
    Joe
    import java.sql.*;
    import java.util.*;
    import javax.sql.*;
    import java.lang.reflect.Method;
    public class thinXACon {
    public static void main (String argv[]) {
    String UserName = "myUser";
    String Password = "myPassword";
    String SID = "mySID";
    String ServerName = "myDBMSBox";
    String PortNumber = "1588";
    String URL = "jdbc:oracle:thin:@" + ServerName + ":" + PortNumber + ":" + SID;
    try {
    // load XA driver and get connection
    oracle.jdbc.xa.client.OracleXADataSource ods = new oracle.jdbc.xa.client.OracleXADataSource();
    initProp(ods, "User", UserName);
    initProp(ods, "Password", Password);
    initProp(ods, "SID", SID);
    initProp(ods, "PortNumber", PortNumber);
    initProp(ods, "ServerName", ServerName);
    initProp(ods, "URL", URL);
    XAConnection xaConn = ods.getXAConnection();
    } catch (Exception e) {
    e.printStackTrace ();
    private static void initProp(Object ds, String propName, Object value) {
    try {
    Method[] meths = ds.getClass().getMethods();
    Method meth = null;
    String setterName = "set" + propName;
    Class paramType = null;
    for (int i = 0; i < meths.length; i++) {
    if (meths.getName().equalsIgnoreCase(setterName) &&
    meths[i].getParameterTypes().length == 1) {
    meth = meths[i];
    paramType = (meths[i].getParameterTypes())[0];
    break;
    if (meth != null) {
    Object val = value;
    if (value instanceof String) {
    if (paramType == int.class) {
    val = Integer.valueOf((String)value);
    } else if (paramType == boolean.class) {
    val = Boolean.valueOf((String)value);
    meth.invoke(ds, new Object[]{val});
    } else {
    meth = ds.getClass().getMethod(
    "setProperty", new Class[]{String.class, Object.class});
    meth.invoke(ds, new Object[]{propName, value});
    } catch (Exception ignore) { }

  • ORA-28000: the account is locked error getting frequently

    Hi Team,
    We are getting ORA-28000: the account is locked while login.We unlocked the user and we tried to change the password as well but no luck.Can anyone please suggest on this..
    My db version is 10.2.0.3.0
    Thanks
    Edited by: Nabin on Nov 26, 2012 3:20 AM

    ORA-28000
    Error: ORA-28000: the account is locked
    Cause: The user has entered wrong password consequently for maximum number of times specified by the user's profile parameter FAILED_LOGIN_ATTEMPTS, or the database administrator has locked the account.
    Action: Wait for PASSWORD_LOCK_TIME or contact the database administrator
    To unlock an user manually:
    ALTER USER username ACCOUNT UNLOCK;
    to change his password:
    alter user username identified by new_password;
    Edited by: Fran on 26-nov-2012 3:22

  • ORA-28000: the account is locked  Connection : false

    Now if I chnage my java code a little bit I am getting this error.
    ORA-28000: the account is locked
    Connection : false
    Connection is not established.
    Please can someone explain what is wrong here?

    ORA-28000
    Error: ORA-28000: the account is locked
    Cause: The user has entered wrong password consequently for maximum number of times specified by the user's profile parameter FAILED_LOGIN_ATTEMPTS, or the database administrator has locked the account.
    Action: Wait for PASSWORD_LOCK_TIME or contact the database administrator
    To unlock an user manually:
    ALTER USER username ACCOUNT UNLOCK;
    to change his password:
    alter user username identified by new_password;
    Edited by: Fran on 26-nov-2012 3:22

  • ERROR - ORA-28000: the account is locked

    I've successfully installed Oracle 10g standard edition in my PC...And when i tried to log in into isql plus environment with user name scott and password tiger it flashes ORA-2800 error and shows that the account is locked...pls tell me what to do to unlock that account and so that i can work in ISqlplus environment....

    Hello,
    there is a space after /
    sqlplus / as sysdba will work since 9i before you it should sqlplus "/ as sysdba"
    look on the spaces.
    I will also suggest to alter user <username> identified by <password> account unlock;
    The reason is why ? Id like default passwords on systems.
    regards
    Peter

  • ORA-28000 The account is locked periodically

    Hello,
    First all i would like to say that i'm really new in the oracle world..
    In our infraestructure(OHS/OAS/ODB) we have periodically lock of the account used to integrate the most important datas in the databases, after put a trigger in the database we can only get source ip and process user who locked, is posible to obtain more information about the lock like process name pid, etc..?
    Where can i get detailed information about pool connections from the OAS servers?
    After analyse our last lock, i see that first logon deny come from an OAS server and nexts from the database with local user oracle.. any idea?
    thanks in advance

    Hi;
    As Werner mention best approach is enable aduting
    User login audit
    Number to user login during a period
    Regard
    Helios

  • Could not create pool connection.  ORA-28000: the account is locked

    hi
    here what i did
    i was running my ADF page on 11g weblog normally and i tried to deploy it, and this error occured when deploying it
    and also now i cannot run my page from JDeveloper and the same error occure too
    please so so so urgent
    thanks

    This can happen on the first launch of the application on a reel weblogic server.
    This code will solve your problem. As SYSDBA :
    ALTER USER yourUserName ACCOUNT UNLOCK;
    regards
    Luc-

  • ORA-28000: The account is locked

    hi, all I've tried to connect to db as sys more then 10 times and now I am banned^).
    But I tried this to know how much time it will take:
    SELECT * FROM DBA_PROFILES
    WHERE profile = 'DEFAULT' AND resource_name = 'PASSWORD_LOCK_TIME'
    UNLIMITED
    What should I do? Now I am working as SYS with sysdba privileges.

    Hi,
    Use
    SQL> alter user "USER" account unlock.
    Regards
    Jafar

  • Thread: ERROR - ORA-28000: the account is locked

    i installed oracle 10g. but it shows this error

    suresh.m2015 wrote:
    i installed oracle 10g. 10g?
    Really?
    Why?
    Why not 11g (which you were trying to install in your previous thread: Re: Error in instaling oracle 11g in win7
    And where did you get a copy of 10g, seeing as it is not publicly available.
    but it shows this error

  • Help required with Ora-28000 Error, Account is Locked

    Hello all,
    I have an user who is getting ORA - 28000, Account is Locked Error, while connecting to an instance, she has connected to this instance successfully several times earlier. Myself and several other users are able to connect to the same instance.
    How to resolve this issue and help the user to get connected to that instance successfully, please advise me.
    Thanks a lot for cooperation in advance.
    Regards,
    Suranjita

    You can run the following in sql plus
    alter user username account unlock;
    to unclock the account
    Regards

  • ORA-28011: the account will expire soon; change your password now

    ORA-28011: the account will expire soon; change your password now
    i am facing this error at the the time of form compilation as per forum solution i tried but same error lands.
    In my form Dblink is used when i comment that query in which the dblink is used the form run successfully.
    But i want dblink query also when i have been fired this query or includind dblink query and compiling the form the errors came
    What is the solution for that error[ORA-28011]?
    In my form, code is as follow-
    BEGIN
    update pf.pf_master_personal_dtl
    set emp_pan_no = (select pan_num
    from sapsr3.zhrupdate@vhp_link
    where pan_num is not null
    and to_number(emp_num) = pf_num)
    where emp_pan_no is null
    and pf_num in (select to_number(emp_num) from sapsr3.zhrupdate@vhp_link);
    COMMIT;
    END;
    Thanks & Regards,
    Sachin Wagh

    Hi i am using oracle 9i database for sapsr3 user
    SELECT RESOURCE_NAME,LIMIT
    FROM dba_profiles
    WHERE PROFILE='DEFAULT'
    AND RESOURCE_NAME='PASSWORD_LIFE_TIME';
    I cheked this query i got here output as - LIMIT = 180
    how i will change LIMIT to 'UNLIMITED' IN Oracle 9i database for user sapsr3
    Because when i executed below ALTER query for sapsr3 user for oracle 9i database
    ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
    It's gives error as "ORA-01031: insufficient privileges"
    kindly suggest
    Regards,
    Sachin Wagh

  • HT204187 Email account does not work on the Mac but works on my iPad and iPhone. The account information was added on the Mac. I keeps rejecting my password.

    I have seral email accounts on my Mac. One does not work on the Mac but works on my iPad and iPhone. The account information was added on the Mac. I keeps rejecting my password.

    You don't input the information in manually for iCloud mail. It is automatically set up for you when you sign into iCloud via System Preferences and choose the Mail checkbox. Sign out of iCloud or deselect Mail in iCloud preferences. Open Mail's preferences and choose accounts tab. If iCloud account still exists in the list, delete it. Sign back into iCloud or check the box for mail. The account will be auto created for you.

  • OEM 12c and OVM on the same box?

    Hi Guys and Girls!
    Thank you in advance for your support!
    Could you please share you experience, best practices and gotchas with installing OEM 12c and OVM on the same OL 5x box?
    We would like to install OEM 12 R2 on a OL57 server with an existing production (Oracle DB SE 11.2.0.3.0) Oracle VM Manager 3.1.1.625 installation.
    Some questions:
    1- Does Oracle support OEM and OVM on the same server?
    2- If Oracle VM Manager and the SE DB are already installed on an OL 57 server in /u01/app/oracle/product, can OEM 12c R2 be installed into /u01 as well, or should we use a different directoty, i.e. /u02?
    3- Will the OEM 12c installation program be able to use the same DB as Oracle VM Manager, i.e., its just creates the OEM DB schema and goes on its mary way without harming the Oracle VM Manager DB schema?
    Thank you,
    Roddy

    Alessandro,
    Thank you for your reply!
    The irony with my OEM and OVM on the same box question is that the Oracle Sales & Support teams as well as public Marketecture has been recommending collocating OEM & OVM!
    I agree with you 100% about resource consumption, and considering how often we must restore/reset Oracle VM Manager I am curious how supportable an OEM & OVM install is on the same box. 99% of my customers are not interested in supporting MySQL, i.e. the DBAs know Oracle not MySQL. As long as Oracle VM Manager resets (DB deletes) and UUID restores (uninstalls and re-installs)  will not damage OEM its all good.
    Thanks again for your support!
    Roddy

  • HT4623 My sister has given me an old iPod touch 2 I think it is and after resetting the account info to mine the content was wiped and can not load any games now as it runs 3.1.3 and there all saying they need iOS 5 how can I update it to this

    My sister has given me an old iPod touch 2 I think it is and after resetting the account info to mine the content was wiped and can not load any games now as it runs 3.1.3 and there all saying they need iOS 5 how can I update it to this

    I suspect you have the original, 1G iPod touch. Those can only go as high as iOS 3.1.3,
    If y ohave a 2G those can go as high as 4.2.1
    Identifying iPod models
    To update
    The Settings>General>Software Update comes with iOS 5 and later.
    Connect the iPod to your computer and update via iTunes as far as your iPod model allows
    iOS: How to update your iPhone, iPad, or iPod touch
    A 2G to 4.2.1. Requires iTunes version 10.X. If a Mac it requires OSX 10.5.8 or later.
    To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Vintapps 3.1.3 - paid app.
    Apple Club - filter apps by iOS version.

Maybe you are looking for

  • 5530 firmware update found but not compatible?

    Hi,  the phone is a french 5530 (no fimlock, no netlock, a free phone), a firmware update is found from nokia, i can download it from the phone. Then it restarts the phone, and a white screen appears with the update bar. But then it just restarts and

  • LoginContest maintains state?

    I have written a custom LoginModule to authenticate a client's x509 certificate against OID. My client is a java class that calls a jsp page - the jsp page grabs the cert info and calls the LoginContext as follows: LoginContext lc = null; Subject sub

  • Table disappears as entered data reaches bottom of the page

    Hi All, Mac newbie so be nice to me lol. Imported a doc from Office 2007 (boo hiss) Has a table with 3 columns, as I enter data into each column in Office as I reach the bottom of the page a new page is created and the table just carries on into the

  • Shutting off....only when plugged in.

    I know there are a lot of posts out there about the ibook shutting off, but mine has some peculiarities I didn't see in others, so before I take my computer apart as was the conclusion here http://discussions.apple.com/thread.jspa?threadID=1082138&ts

  • Can't log-off from Leopard, stuck at log-off screen

    I installed Leopard on a stock Mac mini 1.5GHz and it seemed to work just fine, all(most) my apps ran just fine, I was able to get the latest update and restart. Then I decided to Log-off and it just gives me the blue screen and the spinning circle f