命令行中使用oracle命令创建数据库和表空间
2009-06-17 11:50:48 来源:WEB开发网核心提示:1、使用超级用户登录sqlplus。2、创建表空间:SQL> create tablespace test2 datafile 'D:\oracle\oradata\test\test.dbf'3 size 100M autoextend on next 10M maxsize unlimited
1、使用超级用户登录sqlplus。
2、创建表空间:
SQL> create tablespace test
2 datafile 'D:\oracle\oradata\test\test.dbf'
3 size 100M autoextend on next 10M maxsize unlimited extent management local;
3、创建用户和密码:
SQL> create user Username identified by Password default table
2 users Temporary TABLESPACE Temp;
4、用户受权限:
SQL> grant connect,resource,dba to Username;
5、提交:
SQL> commit;
更多精彩
赞助商链接