Oracle创建表空间和表

谁说我不能喝 提交于 2020-01-13 16:55:48

//创建数据表空间

格式:create tablespace 表间名 datafile '数据文件名'  表空间大小 

 

create tablespace zzbm_data
logging
datafile 'd:\oracle\oradata\zzbm\zzbm_data01.dbf'
size 32m
autoextend on
next 32m maxsize 20000m
extent management local;

 

//创建用户并指定表空间

格式:create user 用户名 identitfled by 密码 default 表空间

create user username identified by password
default tablespace zzbm_data
temporary tablespace zzbm_temp;

 

//给用户授予权限

格式:grant connect,resource to 用户名

grant connect,resource to username;

 

//设置用户密码永不过期

格式:alter profile default limit password_life_time unlimited


ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

 

//查询表空间
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space,t.maxbytes/(1024*1024),t.maxblocks
from dba_data_files t
order by tablespace_name;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!