oracle database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • lakshmikilai
    New Member
    • Jan 2010
    • 3

    oracle database

    Hi all,

    Recently i installed oracle 11g in my pc. The setup was installed successfully.

    But the problem was while entering it asks username and password, i gave but it generates an error like invalid username/password.

    can any one tell me the general username and password for oracle 11g.

    any response will be appreciated.

    thanks in advance
    lakshmikilari
  • rski
    Recognized Expert Contributor
    • Dec 2006
    • 700

    #2
    You set password for sys and system when you was installing database.
    What username do you use while loggin?

    Comment

    • ThatThatGuy
      Recognized Expert Contributor
      • Jul 2009
      • 453

      #3
      Originally posted by lakshmikilai
      Hi all,

      Recently i installed oracle 11g in my pc. The setup was installed successfully.

      But the problem was while entering it asks username and password, i gave but it generates an error like invalid username/password.

      can any one tell me the general username and password for oracle 11g.

      any response will be appreciated.

      thanks in advance
      lakshmikilari
      generally oracle databases have system as username and password is what you 've set during your oracle installation

      Comment

      • lakshmikilai
        New Member
        • Jan 2010
        • 3

        #4
        I tried but it didn't work, i gave user id as system and password what i set during installation.
        Any way thank you

        Comment

        • magicwand
          New Member
          • Mar 2010
          • 41

          #5
          lakshmikilai,

          that's how you do it:

          Logon as the OS user owning the oracle software and type:

          sqlplus / as sysdba

          and reset any password you like with:

          alter user <username> identified <new_password >;

          Comment

          • debasisdas
            Recognized Expert Expert
            • Dec 2006
            • 8119

            #6
            a small correction to the previous post

            Code:
            Alter user <username> identified by <new_password>
            ;

            Comment

            Working...