Home > Database > Mysql Tutorial > body text

ORACLE 创建表空间和用户

WBOY
Release: 2016-06-07 15:19:04
Original
1416 people have browsed it

#创建表空间 CREATE SMALLFILE TABLESPACE USERNAME DATAFILE '/home/oracle/oradata/orcl/USERNAME' SIZE 500M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO #修改表空间 alter tablespace USERNAME ADD datafile '/home/oracle/oradata


#创建表空间
CREATE SMALLFILE TABLESPACE "USERNAME" DATAFILE '/home/oracle/oradata/orcl/USERNAME'
SIZE 500M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO


#修改表空间
alter tablespace  USERNAME  ADD datafile '/home/oracle/oradata/orcl/USERNAME.dbf'
size 500m autoextend on next 200m maxsize 3072m;


#删除表空间

DROP TABLESPACE USERNAME INCLUDING CONTENTS AND DATAFILES;

#删除用户

DROP USER 用户名 CASCADE;

#创建用户

 create user 用户名  identified by “密码” default tablespace USERNAME temporary tablespace TEMP profile DEFAULT;


-- Grant/Revoke role privileges 
grant connect to 用户名  with admin option;
grant dba to 用户名  with admin option;
grant resource to 用户名  with admin option;


-- Grant/Revoke system privileges 
grant unlimited tablespace to 用户名  with admin option;



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!