日期:2014-05-16 浏览次数:20528 次
1 建立实例,这个就很简单了打开配置和移植工具database configuration assistance ,选择创建数据库然后循环下一步就ok了。
2 打开sqlplus 键入sqlplus system/manager as sysdba ,就以管理员身份登录了。
然后执行下面一系列的命令就可以了
?
?
?
?
//创建空间?
create tablespace test ? ? ? ? ? ? -- ?test 是表空间的名字,你可以随便取
datafile 'c:\oracle\oradata\orcl9\test.dbf' size 50M --你要存放的表空间的路径
default storage ? --这个就是表空间的一些参数了。
(initial 500K ?
Next 500K?
minextents 1?
maxextents unlimited?
pctincrease 0);?
?
?
创建用户并且指派表空间
SQL> create user proctest identified by proctest default tablespace proc_space;
?
修改用户的默认表空间(这两句一定要执行,不然会提示 对表空间无权限 )
alter user proctest default_tablespace proc_space;
alter user proctest quota unlimited on proc_space;
?
授权
create session 权限 ?(不然plsql 登陆不进去的)
grant create session to proctest;
创建表的权限
grant create table to proctest;