欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

oracle创建表空间的方法教程

程序员文章站 2023-08-19 15:26:51
select name from v$datafile; 1、创建表空间 create tablespace test_db datafile 'd:\oracle\oradata\orcl...

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;