当前位置: 移动技术网 > IT编程>数据库>Oracle > oracle创建表空间的方法教程

oracle创建表空间的方法教程

2018年10月03日  | 移动技术网IT编程  | 我要评论

select name from v$datafile;

1、创建表空间

create tablespace test_db datafile 'd:\oracle\oradata\orcl\test_db.dbf' size 3000m;

2、创建用户

create user test_db identified by test_db default tablespace test_db;

3、给用户赋权

grant dba, connect to test_db;

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网