How could I unlock the account HR in Oracle SQL Developer?!

Hi Everybody! I am new with using ORACLE SQL Developer! and I just wanted ask how could I solve this problem: "ORA-28000 The account is Locked!" Please anyone can help me?? As I know, When you just need to make a new connection, you have to type "hr" as your username, and password! I hove done that many times, but it didn't work :(( I have also installed Oracle XE g11 and it seems that there is no problem with it, BUT my problem with the first program "Oracle SQL Developer!" PLEASE anyone can reply???
Edited by: 894546 on 02-Nov-2011 14:09

Hi,
Apparently you have both SQL Developer and Oracle 11g XE installed, but is not entirely clear if you know how to create a connection. If not, you should first read the SQL Developer tool's Help|Table of Contents|SQL Developer Concepts and Usage|Getting Started... help.
Or use the Documentation tab at http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html
Anyway, since you installed 11g XE, you should remember the password you picked for the SYS user. Launch SQL Developer, create a connection for SYS (whose role must be set to SYSDBA) using host=localhost, port=1521, sid=xe (these are all defaults and I doubt you overrode any of them). Once that connection exists, just follow Timo's instructions from his initial post. Let me repeat them, hopefully without typos, and in a bit more detail:
1) Open your SYS connection in the Connections view
2) Expand it, scroll down to the Other Users node in the tree
3) Right-click on the HR node, click on Edit User... from the context menu
4) Uncheck the Account is Locked checkbox in the Create/Edit User dialog
5) Click on the Apply button at the bottom of the dialog
or
1) Open your SYS connection in the Connections view
2) From the Worksheet, execute ALTER USER HR ACCOUNT UNLOCK
Now your HR connection should no longer display an account locked message when you try to open it.
Have fun,
Gary
SQL Developer Team

