博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle初始化化表空间用户权限
阅读量:6432 次
发布时间:2019-06-23

本文共 1499 字,大约阅读时间需要 4 分钟。

  oracle单实例安装完毕,需要初始化表空间、用户、等信息。不积跬步,何以至千里!

用sys账户登录oracle数据库,以此来完成所有操作!

01、创建临时表空间

create temporary tablespace dzswjdb_temp   --表空间名字

tempfile '/home/oracle/app/oracle/data/dzswjdb_temp.dbf'   --数据文件的物理位置
size 1000M
autoextend on
next 500M maxsize 2000M    
extent management local 

02、创建数据表空间

create tablespace dzswjdb_data

datafile '/home/oracle/app/oracle/data/dzswjdb_data.dbf'
size 1000M
autoextend on
next 500M maxsize unlimited
extent management local
segment space management auto;

03、创建用户

create user  sztq  identified by sztqz2017    --用户/密码

default tablespace dzswjdb_data              --数据表空间
temporary tablespace dzswjdb_temp;

04、用户授权

grant connect,resource,dba to sztq;          --测试环境可以授权dba,生产建议还是按需设置角色

grant unlimited tablespace to sztq;            --对表空间的增长限制(多注意表空间的使用率)

-- grant/revoke system privileges          --授权/回收权限
-- grant/revoke role privileges


题外话,删除用户及表空间(如果表空间是多个账户共用,就不能这样删表空间,后续补充)

01、删除用户及对象

drop user xxx  cascade;   --用户

说明: 删除了user,只是删除了该user下的schema objects,是不会删除相应的tablespace的。

02、删除tablespace

drop tablespace tablespace_name including contents and datafiles;    --表空间 ,注意针对单用户对应单个表空间切全部分给此用户

注意区别:

--删除空的表空间,但是不包含物理文件

drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace tablespace_name including contents and datafiles;

--如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上cascade constraints

drop tablespace tablespace_name including contents and datafiles cascade constraints;

转载地址:http://zlxga.baihongyu.com/

你可能感兴趣的文章
qury-easyui DataGrid 整合struts2增删查该入门实例(三)
查看>>
if a point is inside a square with mathematics
查看>>
Ubuntu(Linux)使用Eclipse搭建C/C++编译环境
查看>>
skyline无插件web的数据加载解析
查看>>
python基础学习第一天
查看>>
硬盘存储双寡头之争 希捷重注中国市场或赢大丰收
查看>>
编译安装PHP
查看>>
css position:static 的使用
查看>>
nfs永久挂载与临时挂载
查看>>
linux查看网络链接状况命令之-netstat
查看>>
我的友情链接
查看>>
UIView的layoutSubviews和drawRect方法何时调用
查看>>
mysql主从同步
查看>>
制作最简化的Linux系统
查看>>
我的友情链接
查看>>
使用List的remove方法需要的注意的问题
查看>>
Ansible的介绍、安装、配置及常用模块介绍
查看>>
编码列表
查看>>
eigrp 配置
查看>>
谈一谈 redis 集群
查看>>