HOW CAN I GET USERNAME,PASSWORD,HOST STRING?

I have installed oracle 9i personal edition, when i tried to open sql plus, i was asked to fill username,password and host string. When i type anything it shows error message ora-12154.Is anyone can help me? Thanks

The error you gave can appear for lots of reasons.
You don't give any information about how the install
went - did you check the logs for errors? Have you
shut the machine down since you did the install?
Are you actually running SQL*Plus on the same machine
as the database? Is your database running? Can you
connect using "/ as sysdba"? What hints that even
a simple google search gives did you try?
-- CJ

Similar Messages

  • Reg : How can I get  Username and Password in FTP Server in HANA

    Hi All,
      Any one can you please guide me....How can i get username and Password of FTP Server in SAP HANA?
    Regards,
    Arjun

    Hi Arjun,
    Are you looking for external authentication(External ID option) in HANA Studio instead of logging by entering HANA User and Pwd(which is internal)?
    You can look for the following Security guide which will give you some insight on this.
    http://help.sap.com/hana/hana1_sec_en.pdf
    Rgds,
    Murali

  • DDL statements in v$sql tables, how can i get the password.....

    Hi friends,
    When I create a user by issuing a statement like
    create user abcd identified by xyz;
    user created.
    but, how can i get the password without encryption in the v$XXXXX tables. Is there any dynamic table which stores the statement executed above in the current session, so that I can get the original password given.
    but when selecting the password by the query
    select password from sys.user$
    where name = 'abcd';
    Password
    ==========
    345ISDF9K4590DFJ35
    .........this is not my password(yes it is!) but not understandable..,
    Anybody please, show me the right way or query..,
    Post-Query Thanx..
    Praveenkumar Talla (Pune, India)

    I would hope there is no way to get this data. I wouldn't want a mechanism to grab passwords out of the SGA. Passwords are stored encrypted in the database. If you need to know the password, run another 'alter user username identified by password' and make not of what you changed it to.

  • I have a wi fi network which is bell675, it is asking me for a password but i don't know it, how can i get a password

    how can i get a password for wi fi network BELL675

    There's no way anyone here will know the password to that network. If this is your own home network, the password would be whatever you set up on the WiFi router. If you've forgotten it, you'll have to reset the router. Consult the router documentation. If this is a commercial WiFi network you're trying to access, contact whoever runs the network.
    Regards.

  • HT5624 how can you get your password sent to your email address I do not want to change my password.

    How can you get your password sent to your email address I do not want to change my password.

    If you cannot remember the passcode for the Screen Lock, you will need to Restore the device...
    1)  Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414
    2)  If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/ht4097
    Note on Recovery Mode.
    You may need to try this More than Once...  Be sure to Follow ALL the Steps...
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • How can i get my password and security questions back? everytime i write my mail in iForgot it doesnt send the mail to  my account, why? someone hacked me but i dont know how.

    how can i get my password and security questions back? everytime i write my mail in iForgot it doesnt send the mail to  my account, why? someone hacked me but i dont know how.
    example;
    my apple mail: [email protected]
    and i write down the account in iForgot [email protected] but i never recieve the mail asking for the new password, why? someone hacked me and change that and the security questions, what can i do?

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • HT5569 how can i get a password so that my wi-fi will work?

    How can I get a password so that my wi-fi will work

    The Wi-Fi password is normally found on a sticker on base of router.

  • How can i get separate passwords between Apple and iCloud?

    how can i get separate passwords between Apple and iCloud?

    There the same account at this point so theres no way to segragate the password.
    You could however make an icloud email address that is different then your primary apple ID that you use for messaging and itunes and apps stores but at this point you cant undo the password merge.

  • I already have my computer authorized in my name, but for some reason it is asking for another email authorization password that i dont even have, how can i get that password so that i can play the songs that are secured?

    PLEASE HELP?????   i already have my computer authorized in my name, but for some reason it is asking for another email authorization password that i dont even have, how can i get that password so that i can play the songs that are secured?

    Hi Kazmania89,
    Welcome to the Support Communities!
    If you require additional assistance with this, click on the link below for guidance:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Once you are able to gain access to the old Apple ID, this article may be helpful:
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    I have purchased music, apps, or books with multiple Apple IDs. How can I get all of this content onto my iOS device?

    First, you need to copy all of your purchased content so it is on the same Mac or PC with iTunes. This computer should be the one you sync your device with. For more information on how to move your content, see these articles:
    Mac:  iTunes for Mac: How to copy purchases between computers
    PC:  iTunes for Windows: How to copy purchases between computers
    Next, authorize your computer to play content with each Apple ID in iTunes. Once your computer is authorized for all your content, it can be synced to your iPhone, iPad, or iPod touch. 
    Cheers,
    - Judy

  • How do i get username & password?

    Can anybody help me in solving this problem.
    I have an application,i will give application url to the user.
    My requirement is when user access this url, he needs to get authenticated from ActiveDirecoty, i.e. i should not ask for login & password.
    I need to do authentication by taking system login & password. And display him directly the main page.
    How can i get the system login person username & password,which java package i need to use.i tried using System class but i was unsuccessfull.
    Thanks in advance.

    <%
    String auth = request.getHeader("Authorization");
    if (auth == null) {
    response.setStatus(response.SC_UNAUTHORIZED);
    response.setHeader("WWW-Authenticate", "NTLM");
    return;
    if (auth.startsWith("NTLM ")) {
    byte[] msg = new sun.misc.BASE64Decoder().decodeBuffer(auth.substring(5));
    int off = 0, length, offset;
    String s;
    if (msg[8] == 1) {
    off = 18;
    byte z = 0;
    byte[] msg1 = {(byte)'N', (byte)'T', (byte)'L', (byte)'M', (byte)'S',
    (byte)'S', (byte)'P', z,
    (byte)2, z, z, z, z, z, z, z,
    (byte)40, z, z, z, (byte)1, (byte)130, z, z,
    z, (byte)2, (byte)2, (byte)2, z, z, z, z, //
    z, z, z, z, z, z, z, z};
    response.setStatus(response.SC_UNAUTHORIZED);
    response.setHeader("WWW-Authenticate", "NTLM "
    + new sun.misc.BASE64Encoder().encodeBuffer(msg1).trim());
    return;
    else if (msg[8] == 3) {
    off = 30;
    length = msg[off+17]*256 + msg[off+16];
    offset = msg[off+19]*256 + msg[off+18];
    s = new String(msg, offset, length);
    //out.println(s + " ");--------------------------> here getting system_name
    else
    return;
    length = msg[off+1]*256 + msg[off];
    offset = msg[off+3]*256 + msg[off+2];
    s = new String(msg, offset, length);
    //out.println(s + " ");
    length = msg[off+9]*256 + msg[off+8];
    offset = msg[off+11]*256 + msg[off+10];
    s = new String(msg, offset, length);
    out.println("Hello <span style='position:relative; width:190;"
    + " height:10;filter:glow(Color=#009966,Strength=1)'>");
    out.println(s + "</SPAN>");----------------------------------->here getting loginname.
    %>
    form this code i was able to get systemname & username.
    How can i get password?
    Thanks

  • My ip5 was hacked, someone knew my ID apple 's password and he/she locked my ip5. How can I get my password back and unlock my ip5?

    My ip5 was hacked, someone knew my ID apple 's password and he/she locked my ip5. How can I get my passwitord back and unlock my ip5? How long does it take?
    <E-mail Edited by Host>

    My ip5 was hacked, someone knew my ID apple 's password and he/she locked my ip5. How can I get my passwitord back and unlock my ip5? How long does it take?
    <E-mail Edited by Host>

  • How can i get my password if i forgot it?

    i forgot my password to my computer and i called apple and they told me to go onto this website. how do i get my password back?

    Here's one method to reset the password without the install disc:
    1. boot computer and hold the "apple" key and the "s" key.
    2. wait for terminal show
    3. release keys
    4. type without the quotes: "/sbin/mount -uaw"
    5. press enter
    6. type without the quotes: "rm /var/db/.applesetupdone
    7. press enter
    8. type without the quotes: "reboot"
    9. press enter
    This will let you create a new admin account when you reboot your computer.
    Also, without the discs, look at Mac OS X Tip - No Password, No Root, No CD? No Problem.
    http://www.macobserver.com/tip/2003/06/16.1.shtml
    Here is a way to get around not knowing the admin password on Macs.
    To reset your OS X password without an OS X CD you need to enter terminal and create a new admin account:
       1. Reboot
       2. Hold apple + s down after you hear the chime.
       3. When you get text prompt enter in these terminal commands to create a brand new admin account (hitting return after each line):
              * mount -uw /
              * rm /var/db/.AppleSetupDone
              * shutdown -h now
       4. After rebooting you should have a brand new admin account. When you login as the new admin you can simply delete the old one and you’re good to go again!
     Cheers, Tom

  • How can I get some text from string like AB_CD_9.9.9_Sometext

    How Can I get
    only 9.9.9 from  string "AB_CD_9.9.9_Sometext" with powershell and regular expression?
    Thank you,
    Lei

    This works.
    if('AB_CD_9.9.9_Sometext' -match '\d\.\d\.\d'){$matches[0]}else{'notfound'}
    ¯\_(ツ)_/¯

  • How can i get my password to update my imac back?

    HOW CAN I GET MY IMAC PASSWORD BACK BECAUSE I DONT REMEMBER IT AND I WANT TO UPDATE IT

    See these for starters. BTW, posting in all caps is considered shouting and frowned upon in these and other forums.

  • How can i specify username/password while creating a virtual directory

    Hi,
    i m trying to create a virtual directory in 9iAS on a mapped drive. How can i specify which username password to use to enable to connect to the network mapped drive. Is there any way where we can specify username / password ???
    thanks
    Unmesh

    9iAS R1
    Run the report service as a local account with administrator rights.
    On the target server, create a local account with the same user name and password.
    Now you can use the hidden shares ($) for example:
    &destype=file&desname=\\servername\d$\report_output\report.pdf
    9iAS R2 and 10g
    Pretty much the same thing except by default, the report server runs inline. I have not been able to get the entire service to run as a particular user. To get around this, I created a report server service and do not run the reports in process. It uses the separate service.
    rwserver -install rep90_name
    edit <ORACLE_HOME>\reports\conf\rwservlet.properties file.
    SERVER_IN_PROCESS=NO
    SERVER=rep90_name
    Edit service for rep90_name and change it to run as local administrator user you created on both servers and then start the service.

Maybe you are looking for

  • Getting Express document 'Update was Terminated' in Call Transaction AS02

    Hi All,    I've written BDC for changing the Asset Master using Call Transaction Method. After the Call Transaction it it showing me the Success message that 'The Asset has been Changed'.But it is not reflecting in the Database table.When i navigate

  • Creating a custom page size in Access 2014

    In an previous version of Access 2003 I created a report with a custom page size of 5"x4".  Now I am using Access 2013 and I no longer can run that report because of the custom page size.  How do I add the custom page size to the new version of Acces

  • GRC 10.1 sp 04 getting abap dumperror CX_GRFN_EXCEPTION in firefighter id

    Hi Experts , while launching the FFid session i am getting abap dump error CX_GRFN_EXCEPTION and Additional activity button is also  inactive. please advice does any body face the same. Thanks in advance. Regards Girish Maganti

  • Convert Milliseconds to dateformat in JavaScript

    does somebody know, how to convert a Number of Milliseconds (for example 1121622365429) to a date format yyyy mm dd hh mm ss - in JAVASCRIPT (not Java) ... (date-components in seperate Strings) ??? thx for answering

  • Check form assign

    Hi all, I assigned cheque form in the payment method in co.code in fbzp, as F110_PRENUM_CHCK. But during the cheque printing, the format of the cheque is coming other format. which is taking from other form (customized form ZFI00_MYKL_CHK). how to ch