Similar Messages

  • HT201328 I've purchased a used  iPhone 3g via similar site like eBay in Hungary.The phone is legal but no invoice was included.How could I unlock the phone?

    I've purchased a used  iPhone 3g via similar site like eBay in Hungary.The phone is legal but no invoice was included.How could I unlock the phone?

    cv.references wrote:
    How could I unlock the phone?
    ONLY the Carrier it is Locked to can unlock it.
    No one here will know who that Carrier is.
    The iPhone 3G can only run iOS 4.2.1

  • How could I changed the permisson to allow oracle user to do FTP

    Hello All,
    I am doing FTP from sun box to SuSE linux -- /usr/local/bin/wits.
    I'd like to FTP files from Sun box--- /usr/local/bin/wits to SuSE Linux ----/usr/local/bin/wits.
    FTP
    get
    filename (remotely & locally)
    permisson deniedIt says permisson denied.
    On other hand I am able to FTP in /tmp.
    How could I changed the permisson for /usr/local/bin/wits to allow oracle user to do FTP in above directory?
    oracle@dhshrwits:/usr/local/bin> ls -l
    total 12
    -rwxr-xr-x 1 oracle root 2316 2004-08-31 22:32 coraenv
    -rwxr-xr-x 1 oracle root 2415 2004-08-31 22:32 dbhome
    -rwxr-xr-x 1 oracle root 2548 2004-08-31 22:32 oraenv
    drwxr-xr-x 2 root root 48 2004-10-01 08:38 wits
    Regards,
    D

    login as root and chown wits to oracle

  • How do I unlock the account bound?

    Upgrade 6.0, my MSN account with SKYPE account the binding, but because of operational problems, I bind the wrong account, now need to unbundling, to ask how to operate?
    skype account: ewtto.40

    Go here to reset your password.  Then you can reset your security questions after logging in.
    If that doesn't work, contact Apple ID Support.

  • How do I reset the security questions? And how do I unlock the account.

    I just got the iPhone 4s and wanted to get music. Well it was asking for security queation answers that I put in and it kept saying it was wrong. So now I'm blocked out of iTunes and cant download music. Help me please...

    Go here to reset your password.  Then you can reset your security questions after logging in.
    If that doesn't work, contact Apple ID Support.

  • How i found listener o tsnames in oracle sql developer

    Jelou, i have some troubles with the Oracle SQL Developer, i have a server with Oracle 11g, but the client (sql developer) dont connect to the server, they give me a error, the oracle error i try to search in the search pages, but they dont have a answer.
    I try to search the listener and the tsnames files, but i dont found the files, i working in Windows 7 in 32bits,
    The Oracle error is ORA-12518.
    I put a picture about error,
    [http://picasaweb.google.com/lh/photo/2dpHUn5kEIfxMDqPFM9DxpmLdaXzuCybZLuf45HwREU?feat=directlink]
    Thanks for the help,
    Edited by: user13373417 on 07-Jul-2010 08:50

    user13373417 wrote:
    Your answer is about the function to database, or for the client, because i have the trouble with the client, i used Oracle sql Developer (the last version put in oracle) in windows 7
    ok, but how i found the listener o the tsnames, because i searching in all disk (c) but i dont found them, or how i can turn on the listener o whe is the directory when i put the files, because the installation dont have the /network/adm for put the files
    Edited by: user13373417 on 07-Jul-2010 09:06It appears you don't have a very clear understanding of how the client and the server are configured to communicate with one another.
    ============
    A couple of important points.
    First, the listener is a server side only process. It's entire purpose in life is to receive requests for connections to databases and set up those connections. Once the connection is established, the listener is out of the picture. It creates the connection. It doesn't sustain the connection. One listener, running from one oracle home, listening on a single port, will serve multiple database instances of multiple versions running from multiple homes. It is an unnecessary complexity to try to have multiple listeners. That would be like the telephone company building a separate switchboard for each customer.
    Second, the tnsnames.ora file is a client side issue. It's purpose is for address resolution - the tns equivalent of the 'hosts' file further down the network stack. The only reason it exists on a host machine is because that machine can also run client processes.
    Assume you have the following in your tnsnames.ora:
    larry =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = curley)
      )Now, when you issue a connect, say like this:
    $> sqlplus scott/tiger@larrytns will look in your tnsnames.ora for an entry called 'larry'. Next, tns sends a request to (PORT = 1521) on (HOST = myhost) using (PROTOCOL = TCP), asking for a connection to (SERVICE_NAME = curley).
    Where is (HOST = myhost) on the network? When the request gets passed from tns to the next layer in the network stack, the name 'myhost' will get resolved to an IP address, either via a local 'hosts' file, via DNS, or possibly other less used mechanisms. You can also hard-code the ip address (HOST = 123.456.789.101) in the tnsnames.ora.
    Next, the request arrives at port 1521 on myhost. Hopefully, there is a listener on myhost configured to listen on port 1521, and that listener knows about SERVICE_NAME = curley. If so, you'll be connected.
    What can go wrong?
    First, there may not be an entry for 'larry' in your tnsnames. In that case you get "ORA-12154: TNS:could not resolve the connect identifier specified" No need to go looking for a problem on the host, with the listener, etc. If you can't place a telephone call because you don't know the number (can't find your telephone directory (tnsnames.ora) or can't find the party you are looking for listed in it (no entry for larry)) you don't look for problems at the telephone switchboard.
    Maybe the entry for larry was found, but myhost couldn't be resolved to an IP address (say there was no entry for myhost in the local hosts file). This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe there was an entry for myserver in the local hosts file, but it specified a bad IP address. This will result in "ORA-12545: Connect failed because target host or object does not exist"
    Maybe the IP was good, but there is no listener running: "ORA-12541: TNS:no listener"
    Maybe the IP was good, there is a listener at myhost, but it is listening on a different port. "ORA-12560: TNS:protocol adapter error"
    Maybe the IP was good, there is a listener at myhost, it is listening on the specified port, but doesn't know about SERVICE_NAME = curley. "ORA-12514: TNS:listener does not currently know of service requested in connect descriptor"

  • Basically... I had an ipod touch sync'd to my dads i tunes.. i then got an iphone and created my own apple id.. how could i transfer the media from my ipod which was used on a different apple id onto my own account without everything deleting

    basically... I had an ipod touch sync'd to my dads i tunes.. i then got an iphone and created my own apple id.. how could i transfer the media from my ipod which was used on a different apple id onto my own account without everything deleting

    Syncing an iDevice to a computer does not remove content from the computer.
    Syncing an iDevice to a computer that it does not normally sync with will remove the content from that device.
    If the media was acquired with a different Apple ID it is in no way linked to your Apple ID.

  • Dear Customer Service Team,  I bought a twelve-month Dreamweaver CC program with monthly payment that I have paid via bank transfer and there would be a question about the activation. How could I get the license key with which I can activate my account? I

    Dear Customer Service Team,
    I bought a twelve-month Dreamweaver CC program with monthly payment that I have paid via bank transfer and there would be a question about the activation. How could I get the license key with which I can activate my account? I can not find it and now I only have access to the trial version.
    Thank you for your help in advance.
    Kind Regards,
    G. Zsolt

    There is no serial number require for Creative Cloud products, you may activate the products using your email address and password which is associated with Adobe. If your Dreamweaver asking for serial number, then make sure you are signing in with correct email address.
    You may also refer below link
    Sign in, activation, or connection errors | CS5.5 and later

  • How could I spend the 0.88 $ in my account ?

    hello , first I have to change my country to kuwait instead of Us , and can't do that because it asked me to spend the 0.88 $ which is left in my account .
    the question is : how could I spend the last 0.88 $ in my account ?

    Click here and ask the iTunes Store staff to zero your account balance.
    (125424)

  • How can I unlock the copy protection of songs that I've acquired some years ago with an old - and non existing anymore - account? Can I link the songs to my new account or do I have to purchase them again?

    How can I unlock the copy protection of songs that I've acquired some years ago with an old - and non existing anymore - account? Can I link the songs to my new account or do I have to purchase them again?

    If you're in the US, you will be able to use iTunes Match for $25 a year to remove copy protection in a few months: http://www.apple.com/icloud/features/
    If you're not, you can't.  You can authorise iTunes with the old account in addition to your current account, so all your songs will play, but I'm not sure what will happen if you try to sync them to an iPod.

  • My phone was run over. It still works but the screen is smashed and I cannot unlock the phone from find my iphone. How can I unlock the phone so I can save my photos?  It was not backed up in iCloud. I

    My phone was run over. It still works enough to see some of the screen but not the number pad. I cannot unlock the phone because I activated find my iphone. How can I unlock the phone so I can save my photos? Is there a way to unlock it from find my iphone. It was not backed up in iCloud. When I plug it into my computer, the computer tells me that I have to unlock it first. Help?

    No I haven't synced my iPhone with the computer I'm currently using. The computer that I normally sync my iPhone with is being repaired.
    I read a nearly identical question to mine (in which you answered) and I found my the answer. Thanks!
    Now I have a few more questions: If I mail my broken iPhone to Asurion, will I be able to get my data off of my iPhone once Asurion has it? And what will happen to my old iPhone and the data on it if I activate my replacement iPhone? Will my broken iPhone just become de-activated and will the data be erased or lost or something? Could I still sync it (with the computer ir originally synced with) and back up the data?
    Thanks.

  • I bought a used iphone from a friend and I am not able to use it in Ethiopia. It is carrier blocked. Can you please help how could I unlock my iphone 4?.

    I bought a used iphone from a friend and I am not able to use it in Ethiopia. It is carrier blocked. Can you please help how could I unlock my iphone 4?.

    Unlikely as you do not meet there requirements for unlocking.
    Have your friend the provided the phone contact them.  Based on your statements I am concluding he was or still is an AT&T customer, that is one of the requirements of getting the device unlocked.

  • I got a Iphone 4S internet like free(UNLOCK) but is not... This Iphone is lock with Orange (SPAIN) How can I unlock the Iphone now¿?

    I got a Iphone 4S internet like free(UNLOCK) but is not... This Iphone is lock with Orange (SPAIN) How can I unlock the Iphone now¿?

    "Ok, but Whats happen if the carrier said that I need the first contract personal information.."
    Then you need the first contract personal information.
    " I Know that all the companys have to unlock de phone... ¿?¿?"
    Not true.
    "Apple could help me then¿?¿? unlocking the Iphone beacuse Apple always have the last word...
    No.  Apple has no part in the decision ot lock or unlock at all.  Lock/unlock is 100% the decision of the carrier.  Apple has nothing to do with this decision.

  • If I have an old iPhone 4 that is not factory unlocked how could I unlocked? Don't want any anymore to jailbreak it

    If I have an old iPhone 4 that is not factory unlocked how could I unlocked? Don't want any anymore to jailbreak it

    I have looked around here. And I've actually in person helped a number of people clear a jailbreak from an iPhone and they work fine. The OPs biggest hurdle is likely to be the process of obtaining an unlock from the cell provider.
    The mistake many people make is waiting to Restore until the unlock is approved. They should Restore prior to even getting the unlock approval then do it again after they receive it.
    As most people know who have been here awhile we see the ones who have problems, not the ones who have successfully done the process.
    If you go by ASC noone would ever buy an iDevice.

  • Can somebody tell me how could I unlock my disabled Iphone 5S?

    Can somebody tell me how could I unlock my disabled Iphone 5S?

    Restore the iPhone
    This is covered in the manual and asked and answered on these forums many times each day.
    Also a simple google search will find the apple article explaining how to do this.

