简体   繁体   English

如何在数据库名称的oracle中创建用户

[英]How to Create a user in oracle on database name

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. 我是oracle新手,我想在oracle数据库中创建一个名为abc的用户,但是我不知道该怎么做,请帮助我。 My database name is tom . 我的数据库名称是tom I wrote the following 我写了以下

create user abc identified by abc. But how can i link this user to my database tom ? 但是,如何将该用户链接到我的数据库tom

After the user creation, I want to import a dmp file in that user , how can i import on user abc ? 创建用户后, I want to import a dmp file in that user在该用户I want to import a dmp file in that user ,如何在abc用户上导入?

Any help is much appreciated 任何帮助深表感谢

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; 通过password_p标识创建用户user_name_u;

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: 但是您肯定有一个SQLPlus,所以这必须足够:
http://www.orafaq.com/wiki/Import_Export_FAQ http://www.orafaq.com/wiki/Import_Export_FAQ

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM