工具/原料
PLSQL
方法1
1
双击运行PLSQL Developer软件,连接oracle数据库服务器
2
在“对象”下,找到users,右击选择“新建”
3
在弹出的“创建用户”窗口中,输入新用户的名称、口令,默认表空间、临时表空间等
4
赋予新用户权限,赋予其角色权限:connect、resource,这样用户才能登录操作数据库
END
方法2
1
通过sql语句创建用户:依次单击“文件”--“新建”--“SQL窗口”
2
输入sql语句:
-- Create the user
create user USER2 --用户名 identified by
user2 --口令 default tablespace USERS
--默认表空间 temporary tablespace TEMP --临时表空间
3
单击执行按钮或按快捷键F8,执行sql语句,创建用户
4
输入sql语句:
-- Grant/Revoke role privileges grant connect to USER2;grant resource to USER2;
给用户赋予权限,按F8执行语句
5
运行plsql,输入新建用户的用户名和口令登录
楼主只要新建一个表空间,并把它分配给一个用户就可以了。
确定楼主是以管理员身份登录的:
1.首先,创建(新)用户:
create user username identified by password;
username:新用户名的用户名
password: 新用户的密码
也可以不创建新用户,而仍然用以前的用户,如:继续利用scott用户
2.创建表空间:
create tablespace tablespacename datafile 'd:\data.dbf' size xxxm;
tablespacename:表空间的名字
d:\data.dbf':表空间的存储位置
xxx表空间的大小,m单位为兆(M)
3.将空间分配给用户:
alert user username default tablespace tablespacename;
将名字为tablespacename的表空间分配给username
4.给用户授权:
grant create session,create table,unlimited tablespace to username;
5.然后再以楼主自己创建的用户登录,登录之后创建表即可。
conn username/password;