starting user and password!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • buru
    New Member
    • Oct 2006
    • 6

    starting user and password!

    Does everyone knows how can I login the SQL editor afret instalation???
    I need a user and a password? How can I create them? The instalation was successfully. I am a beginer ........
  • sharmanic2002
    New Member
    • Oct 2006
    • 6

    #2
    Default password will be manager/oracle for administrative rights
    SQL>Conn system/manager as sysdba
    or
    SQL>Conn sys/oracle as sysdba

    after creating a new tablespace you can create a user using the command

    SQL>Create User XYZ(Username) identified by ABC(Password) default tablespace <Your New tablespace name>
    commit;
    after that grant user rights for that particular user.
    Later
    SQL>conn XYZ/ABC

    Comment

    • buru
      New Member
      • Oct 2006
      • 6

      #3
      it is working!
      thank you

      Comment

      Working...