欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

oracle 10g体系结构及安全管理

发布时间:2024/10/12 58 豆豆
生活随笔 收集整理的这篇文章主要介绍了 oracle 10g体系结构及安全管理 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

1.了解oracle数据库物理结构

2.理解oracle数据库逻辑结构

3.掌握oracle数据库的安全管理

 

一.

--创建一个myspace表空间 create tablespace myspace datafile 'D:\database\myspace01.dbf' size 10M--修改表空间 alter tablespace myspace add datafile 'D:\database\myspace02.dbf' size 10M alter tablespace myspace add datafile 'D:\database\myspace03.dbf' size 10Mcreate tablespace usertt (EdId number not null,EdName varchar2(20) not null, )

 

create user Student IDENTIFIED by student123 default tablespace users;--修改student表 alter user Student identified by mysecstudent default tablespace SYSTEM;--删除student表 drop user Student CASCADE--授予用户connect,resouree角色 GRANT CONNECT TO Student; grant resource to Student;--授予用户查询scott.emp数据库对象的权限 grant select on scott.emp to Student--授权回收 grant create session,CONNECT,resource to Student; revoke insert on scott.emp from Studentselect * from scott.emp;

 

转载于:https://www.cnblogs.com/pengjun110/p/3505179.html

总结

以上是生活随笔为你收集整理的oracle 10g体系结构及安全管理的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。