0

I am new to oracle, i want to create a user named as abc in oracle database, but i do n't know how to do it, please help me. My database name is tom. I wrote the following

create user abc identified by abc. But how can i link this user to my database tom?

After the user creation, I want to import a dmp file in that user, how can i import on user abc?

Any help is much appreciated

3
  • Firstly, this is a Q&A format, one question at a time please. Secondly, you must have logged in to a database to be able to issue the CREATE USER command. If you didn't log in to your tom database, where have you logged into? Commented Jun 26, 2012 at 10:48
  • I assume, he is just confused by the MySQL terminology. Commented Jun 26, 2012 at 10:51
  • 1
    if you are at all serious about learning Oracle, why not start with Oracle's own documentation? Start with oracle.com/pls/db111/homepage or try googling. Commented Jun 26, 2012 at 10:54

1 Answer 1

1

Your original statement is correct. You can create a new user (using an existing admin user) like this:
create user user_name_u by identified by password_p;

Importing procedure can be different based on what kind of client are you using. But you surely have an SQLPlus, so this have to be enough:
http://www.orafaq.com/wiki/Import_Export_FAQ

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.