Maybe you are looking for

  • Error message - no disk in drive

    On opening Elements 9 (& also when trying to save) I get the following error message. "There is no disk in the drive. Please insert a disk into drive E:." I have tried reinstalling, but to no avail. Please help!

  • Cannot Install iTunes Windows 8 after Uninstall

    I have a Windows 8 machine with all the updates, and a couple months ago iTunes stopped updating.  It was running, but it just would not update.  I decided to re-install it, and now I get the error below.  I have used Revo Uninstaller to remove every

  • HELP: can't create datafile.

    Hi, friends, I installed Oracle 10.2.0 one hour ago. Then I tried to create a tablespace. In this tablespace, I add one datafile, the size is 5GB. I used OEM to do this. But I don't know why the creating procedure still running. Based on my experienc

  • JVMPI shows "unknown line"

    hi, I am using <b>java -Xrunhprof:cpu=times myclass</b> to find the bottleneck of my application. I expected to see which method calls used most cpu. But the results contains all "unknown line" like this: <i>TRACE 45: java.lang.String.valueOf(<Unknow

  • New HD Backup to Time Machine

    I have been using Time Macine for a long time to backup my HD. My HD was dieing, so I used Carbon Copy Cloner to make a bootable backup. I replaced the internal HD and using CCC again copied back to the new HD. I gave the new HD the same name as the