How do I create a user in Oracle 9i?
Please开发者_如何学C tell me how to create user in Oracle 9i.
Use the following to create a user called "username", whose password is "password":
CREATE USER username IDENTIFIED BY password
Reference:
- http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_8003.htm
精彩评论