宝玛科技网
您的当前位置:首页oracle 用户创建赋权,oracle 建表空间用户及赋权

oracle 用户创建赋权,oracle 建表空间用户及赋权

来源:宝玛科技网

--ORACLE建表空间用户及赋权

--建表空间

CREATE tablespace weijl

datafile "E:\APP\ADMINISTRATOR\ORACLE\ORCL\weijl.DBF"

size 10M

autoextend on next 5M;

--删除表空间

drop tablespace weijl including contents and datafiles;

--建用户

CREATE USER weijl identified by weijl

default tablespace weijl

temporary tablespace temp;

--赋权

grand dba,resource,connect to weijl;

--删除用户

drop user weijl;

--大象数据库备份还原

pg_dump -h localhost -U postgresql puc > C:/backup-2017.bak

ORACLE导入导出语句:

exp hytera/hytera@192.168.10.78 file=D:\2017-08-17.dmp

imp hytera/hytera@192.168.10.200 file=D:\2017-08-17.dmp fromuser=hytera touser=hytera full=y

总结

以上是编程之家为你收集整理的oracle 建表空间用户及赋权全部内容,希望文章能够帮你解决oracle 建表空间用户及赋权所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

因篇幅问题不能全部显示,请点此查看更多更全内容