1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > oracle 用户创建赋权 oracle 建表空间用户及赋权

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

时间:2018-12-05 16:06:34

相关推荐

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;

--大象数据库备份还原

--cd 到postgresql/bin目录下,备份数据库

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

ORACLE导入导出语句:

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

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

总结

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

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

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

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。