Reputation: 687
Please tell me how to create user in Oracle 9i.
Upvotes: 1
Views: 2905
Reputation: 332551
Use the following to create a user called "username", whose password is "password":
CREATE USER username IDENTIFIED BY password
Upvotes: 4